for FEM_Object Broker to use
| 208 | |
| 209 | // for FEM_Object Broker to use |
| 210 | Node::Node(int theClassTag) |
| 211 | :DomainComponent(0,theClassTag), |
| 212 | numberDOF(0), theDOF_GroupPtr(0), |
| 213 | Crd(0), commitDisp(0), commitVel(0), commitAccel(0), |
| 214 | trialDisp(0), trialVel(0), trialAccel(0), unbalLoad(0), incrDisp(0), |
| 215 | incrDeltaDisp(0), |
| 216 | disp(0), vel(0), accel(0), dbTag1(0), dbTag2(0), dbTag3(0), dbTag4(0), |
| 217 | R(0), mass(0), unbalLoadWithInertia(0), alphaM(0.0), theEigenvectors(0), |
| 218 | index(-1), reaction(0), displayLocation(0) |
| 219 | { |
| 220 | // for FEM_ObjectBroker, recvSelf() must be invoked on object |
| 221 | |
| 222 | // AddingSensitivity:BEGIN ///////////////////////////////////////// |
| 223 | dispSensitivity = 0; |
| 224 | velSensitivity = 0; |
| 225 | accSensitivity = 0; |
| 226 | parameterID = 0; |
| 227 | // AddingSensitivity:END /////////////////////////////////////////// |
| 228 | |
| 229 | theNodalThermalActionPtr = 0;//Added by Liming for initializing NodalLoadPointer, [SIF] |
| 230 | } |
| 231 | |
| 232 | |
| 233 | Node::Node(int tag, int theClassTag) |
nothing calls this directly
no test coverage detected