Skip to content

Commit 1c5d40e

Browse files
committed
Add description to explain the use of tolerance window size in stopping criterion check
1 parent 8e6ce38 commit 1c5d40e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flow360/component/simulation/run_control/stopping_criterion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ class StoppingCriterion(Flow360BaseModel):
7676
)
7777
tolerance_window_size: Optional[int] = pd.Field(
7878
None,
79-
description="The number of data points from the monitor_output to be used "
80-
"to check whether the deviation of the monitored field is below tolerance or not. "
79+
description="The number of data points from the monitor_output to be used to check whether "
80+
"the :math:`|max-min|/2` of the monitored field within this window is below tolerance or not. "
8181
"If not set, the criterion will directly compare the latest value with tolerance.",
8282
ge=2,
8383
)

0 commit comments

Comments
 (0)