| 56 | } |
| 57 | |
| 58 | void DRMInputHandler::seteleMap(std::map<int,Element* >& ele, std::map<int,Vector*>& stor, std::map<int,int>& stor2) |
| 59 | { |
| 60 | double xMin = this->drm_box_Crds[0]; double xMax = this->drm_box_Crds[1]; |
| 61 | double yMin = this->drm_box_Crds[2]; double yMax = this->drm_box_Crds[3]; |
| 62 | double zMin = this->drm_box_Crds[4]; double zMax = this->drm_box_Crds[5]; |
| 63 | |
| 64 | this->myMesher->allocateBoundaryLayerElements(xMin, xMax, |
| 65 | yMin, yMax, |
| 66 | zMin, zMax, |
| 67 | ele, |
| 68 | stor, |
| 69 | stor2); |
| 70 | this->ele_str = stor; |
| 71 | this->ele_str2 = stor2; |
| 72 | } |
| 73 | |
| 74 | |
| 75 | void DRMInputHandler::getMotions(Element* eleTag, double time, Vector& U, Vector& Ud, Vector& Udd) |
no test coverage detected