diff --git a/opm/simulators/flow/FlowMain.hpp b/opm/simulators/flow/FlowMain.hpp index 7f692d958..fb7c10ae4 100644 --- a/opm/simulators/flow/FlowMain.hpp +++ b/opm/simulators/flow/FlowMain.hpp @@ -141,7 +141,7 @@ namespace Opm { Parameters::hideParam(); // in flow only the deck file determines the end time of the simulation - Parameters::hideParam(); + Parameters::hideParam(); // time stepping is not done by the eWoms code in flow Parameters::hideParam(); diff --git a/opm/simulators/flow/FlowProblemProperties.hpp b/opm/simulators/flow/FlowProblemProperties.hpp index 6587f3e68..d3f29c204 100644 --- a/opm/simulators/flow/FlowProblemProperties.hpp +++ b/opm/simulators/flow/FlowProblemProperties.hpp @@ -268,17 +268,6 @@ struct EnableApiTracking { static constexpr bool value = false; }; -// The default for the end time of the simulation [s] -// -// By default, stop it after the universe will probably have stopped -// to exist. (the ECL problem will finish the simulation explicitly -// after it simulated the last episode specified in the deck.) -template -struct EndTime { - using type = GetPropType; - static constexpr type value = 1e100; -}; - // The default for the initial time step size of the simulation [s]. // // The chosen value means that the size of the first time step is the @@ -493,11 +482,6 @@ struct ExplicitRockCompaction { namespace Opm::Parameters { -// The default location for the ECL output files -template -struct OutputDir -{ static constexpr auto value = "."; }; - // Disable the VTK output by default for this problem ... template struct EnableVtkOutput @@ -514,6 +498,18 @@ template struct EnableStorageCache { static constexpr bool value = true; }; +// The default for the end time of the simulation [s] +// +// By default, stop it after the universe will probably have stopped +// to exist. (the ECL problem will finish the simulation explicitly +// after it simulated the last episode specified in the deck.) +template +struct EndTime +{ + using type = GetPropType; + static constexpr type value = 1e100; +}; + // the default for the allowed volumetric error for oil per second template struct NewtonTolerance @@ -522,6 +518,11 @@ struct NewtonTolerance static constexpr type value = 1e-2; }; +// The default location for the ECL output files +template +struct OutputDir +{ static constexpr auto value = "."; }; + } // namespace Opm::Parameters #endif // OPM_FLOW_PROBLEM_PROPERTIES_HPP