RigidDiaphragm command: Difference between revisions

From OpenSeesWiki
Jump to navigation Jump to search
(New page: This command is used to construct a number of Multi-Point Constraint (MP_Constraint) objects. These objects will constraint certain degrees-of-freedom at the listed slave nodes to move as ...)
 
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This command is used to construct a number of Multi-Point Constraint (MP_Constraint) objects. These objects will constraint certain degrees-of-freedom at the listed slave nodes to move as if in a rigid plane with the master node.
{{CommandManualMenu}}
 
This command is used to construct a number of Multi-Point Constraint (MP_Constraint) objects. These objects will constrain certain degrees-of-freedom at the listed constrained nodes to move as if in a rigid plane with the retained node.


{|  
{|  
| style="background:yellow; color:black; width:800px" | '''rigidDiaphragm $perpDirn $masterNodeTag $slaveNodeTag1 $slaveNodeTag2 ...'''
| style="background:yellow; color:black; width:800px" | '''rigidDiaphragm $direction $rNodeTag $cNodeTag1 $cNodeTag2 ...'''
|}
|}


Line 8: Line 10:


{|
{|
|  style="width:150px" | '''$perpDirn ''' || direction perpendicular to the rigid plane (i.e. direction 3 corresponds to the 1-2 plane)
|  style="width:150px" | '''$direction ''' || 3D models - direction perpendicular to the rigid plane, e.g., direction 3 (Z) corresponds to the 1-2 (X-Y) plane; 2D models - direction of diaphragm motion, e.g., direction 1 (X) corresponds to motion constrained in the X direction
|-
|-
|  '''$masterNodeTag ''' ||  integer tag identifying the master node
|  '''$rNodeTag ''' ||  integer tag identifying the retained node
|-
|-
|  '''$slaveNodeTag1 $slaveNodeTag2 ... ''' || integar tags identifying the slave nodes
|  '''$cNodeTag1 $cNodeTag2 ... ''' || integer tags identifying the constrained nodes
|}
|}




NOTE: The constraint object is constructed assuming small rotations.
NOTE: The constraint object is constructed assuming small rotations for 3D models.


NOTE: The rigidDiaphragm command works only for problems in three dimensions with six-degrees-of-freedom at the nodes (ndf = 6).


EXAMPLE:


EXAMPLE:
3D:


rigidDiaphragm 2 2 4 5 6; constrain nodes 4,5,6 to move as if in the same x-z plane as node 2.
rigidDiaphragm 2 2 4 5 6; constrain nodes 4,5,6 to move as if in the same X-Z plane as node 2


2D:


rigidDiaphragm 1 5 1 3 4 7; constrain nodes 1,3,4,7 to have the same X displacement as node 5


Code Developed by: <span style="color:blue"> fmk </span>
Code Developed by: <span style="color:blue"> fmk </span>

Latest revision as of 15:04, 25 August 2022




This command is used to construct a number of Multi-Point Constraint (MP_Constraint) objects. These objects will constrain certain degrees-of-freedom at the listed constrained nodes to move as if in a rigid plane with the retained node.

rigidDiaphragm $direction $rNodeTag $cNodeTag1 $cNodeTag2 ...

$direction 3D models - direction perpendicular to the rigid plane, e.g., direction 3 (Z) corresponds to the 1-2 (X-Y) plane; 2D models - direction of diaphragm motion, e.g., direction 1 (X) corresponds to motion constrained in the X direction
$rNodeTag integer tag identifying the retained node
$cNodeTag1 $cNodeTag2 ... integer tags identifying the constrained nodes


NOTE: The constraint object is constructed assuming small rotations for 3D models.


EXAMPLE:

3D:

rigidDiaphragm 2 2 4 5 6; constrain nodes 4,5,6 to move as if in the same X-Z plane as node 2

2D:

rigidDiaphragm 1 5 1 3 4 7; constrain nodes 1,3,4,7 to have the same X displacement as node 5

Code Developed by: fmk