MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / sendSelf

Method sendSelf

SRC/analysis/integrator/ExplicitDifferenceStatic.cpp:451–465  ·  view source on GitHub ↗

Send object state for parallel processing

Source from the content-addressed store, hash-verified

449
450// Send object state for parallel processing
451int 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
468int ExplicitDifferenceStatic::recvSelf(int cTag, Channel &theChannel, FEM_ObjectBroker &theBroker)

Callers

nothing calls this directly

Calls 2

sendVectorMethod · 0.45
getDbTagMethod · 0.45

Tested by

no test coverage detected