diff --git a/exercises/exercise-biomineralization/biominproblem.hh b/exercises/exercise-biomineralization/biominproblem.hh index 46ac8f91ab91ffde882e94cc025428dacc4382c0..2f0bd7dc2627b0ee462a51024fd37be775e535b4 100644 --- a/exercises/exercise-biomineralization/biominproblem.hh +++ b/exercises/exercise-biomineralization/biominproblem.hh @@ -95,7 +95,7 @@ struct SpatialParams<TypeTag, TTag::ExerciseFourBioMin> { }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::ExerciseFourBioMin> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::ExerciseFourBioMin> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridVolumeVariablesCache<TypeTag, TTag::ExerciseFourBioMin> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh b/exercises/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh index 85864cd1ff0436bf9636c9a89b82e30ce5adb74a..4e579e2d43aa4b9f89a3d89fbe308fc3b71539a7 100644 --- a/exercises/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh +++ b/exercises/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh @@ -78,7 +78,7 @@ template<class TypeTag> struct Problem<TypeTag, TTag::StokesOneP> { using type = Dumux::FreeFlowSubProblem<TypeTag> ; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::StokesOneP> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::StokesOneP> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::StokesOneP> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/exercise-coupling-ff-pm/models/freeflowsubproblem.hh b/exercises/exercise-coupling-ff-pm/models/freeflowsubproblem.hh index 952c9b8841146be82ecc85f4fe3afcf6f6f178b6..6cbd7bab85238ad33422d53b4d721713833b7092 100644 --- a/exercises/exercise-coupling-ff-pm/models/freeflowsubproblem.hh +++ b/exercises/exercise-coupling-ff-pm/models/freeflowsubproblem.hh @@ -70,7 +70,7 @@ template<class TypeTag> struct Problem<TypeTag, TTag::StokesNC> { using type = Dumux::FreeFlowSubProblem<TypeTag> ; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::StokesNC> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::StokesNC> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::StokesNC> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh b/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh index 374f9db44e8ea0260fae8f4150abc42c3178f050..346167057bcc5021f0aa17ceb280e7ec44556019 100644 --- a/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh +++ b/exercises/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh @@ -69,7 +69,7 @@ template<class TypeTag> struct Problem<TypeTag, TTag::StokesZeroEq> { using type = Dumux::FreeFlowSubProblem<TypeTag> ; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::StokesZeroEq> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::StokesZeroEq> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::StokesZeroEq> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/exercise-mainfile/1pproblem.hh b/exercises/exercise-mainfile/1pproblem.hh index 13edd6a8fcb4d4eb5fd4fb17e80bfe4163a37ebc..1f15312a001e12ca95892de4f824c4019af0043e 100644 --- a/exercises/exercise-mainfile/1pproblem.hh +++ b/exercises/exercise-mainfile/1pproblem.hh @@ -106,7 +106,7 @@ struct EnableGridVolumeVariablesCache<TypeTag, TTag::OnePBase> { static constexp template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::OnePBase> { static constexpr bool value = false; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::OnePBase> { static constexpr bool value = false; }; +struct EnableGridGeometryCache<TypeTag, TTag::OnePBase> { static constexpr bool value = false; }; } // end namespace Properties /*! diff --git a/exercises/solution/exercise-biomineralization/biominproblem.hh b/exercises/solution/exercise-biomineralization/biominproblem.hh index 9bf73648e25bfecf8c02670420c867c3e986abf9..8c511ec89dc714db8b653860ddd5bb9b920505e8 100644 --- a/exercises/solution/exercise-biomineralization/biominproblem.hh +++ b/exercises/solution/exercise-biomineralization/biominproblem.hh @@ -96,7 +96,7 @@ struct SpatialParams<TypeTag, TTag::ExerciseFourBioMin> { }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::ExerciseFourBioMin> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::ExerciseFourBioMin> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridVolumeVariablesCache<TypeTag, TTag::ExerciseFourBioMin> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/solution/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh b/exercises/solution/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh index 5fbe9f0e683526b3aa97ad4ff4ed17d87e99af5e..a5a93f69b2846daa49132c2aea8943c9a6d71536 100644 --- a/exercises/solution/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh +++ b/exercises/solution/exercise-coupling-ff-pm/interface/freeflowsubproblem.hh @@ -77,7 +77,7 @@ template<class TypeTag> struct Problem<TypeTag, TTag::StokesOneP> { using type = Dumux::FreeFlowSubProblem<TypeTag> ; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::StokesOneP> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::StokesOneP> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::StokesOneP> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/solution/exercise-coupling-ff-pm/models/freeflowsubproblem.hh b/exercises/solution/exercise-coupling-ff-pm/models/freeflowsubproblem.hh index dd2e0a7ccba2b6473e18fbc44d0fae252868c728..412aa252dcaa937c3b696747a3fd1f21a86de08f 100644 --- a/exercises/solution/exercise-coupling-ff-pm/models/freeflowsubproblem.hh +++ b/exercises/solution/exercise-coupling-ff-pm/models/freeflowsubproblem.hh @@ -70,7 +70,7 @@ template<class TypeTag> struct Problem<TypeTag, TTag::StokesNC> { using type = Dumux::FreeFlowSubProblem<TypeTag> ; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::StokesNC> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::StokesNC> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::StokesNC> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/solution/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh b/exercises/solution/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh index ca908bf47fb8fbe9b10fc2d3a669512837249097..f66af592ca2faec9eee22b519ed02456b8a02166 100644 --- a/exercises/solution/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh +++ b/exercises/solution/exercise-coupling-ff-pm/turbulence/freeflowsubproblem.hh @@ -78,7 +78,7 @@ template<class TypeTag> struct Problem<TypeTag, TTag::StokesZeroEq> { using type = Dumux::FreeFlowSubProblem<TypeTag> ; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::StokesZeroEq> { static constexpr bool value = true; }; +struct EnableGridGeometryCache<TypeTag, TTag::StokesZeroEq> { static constexpr bool value = true; }; template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::StokesZeroEq> { static constexpr bool value = true; }; template<class TypeTag> diff --git a/exercises/solution/exercise-mainfile/1pproblem.hh b/exercises/solution/exercise-mainfile/1pproblem.hh index 7641119d93c237c05e64f36a1c67a15a68d90e5c..4572dfa2a00b9e9cf46b73f37aeb333f89470806 100644 --- a/exercises/solution/exercise-mainfile/1pproblem.hh +++ b/exercises/solution/exercise-mainfile/1pproblem.hh @@ -106,7 +106,7 @@ struct EnableGridVolumeVariablesCache<TypeTag, TTag::OnePBase> { static constexp template<class TypeTag> struct EnableGridFluxVariablesCache<TypeTag, TTag::OnePBase> { static constexpr bool value = false; }; template<class TypeTag> -struct EnableFVGridGeometryCache<TypeTag, TTag::OnePBase> { static constexpr bool value = false; }; +struct EnableGridGeometryCache<TypeTag, TTag::OnePBase> { static constexpr bool value = false; }; } // end namespace Properties /*!