mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-22 09:16:27 -06:00
Fix convergence failure exception message
The message was a leftover from the ImpesTPFA solver and should reflect the actual location. Noticed by: qilicun (Liu Ming) Fixes: Issue #50
This commit is contained in:
parent
cbd79ed2ad
commit
faa3646a52
@ -778,7 +778,9 @@ namespace {
|
||||
matr.outerIndexPtr(), matr.innerIndexPtr(), matr.valuePtr(),
|
||||
total_residual.value().data(), dx.data());
|
||||
if (!rep.converged) {
|
||||
OPM_THROW(std::runtime_error, "ImpesTPFAAD::solve(): Linear solver convergence failure.");
|
||||
OPM_THROW(std::runtime_error,
|
||||
"FullyImplicitBlackoilSolver::solveJacobianSystem(): "
|
||||
"Linear solver convergence failure.");
|
||||
}
|
||||
return dx;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user