domain.max

Syntax

v = domain.max( )
domain.max( ) = v

Get/set the upper domain corner.

Returns:v - upper domain corner vector
Accepts:v - upper domain corner vector

Component Access

f = domain.max ( )->x
domain.max ( )->x = f

f = domain.max.x( )
domain.max.x( ) = f

Get/set the \(x\)-component of the upper domain corner.

Returns:f - \(x\)-component of the upper domain corner vector
Accepts:f - \(x\)-component of the upper domain corner vector

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 = domain.max(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 = domain.max.y( )
f = domain.max.z( ) (3D ONLY)