Send object state for parallel processing
| 449 | |
| 450 | // Send object state for parallel processing |
| 451 | int ExplicitDifferenceStatic::sendSelf(int cTag, Channel &theChannel) |
| 452 | { |
| 453 | Vector data(4); |
| 454 | data(0) = alphaM; |
| 455 | data(1) = betaK; |
| 456 | data(2) = betaKi; |
| 457 | data(3) = betaKc; |
| 458 | |
| 459 | if (theChannel.sendVector(this->getDbTag(), cTag, data) < 0) { |
| 460 | opserr << "WARNING ExplicitDifferenceStatic::sendSelf() - could not send data\n"; |
| 461 | return -1; |
| 462 | } |
| 463 | |
| 464 | return 0; |
| 465 | } |
| 466 | |
| 467 | // Receive object state for parallel processing |
| 468 | int ExplicitDifferenceStatic::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker) |
nothing calls this directly
no test coverage detected