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

Function shapeFunctionsNaturalDerivatives

SRC/element/shell/ASDShellT3.cpp:171–180  ·  view source on GitHub ↗

shape function derivatives in iso-parametric space

Source from the content-addressed store, hash-verified

169
170 // shape function derivatives in iso-parametric space
171 inline void shapeFunctionsNaturalDerivatives(double xi, double eta, Matrix& dN)
172 {
173 dN(0, 0) = -1.0;
174 dN(1, 0) = 1.0;
175 dN(2, 0) = 0.0;
176
177 dN(0, 1) = -1.0;
178 dN(1, 1) = 0.0;
179 dN(2, 1) = 1.0;
180 }
181
182 /** \brief JacobianOperator
183 *

Callers 1

calculateAllMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected