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

Function OPS_PDeltaCrdTransf

SRC/interpreter/OpenSeesCrdTransfCommands.cpp:39–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37 }
38
39 void* OPS_PDeltaCrdTransf()
40 {
41 int ndm = OPS_GetNDM();
42 int ndf = OPS_GetNDF();
43 if(ndm == 2 && ndf == 3) {
44 return OPS_PDeltaCrdTransf2d();
45 } else if(ndm == 3 && ndf == 6) {
46 return OPS_PDeltaCrdTransf3d();
47 } else {
48 opserr<<"current NDM and NDF is incompatible with frame elements\n";
49 return 0;
50 }
51 }
52 void* OPS_CorotCrdTransf()
53 {
54 int ndm = OPS_GetNDM();

Callers 1

OPS_CrdTransfFunction · 0.85

Calls 4

OPS_PDeltaCrdTransf2dFunction · 0.85
OPS_PDeltaCrdTransf3dFunction · 0.85
OPS_GetNDMFunction · 0.70
OPS_GetNDFFunction · 0.70

Tested by

no test coverage detected