flow_ebos: re-eanable the 'tempV.maxCoff()' convergence check for the well model

the 'tempV' object currently only contains garbagee but the condition
is needed and will thus be fixed in a different PR.

thanks goes to @totto82 for the clarifications.
This commit is contained in:
Andreas Lauser 2016-10-19 12:24:33 +02:00
parent 45f11d8820
commit 5007d99c0d

View File

@ -275,7 +275,7 @@ namespace detail {
for ( int idx = 0; idx < np; ++idx )
{
B_avg[idx] = B.col(idx).sum()/nc;
//maxCoeff[idx] = tempV.col(idx).maxCoeff();
maxCoeff[idx] = tempV.col(idx).maxCoeff();
R_sum[idx] = R.col(idx).sum();
assert(np >= np);