| 876 | } |
| 877 | |
| 878 | int |
| 879 | DOF_Group::saveVelSensitivity(const Vector &v, int gradNum, int numGrads) |
| 880 | { |
| 881 | Vector &dudh = *unbalance; |
| 882 | |
| 883 | for (int i = 0; i < numDOF; i++) { |
| 884 | int loc = myID(i); |
| 885 | if (loc >= 0) |
| 886 | dudh(i) = v(loc); |
| 887 | else |
| 888 | dudh(i) = 0.0; |
| 889 | } |
| 890 | |
| 891 | return myNode->saveVelSensitivity(dudh, gradNum, numGrads); |
| 892 | } |
| 893 | |
| 894 | int |
| 895 | DOF_Group::saveAccSensitivity(const Vector &v, int gradNum, int numGrads) |
no outgoing calls
no test coverage detected