3.1.10.36. Bbar Plane Strain Quadrilateral Element
This command constructs a four-node quadrilateral element using a bilinear isoparametric formulation with a mixed constant pressure/volume (B-bar) assumption. The command names in OpenSees are bbarQuad or mixedQuad. The element is for plane strain problems only. Use with -ndm 2 -ndf 2.
- element bbarQuad $eleTag $iNode $jNode $kNode $lNode $thick $matTag
Argument |
Type |
Description |
|---|---|---|
$eleTag |
integer |
unique element tag |
$iNode $jNode $kNode $lNode |
integer |
four nodes in counter-clockwise order |
$thick |
float |
element thickness |
$matTag |
integer |
tag of an nD material |
Note
Plane strain only; not valid for plane stress problems.
Valid Element Recorder queries include
forces,stresses, andmaterial $matNum ....
Example
Tcl Code
element bbarQuad 1 1 2 3 4 1.0 1
Python Code
element('bbarQuad', 1, 1, 2, 3, 4, 1.0, 1)
Code developed by: Ed Love