block.force.app

Syntax

v := block.force.app(blp)
block.force.app(blp) := v

Get/set the applied force vector (for rigid blocks only).

Returns:v - applied force vector
Accepts:v - applied force vector
Arguments:blp - block pointer

Component Access

f := block.foce.app (blp)->x
block.foce.app (blp)->x := f

f := block.foce.app.x(blp)
block.foce.app.x(blp) := f

Get/set the \(x\)-component of the applied force vector (for rigid blocks only).

Returns:f - \(x\)-component of applied force vector
Accepts:f - \(x\)-component of applied force vector
Arguments:blp - block pointer

Access other vector components (\(y\), \(z\)) 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 (block.foce.app(blp,<int>)) 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 := block.foce.app.y(blp)
f := block.foce.app.z(blp)