rblock.force.unbal

Syntax

v = rblock.force.unbal(p)

Get the rigid block unbalanced force.

The unbalanced force vector is defined as the sum of the contact force vectors, the applied force vector, and gravity loading.

Returns:v - rigid block unbalanced force vector
Arguments:p - rigid block pointer

Component Access

f = rblock.force.unbal (p)->x

f = rblock.force.unbal.x(p)

Get the \(x\)-component of the rigid block unbalanced force.

Returns:f - \(x\)-component oof the rigid block unbalanced force vector
Arguments:p - rigid block pointer

Access other vector components (\(y\), \(z\) (3D ONLY)) by substituting the component name where \(x\) appears above. See Member Access Operator for information about accessing members from data types using ->.

Deprecated Component Access

Component access by adding an optional integer in the function arguments (e.g., f = rblock.force.unbal(p, 3)) is deprecated. It remains available but will not be supported in future versions. See Component Access with Integers in FISH on the Deprecated Commands and FISH page for details.

This is hidden. Added to include remaining vector component access functions for inline help.

f = rblock.force.unbal.y(p)
f = rblock.force.unbal.z(p) (3D ONLY)