flow360.RunControl#

class RunControl[source]#

Bases: Flow360BaseModel

RunControl class for run control settings.

Example

>>> criterion = fl.StoppingCriterion(...)
>>> fl.RunControl(
...     stopping_criteria = [criterion],
... )

stopping_criteria: List[StoppingCriterion] | None = None#

A list of StoppingCriterion for the solver. All criteria must be met at the same time to stop the solver.

type_name: Literal['RunControl'] = 'RunControl'#