wall.disp

Syntax

v = wall.disp(w)
wall.disp(w) = v

Get/set the wall displacement.

Returns:v - wall displacement vector
Accepts:v - wall displacement vector
Arguments:w - wall pointer

Component Access

f = wall.disp (w)->x
wall.disp (w)->x = f

f = wall.disp.x(w)
wall.disp.x(w) = f

Get/set the \(x\)-component of the wall displacement.

Returns:f - \(x\)-component of the wall displacement vector
Accepts:f - \(x\)-component of the wall displacement vector
Arguments:w - wall 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 = wall.disp(w,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 = wall.disp.y(w)
f = wall.disp.z(w) (3D ONLY)