*SetFieldStiffness() - single field
Sets the stiffness properties of the field.
Syntax
*SetFieldStiffness(field_name, k1, k2, ..., k36)
Arguments
- field_name
- The variable name of an existing field.
- k1-k36
- The linear stiffness for each entry of the 6x6 stiffness matrix.
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)
*SetFieldLength(fi_0, 5, 6, 7, 8, 9, 10)
*SetFieldForce(fi_0, 21, 22, 23, 24, 25, 26)
*EndMDL()