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

Method applyLoad

SRC/analysis/handler/AutoConstraintHandler.cpp:573–584  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

571}
572
573int
574AutoConstraintHandler::applyLoad(void)
575{
576 // enforse SP constraints
577 // is there a reason for a backward loop?
578 std::size_t numDOF = theDOFs.size();
579 for (std::size_t i = 1; i <= numDOF; i++)
580 theDOFs[numDOF - i]->enforceSPs(1);
581 for (std::size_t i = 1; i <= numDOF; i++)
582 theDOFs[numDOF - i]->enforceSPs(0);
583 return 0;
584}
585
586int
587AutoConstraintHandler::doneNumberingDOF(void)

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45
enforceSPsMethod · 0.45

Tested by

no test coverage detected