-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
80 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
Pipfile.lock | ||
.venv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
docs/problem_description_file/problem_description/residual_relative_tolerance.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
********************************* | ||
Residual Relative Tolerance | ||
********************************* | ||
|
||
:: | ||
|
||
Residual Relative Tolerance = <float> | ||
|
||
----------------------- | ||
Description / Usage | ||
----------------------- | ||
|
||
This is the per matrix version of this card. This overrides Residual Relative Tolerance for each matrix | ||
|
||
|
||
<float> | ||
**tol,** a non-negative floating point number ( tol ≥ 0.0 ) specifying the | ||
L\ :sub:`2` ratio convergence tolerance for the global nonlinear residual vector. | ||
|
||
The *Residual Relative Tolerance* card is not required; the default is 1e10 effectively turning it off. | ||
|
||
------------ | ||
Examples | ||
------------ | ||
|
||
Following is a sample card: | ||
:: | ||
|
||
MATRIX = 1 | ||
Residual Relative Tolerance = 1e-6 | ||
Number of EQ = 3 | ||
|
||
------------------------- | ||
Technical Discussion | ||
------------------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
.../problem_description_file/solver_specifications/residual_relative_tolerance.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
********************************* | ||
Residual Relative Tolerance | ||
********************************* | ||
|
||
:: | ||
|
||
Residual Relative Tolerance = <float> | ||
|
||
----------------------- | ||
Description / Usage | ||
----------------------- | ||
|
||
Residual Relative Tolerance requires the convergence to reach a relative | ||
tolerance compared to the initial normalized residual. | ||
|
||
For example if your initial normalized residual is :math:`r0=1e2` and you set the relative tolerance to :math:`rt=1e-6` | ||
then you must reach :math:`rf <= r0*rt` | ||
|
||
|
||
<float> | ||
**tol,** a non-negative floating point number ( tol ≥ 0.0 ) specifying the | ||
L\ :sub:`2` ratio convergence tolerance for the global nonlinear residual vector. | ||
|
||
The *Residual Relative Tolerance* card is not required; the default is 1e10 effectively turning it off. | ||
|
||
------------ | ||
Examples | ||
------------ | ||
|
||
Following is a sample card: | ||
:: | ||
|
||
Residual Relative Tolerance = 1e-6 | ||
|
||
------------------------- | ||
Technical Discussion | ||
------------------------- | ||
|
||
|