| 1009 | } // getFreeRigidVelocities |
| 1010 | |
| 1011 | void |
| 1012 | CIBMethod::getNetExternalForceTorque(Vec* F, const double data_time) |
| 1013 | { |
| 1014 | #if !defined(NDEBUG) |
| 1015 | TBOX_ASSERT(IBTK::rel_equal_eps(data_time, d_current_time) || IBTK::rel_equal_eps(data_time, d_new_time)); |
| 1016 | #endif |
| 1017 | |
| 1018 | CIBStrategy::getNetExternalForceTorque(F, data_time); |
| 1019 | return; |
| 1020 | |
| 1021 | } // getNetExternalForceTorque |
| 1022 | |
| 1023 | void |
| 1024 | CIBMethod::subtractMeanConstraintForce(Vec L, int f_data_idx, const double scale) |
no test coverage detected