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

Method sendSelf

SRC/convergenceTest/CTestPFEM.cpp:394–413  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

392
393
394int CTestPFEM::sendSelf(int cTag, Channel &theChannel)
395{
396 int res = 0;
397 Vector x(10);
398 x(0) = tolv;
399 x(1) = maxNumIter;
400 x(2) = printFlag;
401 x(3) = nType;
402 x(4) = maxIncr;
403 x(5) = tolp;
404 x(6) = tolv2;
405 x(7) = tolp2;
406 x(8) = tolvrel;
407 x(9) = tolprel;
408 res = theChannel.sendVector(this->getDbTag(), cTag, x);
409 if(res < 0)
410 opserr << "CTestPFEM::sendSelf() - failed to send data\n";
411
412 return res;
413}
414
415
416int CTestPFEM::recvSelf(int cTag, Channel &theChannel,

Callers

nothing calls this directly

Calls 2

sendVectorMethod · 0.45
getDbTagMethod · 0.45

Tested by

no test coverage detected