From 1f6ddb052d895250a3bbfd3e2f78a0729e25ef82 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Fri, 28 Jun 2024 12:17:13 +0200 Subject: [PATCH] changed: EnableStorageCache parameter moved to Opm::Parameters namespace --- opm/simulators/flow/FlowProblemProperties.hpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/opm/simulators/flow/FlowProblemProperties.hpp b/opm/simulators/flow/FlowProblemProperties.hpp index e75721831..6d955162b 100644 --- a/opm/simulators/flow/FlowProblemProperties.hpp +++ b/opm/simulators/flow/FlowProblemProperties.hpp @@ -398,12 +398,6 @@ struct EclOutputDoublePrecision { static constexpr bool value = false; }; -// the cache for the storage term can also be used and also yields a decent speedup -template -struct EnableStorageCache { - static constexpr bool value = true; -}; - // Use the "velocity module" which uses the Eclipse "NEWTRAN" transmissibilities template struct FluxModule { @@ -522,6 +516,11 @@ template struct EnableIntensiveQuantityCache { static constexpr bool value = true; }; +// the cache for the storage term can also be used and also yields a decent speedup +template +struct EnableStorageCache +{ static constexpr bool value = true; }; + } // namespace Opm::Parameters #endif // OPM_FLOW_PROBLEM_PROPERTIES_HPP