mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Removed some standard output messages (profiling branch)
This commit is contained in:
@@ -934,10 +934,8 @@ namespace Opm
|
|||||||
x_new[1] = (x_new[0]>0) ? x_new[1]/x_new[0] : 0.0;
|
x_new[1] = (x_new[0]>0) ? x_new[1]/x_new[0] : 0.0;
|
||||||
check_interval(x_new, x_min, x_max);
|
check_interval(x_new, x_min, x_max);
|
||||||
res_eq.computeResidual(x_new, res_new, mc, ff);
|
res_eq.computeResidual(x_new, res_new, mc, ff);
|
||||||
std::cout << " " << res_new[0] << " " << res_new[1] << std::endl;
|
|
||||||
alpha=alpha/2.0;
|
alpha=alpha/2.0;
|
||||||
lin_it=lin_it+1;
|
lin_it=lin_it+1;
|
||||||
std::cout << "Linear iterations" << lin_it << " " << norm(res_new) << std::endl;
|
|
||||||
}
|
}
|
||||||
if (lin_it>=max_lin_it) {
|
if (lin_it>=max_lin_it) {
|
||||||
successfull_newton_step = false;
|
successfull_newton_step = false;
|
||||||
@@ -949,7 +947,6 @@ namespace Opm
|
|||||||
iters_used_split += 1;
|
iters_used_split += 1;
|
||||||
successfull_newton_step = true;;
|
successfull_newton_step = true;;
|
||||||
}
|
}
|
||||||
std::cout << "Nonlinear " << iters_used_split << " " << norm(res) << std::endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((iters_used_split >= max_iters_split) && (norm(res) > tol_)) {
|
if ((iters_used_split >= max_iters_split) && (norm(res) > tol_)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user