3.1.10.35. ShellNL Element
This command constructs a nine-node Lagrangian shell element with membrane and drilling degrees of freedom. The command names in OpenSees are ShellNL, shellNL, ShellMITC9, or shellMITC9. Use with -ndm 3 -ndf 6.
- element ShellMITC9 $eleTag $n1 $n2 $n3 $n4 $n5 $n6 $n7 $n8 $n9 $secTag
Argument |
Type |
Description |
|---|---|---|
$eleTag |
integer |
unique element tag |
$n1 … $n9 |
integer |
nine nodes defining the element |
$secTag |
integer |
tag of a previously defined section object |
Note
This is a 3D element with 6 DOFs per node (54 total element DOFs).
The section is typically a PlateFiberSection or ElasticMembranePlateSection.
Valid Element Recorder queries include
forces,stresses, andmaterial $matNum ....
Example
Tcl Code
section PlateFiber 1 1 10.0
element ShellMITC9 1 1 2 3 4 5 6 7 8 9 1
Python Code
section('PlateFiber', 1, 1, 10.0)
element('ShellMITC9', 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1)
Code developed by: Leopoldo Tesser, Diego A. Talledo