mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-30 11:06:55 -06:00
correcting typo in 'to large'
This commit is contained in:
parent
6f388f5b6d
commit
0f123a8890
@ -2064,7 +2064,7 @@ namespace detail {
|
|||||||
std::isnan(well_flux_residual[Gas]) || well_flux_residual[Gas] > maxResidualAllowed() ||
|
std::isnan(well_flux_residual[Gas]) || well_flux_residual[Gas] > maxResidualAllowed() ||
|
||||||
std::isnan(residualWell) || residualWell > maxResidualAllowed() )
|
std::isnan(residualWell) || residualWell > maxResidualAllowed() )
|
||||||
{
|
{
|
||||||
OPM_THROW(Opm::NumericalProblem,"One of the residuals is NaN or to large!");
|
OPM_THROW(Opm::NumericalProblem,"One of the residuals is NaN or too large!");
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( terminal_output_ )
|
if ( terminal_output_ )
|
||||||
@ -2147,7 +2147,7 @@ namespace detail {
|
|||||||
std::isnan(well_flux_residual[Oil]) || well_flux_residual[Oil] > maxResidualAllowed() ||
|
std::isnan(well_flux_residual[Oil]) || well_flux_residual[Oil] > maxResidualAllowed() ||
|
||||||
std::isnan(well_flux_residual[Gas]) || well_flux_residual[Gas] > maxResidualAllowed() )
|
std::isnan(well_flux_residual[Gas]) || well_flux_residual[Gas] > maxResidualAllowed() )
|
||||||
{
|
{
|
||||||
OPM_THROW(Opm::NumericalProblem,"One of the well residuals is NaN or to large!");
|
OPM_THROW(Opm::NumericalProblem,"One of the well residuals is NaN or too large!");
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( terminal_output_ )
|
if ( terminal_output_ )
|
||||||
|
@ -153,7 +153,7 @@ namespace Opm
|
|||||||
auto solver = asImpl().createSolver(wells);
|
auto solver = asImpl().createSolver(wells);
|
||||||
|
|
||||||
// If sub stepping is enabled allow the solver to sub cycle
|
// If sub stepping is enabled allow the solver to sub cycle
|
||||||
// in case the report steps are to large for the solver to converge
|
// in case the report steps are too large for the solver to converge
|
||||||
//
|
//
|
||||||
// \Note: The report steps are met in any case
|
// \Note: The report steps are met in any case
|
||||||
// \Note: The sub stepping will require a copy of the state variables
|
// \Note: The sub stepping will require a copy of the state variables
|
||||||
|
Loading…
Reference in New Issue
Block a user