*SetFieldDamping() - single field

Sets the damping properties of a single field.

Syntax

*SetFieldDamping(field_name, CRATIO|MATRIX, cratio|c1-c36)

Arguments

field_name
The variable name of an existing field.
Data type: varname
CRATIO|MATRIX
Use CRATIO to apply damping as a percentage of stiffness, or use MATRIX to supply a 6x6 damping matrix.
Data type: real
cratio
Damping as a percentage of stiffness, applied to each stiffness.
Data type: real
c1-c36
Linear damping for each entry of the 6x6 damping matrix.
Data type: real

Example

*BeginMDL(model, "Field Model")
 *Body(b_0, "Body 0")
 *Body(b_1, "Body 1")
 *Point(p_0, "Point 0")
 *Point(p_1, "Point 1")
 *Point(p_2, "Point 2")
 *Vector(v_1, "Vector 1")
 *Vector(v_2, "Vector 2")
 *Field(fi_0, "Field 0 - Single", b_0, b_1, p_0)
 *SetOrientation(fi_0, TWOAXES, XY, v_1, v_2)
 *SetOrientation(fi_0, TWOAXES, XY, p_1, p_2)
 *SetOrientation(fi_0, ONEAXIS, X, p_1)
 *SetOrientation(fi_0, ONEAXIS, X, v_1)
 *SetFieldStiffness(fi_0, 1, 2, 3, , 36)
 *SetFieldDamping(fi_0, CRATIO, .05)
 *SetFieldDamping(fi_0, MATRIX, .6, .7, .8, ..., 36)
 *SetFieldLength(fi_0, 5, 6, 7, 8, 9, 10)
 *SetFieldForce(fi_0, 21, 22, 23, 24, 25, 26)
*EndMDL()

Context

*BeginMdl()

*DefineAnalysis()

*DefineSystem()