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

Function shapeFunctions

SRC/element/shell/ASDShellQ4.cpp:179–185  ·  view source on GitHub ↗

shape functions

Source from the content-addressed store, hash-verified

177
178 // shape functions
179 inline void shapeFunctions(double xi, double eta, Vector& N)
180 {
181 N(0) = 0.25 * (1.0 - xi) * (1.0 - eta);
182 N(1) = 0.25 * (1.0 + xi) * (1.0 - eta);
183 N(2) = 0.25 * (1.0 + xi) * (1.0 + eta);
184 N(3) = 0.25 * (1.0 - xi) * (1.0 + eta);
185 }
186
187 // shape function derivatives in iso-parametric space
188 inline void shapeFunctionsNaturalDerivatives(double xi, double eta, Matrix& dN)

Callers 3

ASDShellQ4.cppFile · 0.70
calculateAllMethod · 0.70
AGQIbeginGaussLoopMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected