SimpleContact2D: Difference between revisions
No edit summary |
(Change terminology to retained/constrained) |
||
Line 4: | Line 4: | ||
{| | {| | ||
| style="background:yellow; color:black; width:600px" | '''element SimpleContact2D $eleTag $iNode $jNode $ | | style="background:yellow; color:black; width:600px" | '''element SimpleContact2D $eleTag $iNode $jNode $cNode $lNode $matTag $gTol $fTol''' | ||
|} | |} | ||
Line 11: | Line 11: | ||
| style="width:150px" | '''$eleTag ''' || unique integer tag identifying element object | | style="width:150px" | '''$eleTag ''' || unique integer tag identifying element object | ||
|- | |- | ||
| '''$iNode $jNode ''' || | | '''$iNode $jNode ''' || retained nodes (-ndm 2 -ndf 2) | ||
|- | |- | ||
| '''$ | | '''$cNode ''' || constrained node (-ndm 2 -ndf 2) | ||
|- | |- | ||
| '''$lNode ''' || Lagrange multiplier node (-ndm 2 -ndf 2) | | '''$lNode ''' || Lagrange multiplier node (-ndm 2 -ndf 2) | ||
Line 28: | Line 28: | ||
The SimpleContact2D element is a two-dimensional node-to-segment contact element which defines a frictional contact interface between two separate bodies. The | The SimpleContact2D element is a two-dimensional node-to-segment contact element which defines a frictional contact interface between two separate bodies. The retained nodes are the nodes which define the endpoints of a line segment on the first body, and the constrained node is a node from the second body. The Lagrange multiplier node is required to enforce the contact condition. This node should not be shared with any other element in the domain. Information on the theory behind this element can be found in, e.g. Wriggers (2002). | ||
'''NOTE:''' | '''NOTE:''' | ||
Line 34: | Line 34: | ||
# The SimpleContact2D element has been written to work exclusively with the [[ContactMaterial2D|ContactMaterial2D nDMaterial]] object. | # The SimpleContact2D element has been written to work exclusively with the [[ContactMaterial2D|ContactMaterial2D nDMaterial]] object. | ||
# The valid recorder queries for this element are: | # The valid recorder queries for this element are: | ||
## ''force'' - returns the contact force acting on the | ## ''force'' - returns the contact force acting on the constrained node in vector form. | ||
## ''frictionforce'' - returns the frictional force acting on the | ## ''frictionforce'' - returns the frictional force acting on the constrained node in vector form. | ||
## ''forcescalar'' - returns the scalar magnitudes of the normal and tangential contact forces. | ## ''forcescalar'' - returns the scalar magnitudes of the normal and tangential contact forces. | ||
## The SimpleContact2D elements are set to consider frictional behavior as a default, but the frictional state of the SimpleContact2D element can be changed from the input file using the [[setParameter]] command. When updating, value of 0 corresponds to the frictionless condition, and a value of 1 signifies the inclusion of friction. An example command for this update procedure is provided below | ## The SimpleContact2D elements are set to consider frictional behavior as a default, but the frictional state of the SimpleContact2D element can be changed from the input file using the [[setParameter]] command. When updating, value of 0 corresponds to the frictionless condition, and a value of 1 signifies the inclusion of friction. An example command for this update procedure is provided below |
Latest revision as of 17:13, 13 June 2020
- Command_Manual
- Tcl Commands
- Modeling_Commands
- model
- uniaxialMaterial
- ndMaterial
- frictionModel
- section
- geometricTransf
- element
- node
- sp commands
- mp commands
- timeSeries
- pattern
- mass
- block commands
- region
- rayleigh
- Analysis Commands
- Output Commands
- Misc Commands
- DataBase Commands
This command is used to construct a SimpleContact2D element object.
element SimpleContact2D $eleTag $iNode $jNode $cNode $lNode $matTag $gTol $fTol |
$eleTag | unique integer tag identifying element object |
$iNode $jNode | retained nodes (-ndm 2 -ndf 2) |
$cNode | constrained node (-ndm 2 -ndf 2) |
$lNode | Lagrange multiplier node (-ndm 2 -ndf 2) |
$matTag | unique integer tag associated with previously-defined nDMaterial object |
$gTol | gap tolerance |
$fTol | force tolerance |
The SimpleContact2D element is a two-dimensional node-to-segment contact element which defines a frictional contact interface between two separate bodies. The retained nodes are the nodes which define the endpoints of a line segment on the first body, and the constrained node is a node from the second body. The Lagrange multiplier node is required to enforce the contact condition. This node should not be shared with any other element in the domain. Information on the theory behind this element can be found in, e.g. Wriggers (2002).
NOTE:
- The SimpleContact2D element has been written to work exclusively with the ContactMaterial2D nDMaterial object.
- The valid recorder queries for this element are:
- force - returns the contact force acting on the constrained node in vector form.
- frictionforce - returns the frictional force acting on the constrained node in vector form.
- forcescalar - returns the scalar magnitudes of the normal and tangential contact forces.
- The SimpleContact2D elements are set to consider frictional behavior as a default, but the frictional state of the SimpleContact2D element can be changed from the input file using the setParameter command. When updating, value of 0 corresponds to the frictionless condition, and a value of 1 signifies the inclusion of friction. An example command for this update procedure is provided below
- The SimpleContact2D element works well in static and pseudo-static analysis situations.
- In transient analysis, the presence of the contact constraints can effect the stability of commonly-used time integration methods in the HHT or Newmark family (e.g., Laursen, 2002). For this reason, use of alternative time-integration methods which numerically damp spurious high frequency behavior may be required. The TRBDF2 integrator is an effective method for this purpose. The Newmark integrator can also be effective with proper selection of the gamma and beta coefficients. The trapezoidal rule, i.e., Newmark with gamma = 0.5 and beta = 0.25, is particularly prone to instability related to the contact constraints and is not recommended.
EXAMPLES:
SimpleContact2D element with tag 1, connectivity with nodes 1, 2, 3, and 4, material with tag 1, and gap and force tolerances of 1.0e-10.
element SimpleContact2D 1 1 2 3 4 1 1.0e-10 1.0e-10
Update all of the SimpleContact2D elements with tags between 10 and 20 to consider a frictionless interface
setParameter -value 0 -eleRange 10 20 friction
REFERENCES:
- Wriggers, P. (2002). Computational Contact Mechanics. John Wiley & Sons, Ltd, West Sussex, England.
- Laursen, T. A. (2002). Computational Contact and Impact Mechanics. Springer-Verlag, Berlin.
Code Developed by: Kathryn Petek, Pedro Arduino, & Peter Mackenzie-Helnwein, at the University of Washington