ball.force.app

Syntax

v = ball.force.app(bp)
ball.force.app(bp) = v

Get/set the ball applied force.

Returns:

v - ball applied force vector

Accepts:

v - ball applied force vector

Arguments:

bp - ball pointer

Component Access

f = ball.force.app (bp)->x
ball.force.app (bp)->x = f

f = ball.force.app.x(bp)
ball.force.app.x(bp) = f

Get/set the \(x\)-component of the ball applied force.

Returns:

f - \(x\)-component of the ball applied force vector

Accepts:

f - \(x\)-component of the ball applied force vector

Arguments:

bp - ball 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 = ball.force.app(bp,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 tensor component access functions for inline help.

f = ball.force.app.y(bp)
f = ball.force.app.z(bp) (3D ONLY)