zone.rotation.inc

Syntax

t = zone.rotation.inc(p)

Get the zone rotational increment tensor, or a component of it. This is calculated using the current displacement field.

Returns:t - zone rotational increment tensor or value
Arguments:p - zone pointer

Component Access

f := zone.rotation.inc (p)->xx

f := zone.rotation.inc.xx(p)

Get the \(xx\)-component of the zone rotational increment tensor, or a component of it. This is calculated using the current displacement field.

Returns:f - \(xx\)-component of the zone rotational increment tensor or value
Arguments:p - zone pointer

Access other tensor components (\(yy\), \(zz\), \(xy\), \(xz\), \(yz\)) by substituting the component name where \(xx\) 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 (zone.rotation.inc(p,<int, <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 := zone.rotation.inc.yy(p)
f := zone.rotation.inc.zz(p)
f := zone.rotation.inc.xy(p)
f := zone.rotation.inc.xz(p)
f := zone.rotation.inc.yz(p)