flow: print the parameters at the beginning of the .PRT and .DBG files

This commit is contained in:
Andreas Lauser 2018-08-06 10:25:28 +02:00
parent 0714ab5930
commit 1ac74c62ee

View File

@ -406,6 +406,11 @@ namespace Opm
ss << "User = " << user << std::endl;
}
ss << "Simulation started on " << tmstr << " hrs\n";
ss << "---- parameters ----\n";
Ewoms::Parameters::printValues<TypeTag>(ss);
ss << "---- /parameters ----\n";
OpmLog::note(ss.str());
}
}