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

Method computeResidual

DEVELOPER/core/Subdomain.cpp:702–723  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

700
701
702int
703Subdomain::computeResidual(void)
704{
705 if (theAnalysis != 0) {
706 // theTimer.start();
707
708 int res =0;
709 res = theAnalysis->formResidual();
710
711 //theTimer.pause();
712 // realCost += theTimer.getReal();
713 // cpuCost += theTimer.getCPU();
714 // pageCost += theTimer.getNumPageFaults();
715
716 return res;
717
718 } else {
719 opserr << "Subdomain::computeResidual() ";
720 opserr << " - no StaticCondensationAnalysis has been set\n";
721 return 0;
722 }
723}
724
725
726const Matrix &

Callers 1

FE_Element.cppFile · 0.45

Calls 1

formResidualMethod · 0.45

Tested by

no test coverage detected