get_field_extremum#
- PostProcessor3DLayout.get_field_extremum(assignment: str, max_min: Literal['Max', 'Min'], location: Literal['Surface', 'Volume'], field: str, setup: str | None = None, intrinsics: Dict[str, str] | None = None) Tuple[Tuple[float, float, float], float]#
Calculates the position and value of the field maximum or minimum.
- Parameters:
- assignment
str The name of the object to calculate the extremum for.
- max_min
Literal[“Max”, “Min”] “Max” for maximum, “Min” for minimum.
- location
Literal[“Surface”, “Volume”] “Surface” for surface, “Volume” for volume.
- fieldstr:
Name of the field.
- intrinsics
Optional[dict[str,str]] Time at which to retrieve results if setup is transient. Default is None.
- setup
Optional[str] The name of the setup to use. If None, the first available setup is used. Default is None.
- assignment
- Returns: