feblock.face.normal

Syntax

v := feblock.face.normal(fbfep)

Get the FE block face normal vector.

Returns:

v - the FE block face normal vector

Arguments:

fbfep - FE block face pointer

Component Access

f := feblock.face.normal (fbfep)->x

f := feblock.face.normal.x(fbfep)

Get the \(x\)-component of the FE block face normal vector.

Returns:

f - \(x\)-component of the FE block face normal vector

Arguments:

fbfep - FE block face pointer

Access other vector components (\(y\), \(z\)) 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 (feblock.face.normal(fbfep,<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 := feblock.face.normal.y(fbfep)
f := feblock.face.normal.z(fbfep)