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

Method updateDomain

SRC/analysis/model/AnalysisModel.cpp:571–587  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

569
570
571int
572AnalysisModel::updateDomain(void)
573{
574 // check to see there is a Domain linked to the Model
575
576 if (myDomain == 0) {
577 opserr << "WARNING: AnalysisModel::updateDomain. No Domain linked.\n";
578 return -1;
579 }
580
581 // invoke the method
582 int res = myDomain->update();
583 if (res == 0)
584 return myHandler->update();
585
586 return res;
587}
588
589
590int

Callers 15

endModeMethod · 0.45
newStepMethod · 0.45
updateMethod · 0.45
newStepMethod · 0.45
updateMethod · 0.45
commitMethod · 0.45
updateMethod · 0.45
newStepMethod · 0.45
updateMethod · 0.45
commitMethod · 0.45
newStepMethod · 0.45
updateMethod · 0.45

Calls 2

updateMethod · 0.45
applyLoadMethod · 0.45

Tested by 1

endModeMethod · 0.36