From 1ac74c62ee3993648144d63067285908463d3d16 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Mon, 6 Aug 2018 10:25:28 +0200 Subject: [PATCH] flow: print the parameters at the beginning of the .PRT and .DBG files --- opm/autodiff/FlowMainEbos.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/opm/autodiff/FlowMainEbos.hpp b/opm/autodiff/FlowMainEbos.hpp index 5a815bdf4..b12b9ebac 100755 --- a/opm/autodiff/FlowMainEbos.hpp +++ b/opm/autodiff/FlowMainEbos.hpp @@ -406,6 +406,11 @@ namespace Opm ss << "User = " << user << std::endl; } ss << "Simulation started on " << tmstr << " hrs\n"; + + ss << "---- parameters ----\n"; + Ewoms::Parameters::printValues(ss); + ss << "---- /parameters ----\n"; + OpmLog::note(ss.str()); } }