ECL wells: deactivate the well performance output at the end of a time step

it is just deactivated using an always-false condition so it does not
bitrot and can be re-activated quickly. I did not want to completely
remove this code because it is useful for debugging purposes, but for
regular use, it should have been superseeded by the ECL summary output
stuff...
This commit is contained in:
Andreas Lauser 2014-11-25 17:40:13 +01:00
parent 49061f879f
commit 2fb0b4a7e5

View File

@ -953,7 +953,9 @@ public:
*/
void endTimeStep()
{
if (simulator_.gridView().comm().rank() == 0) {
// we use a condition that is always false here to prevent the code below from
// bitrotting. (i.e., at least it stays compileable)
if (false && simulator_.gridView().comm().rank() == 0) {
std::cout << "Well '" << name() << "':\n";
std::cout << " Control mode: " << controlMode_ << "\n";
std::cout << " BHP limit: " << bhpLimit_/1e5 << " bar\n";