block.zone.stress.effective

Syntax

t := block.zone.stress.effective(bzp)

Get the zone effective stress, calculated from the stress plus the zone-averaged pore pressure.

Returns:t - zone effective stress tensor
Arguments:bzp - block zone pointer

Component Access

f := block.zone.stress.effective (bzp)->xx

f := block.zone.stress.effective.xx(bzp)

Get the \(xx\)-component of

Returns:f - \(xx\)-component of the zone effective stress tensor
Arguments:bzp - block 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 (block.zone.stress.effective(bzp,<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 := block.zone.stress.effective.yy(bzp)
f := block.zone.stress.effective.zz(bzp)
f := block.zone.stress.effective.xy(bzp)
f := block.zone.stress.effective.xz(bzp)
f := block.zone.stress.effective.yz(bzp)