Change substep to time step in logging

This commit is contained in:
Alf B. Rustad
2017-10-13 13:29:31 +02:00
parent 2d2198a775
commit ad68c05982
4 changed files with 11 additions and 11 deletions

View File

@@ -1803,7 +1803,7 @@ typedef Eigen::Array<double,
}
msg += " WELL-CONT";
// std::cout << " WELL-CONT ";
OpmLog::note(msg);
OpmLog::debug(msg);
}
std::ostringstream ss;
const std::streamsize oprec = ss.precision(3);
@@ -1822,7 +1822,7 @@ typedef Eigen::Array<double,
// std::cout << std::setw(11) << residualWell;
ss.precision(oprec);
ss.flags(oflags);
OpmLog::note(ss.str());
OpmLog::debug(ss.str());
}
for (int idx = 0; idx < nm; ++idx) {
@@ -1933,7 +1933,7 @@ typedef Eigen::Array<double,
msg += " W-FLUX(" + materialName(idx).substr(0, 1) + ")";
}
msg += " WELL-CONT";
OpmLog::note(msg);
OpmLog::debug(msg);
}
std::ostringstream ss;
const std::streamsize oprec = ss.precision(3);
@@ -1945,7 +1945,7 @@ typedef Eigen::Array<double,
ss << std::setw(11) << residualWell;
ss.precision(oprec);
ss.flags(oflags);
OpmLog::note(ss.str());
OpmLog::debug(ss.str());
}
return converged;
}

View File

@@ -925,7 +925,7 @@ namespace Opm {
for (int compIdx = 0; compIdx < numComp; ++compIdx) {
msg += " CNV(" + key[ compIdx ] + ") ";
}
OpmLog::note(msg);
OpmLog::debug(msg);
}
std::ostringstream ss;
const std::streamsize oprec = ss.precision(3);
@@ -939,7 +939,7 @@ namespace Opm {
}
ss.precision(oprec);
ss.flags(oflags);
OpmLog::note(ss.str());
OpmLog::debug(ss.str());
}
for (int phaseIdx = 0; phaseIdx < numPhases(); ++phaseIdx) {

View File

@@ -345,7 +345,7 @@ public:
std::string msg =
"Time step took " + std::to_string(solver_timer.secsSinceStart()) + " seconds; "
"total solver time " + std::to_string(report.solver_time) + " seconds.";
OpmLog::note(msg);
OpmLog::debug(msg);
}
// write simulation state at the report stage