measure.strain.rate

Syntax

t = measure.strain.rate(m)

Get the strain rate tensor.

Returns:t - strain rate tensor or value
Arguments:m - measure pointer

Component Access

f = measure.strain.rate (m)->xx

f = measure.strain.rate.xx(m)

Get the \(xx\)-value of the strain rate tensor.

Returns:f - \(x\)-value of the strain rate tensor
Arguments:m - measure pointer

Access other tensor components (\(yy\), \(zz\), \(xy\), \(xz\), \(yz\)) by substituting the component name where \(xx\) appears above. \(xz\), \(yz\), and \(zz\) are 3D only. See Member Access Operator for information about accessing members from data types using ->.

Deprecated Component Access

Component access by adding optional integer(s) in the function arguments (e.g., f = measure. stress(m, 1, 1)) 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 = measure.strain.rate.yy(m)
f = measure.strain.rate.zz(m) (3D only)
f = measure.strain.rate.xy(m)
f = measure.strain.rate.xz(m) (3D only)
f = measure.strain.rate.yz(m) (3D only)