flow360.RunControl#
- class RunControl[source]#
Bases:
Flow360BaseModelRunControlclass for run control settings.Example
>>> criterion = fl.StoppingCriterion(...) >>> fl.RunControl( ... stopping_criteria = [criterion], ... )
- stopping_criteria: List[StoppingCriterion] | None = None#
A list of
StoppingCriterionfor the solver. All criteria must be met at the same time to stop the solver.