3.1.10.41. ShellDKGT Element
This command constructs a three-node triangular shell element based on generalized conforming element theory. The bending part uses the DKT thin-plate formulation; the membrane part uses the GT9 element with drilling DOF. Use with -ndm 3 -ndf 6.
- element ShellDKGT $eleTag $iNode $jNode $kNode $secTag <-damp $dampTag>
Argument |
Type |
Description |
|---|---|---|
$eleTag |
integer |
unique element tag |
$iNode $jNode $kNode |
integer |
three nodes in clockwise or counter-clockwise order |
$secTag |
integer |
tag of a previously defined section object |
$dampTag |
integer |
tag of an elemental damping object used with |
Note
The section may be a PlateFiberSection, ElasticMembranePlateSection, or layered shell section.
This is the linear small-deformation formulation. For geometric nonlinearity see ShellNLDKGT Element.
Valid Element Recorder queries include
forces,stresses, andmaterial $matNum ....
Example
Tcl Code
section PlateFiber 1 1 10.0
element ShellDKGT 1 1 2 3 1
Python Code
section('PlateFiber', 1, 1, 10.0)
element('ShellDKGT', 1, 1, 2, 3, 1)
Code developed by: Shuhao Zhang, Xinzheng Lu