| 511 | |
| 512 | |
| 513 | int HHTExplicit_TP::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
| 514 | { |
| 515 | Vector data(2); |
| 516 | if (theChannel.recvVector(this->getDbTag(), cTag, data) < 0) { |
| 517 | opserr << "WARNING HHTExplicit_TP::recvSelf() - could not receive data\n"; |
| 518 | return -1; |
| 519 | } |
| 520 | |
| 521 | alpha = data(0); |
| 522 | gamma = data(1); |
| 523 | |
| 524 | alphaD = alpha; |
| 525 | alphaR = alpha; |
| 526 | alphaP = alpha; |
| 527 | |
| 528 | return 0; |
| 529 | } |
| 530 | |
| 531 | |
| 532 | void HHTExplicit_TP::Print(OPS_Stream &s, int flag) |
nothing calls this directly
no test coverage detected