| 1105 | } // getInterpolatedVelocity |
| 1106 | |
| 1107 | void |
| 1108 | CIBMethod::computeMobilityRegularization(Vec D, Vec L, const double scale) |
| 1109 | { |
| 1110 | const int struct_ln = getStructuresLevelNumber(); |
| 1111 | Pointer<LData> reg_data = d_l_data_manager->getLData("regulator", struct_ln); |
| 1112 | Vec W = reg_data->getVec(); |
| 1113 | VecPointwiseMult(D, L, W); |
| 1114 | VecScale(D, scale); |
| 1115 | |
| 1116 | return; |
| 1117 | } // computeMobilityRegularization |
| 1118 | |
| 1119 | unsigned int |
| 1120 | CIBMethod::getNumberOfNodes(const unsigned int struct_no) const |
no test coverage detected