From c91350a68f19f87fdb286ffca95e26cb9c7182c9 Mon Sep 17 00:00:00 2001 From: Felix Weinhardt <felixw@picard.iws.uni-stuttgart.de> Date: Wed, 19 Dec 2018 17:59:10 +0100 Subject: [PATCH] [exercise-basic] removed TypeTag Endungen --- exercises/exercise-basic/README.md | 2 +- exercises/exercise-basic/exercise_basic_2p.cc | 2 +- exercises/exercise-basic/exercise_basic_2p2c.cc | 2 +- exercises/exercise-basic/injection2p2cproblem.hh | 14 +++++++------- exercises/exercise-basic/injection2pniproblem.hh | 2 +- exercises/exercise-basic/injection2pproblem.hh | 12 ++++++------ .../solution/exercise-basic/exercise_basic_2pni.cc | 2 +- .../exercise-basic/injection2pniproblem.hh | 2 +- 8 files changed, 19 insertions(+), 19 deletions(-) diff --git a/exercises/exercise-basic/README.md b/exercises/exercise-basic/README.md index f0dbdf87..ac7eaa57 100644 --- a/exercises/exercise-basic/README.md +++ b/exercises/exercise-basic/README.md @@ -60,7 +60,7 @@ paraview injection-2p2c.pvd * Copy the main file `exercise_basic_2p.cc` and rename it to `exercise_basic_2pni.cc` * In `exercise_basic_2pni.cc`, include the header `injection2pniproblem.hh` instead of `injection2pproblem.hh`. -* In `exercise_basic_2pni.cc`, change `Injection2pCCTypeTag` to `Injection2pNICCTypeTag` in the line `using TypeTag = Properties::TTag::Injection2pNICCTypeTag;` +* In `exercise_basic_2pni.cc`, change `Injection2pCC` to `Injection2pNICC` in the line `using TypeTag = Properties::TTag::Injection2pNICC;` * Add a new executable in `CMakeLists.txt` by adding the lines ```cmake diff --git a/exercises/exercise-basic/exercise_basic_2p.cc b/exercises/exercise-basic/exercise_basic_2p.cc index babdd678..0c9f405f 100644 --- a/exercises/exercise-basic/exercise_basic_2p.cc +++ b/exercises/exercise-basic/exercise_basic_2p.cc @@ -58,7 +58,7 @@ int main(int argc, char** argv) try using namespace Dumux; // define the type tag for this problem - using TypeTag = Properties::TTag::Injection2pCCTypeTag; + using TypeTag = Properties::TTag::Injection2pCC; // initialize MPI, finalize is done automatically on exit const auto& mpiHelper = Dune::MPIHelper::instance(argc, argv); diff --git a/exercises/exercise-basic/exercise_basic_2p2c.cc b/exercises/exercise-basic/exercise_basic_2p2c.cc index 3232900d..f320beef 100644 --- a/exercises/exercise-basic/exercise_basic_2p2c.cc +++ b/exercises/exercise-basic/exercise_basic_2p2c.cc @@ -58,7 +58,7 @@ int main(int argc, char** argv) try using namespace Dumux; // define the type tag for this problem - using TypeTag = Properties::TTag::Injection2p2cCCTypeTag; + using TypeTag = Properties::TTag::Injection2p2cCC; // initialize MPI, finalize is done automatically on exit const auto& mpiHelper = Dune::MPIHelper::instance(argc, argv); diff --git a/exercises/exercise-basic/injection2p2cproblem.hh b/exercises/exercise-basic/injection2p2cproblem.hh index 9e483829..754e80bf 100644 --- a/exercises/exercise-basic/injection2p2cproblem.hh +++ b/exercises/exercise-basic/injection2p2cproblem.hh @@ -40,30 +40,30 @@ class Injection2p2cProblem; namespace Properties { // Create new type tags namespace TTag { -struct Injection2p2cTypeTag { using InheritsFrom = std::tuple<TwoPTwoC>; }; -struct Injection2p2cCCTypeTag { using InheritsFrom = std::tuple<CCTpfaModel, Injection2p2cTypeTag>; }; +struct Injection2p2c { using InheritsFrom = std::tuple<TwoPTwoC>; }; +struct Injection2p2cCC { using InheritsFrom = std::tuple<CCTpfaModel, Injection2p2c>; }; } // end namespace TTag // Set the grid type template<class TypeTag> -struct Grid<TypeTag, TTag::Injection2p2cTypeTag> { using type = Dune::YaspGrid<2>; }; +struct Grid<TypeTag, TTag::Injection2p2c> { using type = Dune::YaspGrid<2>; }; // Set the problem property template<class TypeTag> -struct Problem<TypeTag, TTag::Injection2p2cTypeTag> { using type = Injection2p2cProblem<TypeTag>; }; +struct Problem<TypeTag, TTag::Injection2p2c> { using type = Injection2p2cProblem<TypeTag>; }; // Set the spatial parameters -SET_TYPE_PROP(Injection2p2cTypeTag, SpatialParams, +SET_TYPE_PROP(Injection2p2c, SpatialParams, InjectionSpatialParams<GetPropType<TypeTag, Properties::FVGridGeometry>, GetPropType<TypeTag, Properties::Scalar>>); // Set fluid configuration template<class TypeTag> -struct FluidSystem<TypeTag, TTag::Injection2p2cTypeTag> { using type = FluidSystems::H2ON2<GetPropType<TypeTag, Properties::Scalar>, FluidSystems::H2ON2DefaultPolicy</*fastButSimplifiedRelations=*/ true>>; }; +struct FluidSystem<TypeTag, TTag::Injection2p2c> { using type = FluidSystems::H2ON2<GetPropType<TypeTag, Properties::Scalar>, FluidSystems::H2ON2DefaultPolicy</*fastButSimplifiedRelations=*/ true>>; }; // Define whether mole(true) or mass (false) fractions are used template<class TypeTag> -struct UseMoles<TypeTag, TTag::Injection2p2cTypeTag> { static constexpr bool value = true; }; +struct UseMoles<TypeTag, TTag::Injection2p2c> { static constexpr bool value = true; }; } // end namespace Properties /*! diff --git a/exercises/exercise-basic/injection2pniproblem.hh b/exercises/exercise-basic/injection2pniproblem.hh index eb5c5a44..b6ccceb7 100644 --- a/exercises/exercise-basic/injection2pniproblem.hh +++ b/exercises/exercise-basic/injection2pniproblem.hh @@ -47,7 +47,7 @@ namespace Properties // Create new type tags namespace TTag { struct Injection2pNITypeTag { using InheritsFrom = std::tuple<TwoP>; }; -struct Injection2pNICCTypeTag { using InheritsFrom = std::tuple<Injection2pNITypeTag, CCTpfaModel>; }; +struct Injection2pNICC { using InheritsFrom = std::tuple<Injection2pNITypeTag, CCTpfaModel>; }; } // end namespace TTag // Set the grid type diff --git a/exercises/exercise-basic/injection2pproblem.hh b/exercises/exercise-basic/injection2pproblem.hh index 414b4124..fda74466 100644 --- a/exercises/exercise-basic/injection2pproblem.hh +++ b/exercises/exercise-basic/injection2pproblem.hh @@ -42,26 +42,26 @@ namespace Properties { // define the TypeTag for this problem with a cell-centered two-point flux approximation spatial discretization. // Create new type tags namespace TTag { -struct Injection2pTypeTag { using InheritsFrom = std::tuple<TwoP>; }; -struct Injection2pCCTypeTag { using InheritsFrom = std::tuple<Injection2pTypeTag, CCTpfaModel>; }; +struct Injection2p { using InheritsFrom = std::tuple<TwoP>; }; +struct Injection2pCC { using InheritsFrom = std::tuple<Injection2p, CCTpfaModel>; }; } // end namespace TTag // Set the grid type template<class TypeTag> -struct Grid<TypeTag, TTag::Injection2pTypeTag> { using type = Dune::YaspGrid<2>; }; +struct Grid<TypeTag, TTag::Injection2p> { using type = Dune::YaspGrid<2>; }; // Set the problem property template<class TypeTag> -struct Problem<TypeTag, TTag::Injection2pTypeTag> { using type = InjectionProblem2P<TypeTag>; }; +struct Problem<TypeTag, TTag::Injection2p> { using type = InjectionProblem2P<TypeTag>; }; // Set the spatial parameters -SET_TYPE_PROP(Injection2pTypeTag, SpatialParams, +SET_TYPE_PROP(Injection2p, SpatialParams, InjectionSpatialParams<GetPropType<TypeTag, Properties::FVGridGeometry>, GetPropType<TypeTag, Properties::Scalar>>); // Set fluid configuration template<class TypeTag> -struct FluidSystem<TypeTag, TTag::Injection2pTypeTag> { using type = FluidSystems::H2ON2<GetPropType<TypeTag, Properties::Scalar>, FluidSystems::H2ON2DefaultPolicy</*fastButSimplifiedRelations=*/ true>>; }; +struct FluidSystem<TypeTag, TTag::Injection2p> { using type = FluidSystems::H2ON2<GetPropType<TypeTag, Properties::Scalar>, FluidSystems::H2ON2DefaultPolicy</*fastButSimplifiedRelations=*/ true>>; }; } // end namespace Properties /*! diff --git a/exercises/solution/exercise-basic/exercise_basic_2pni.cc b/exercises/solution/exercise-basic/exercise_basic_2pni.cc index e8e234af..69b9abb4 100644 --- a/exercises/solution/exercise-basic/exercise_basic_2pni.cc +++ b/exercises/solution/exercise-basic/exercise_basic_2pni.cc @@ -58,7 +58,7 @@ int main(int argc, char** argv) try using namespace Dumux; // define the type tag for this problem - using TypeTag = Properties::TTag::Injection2pNICCTypeTag; + using TypeTag = Properties::TTag::Injection2pNICC; // initialize MPI, finalize is done automatically on exit const auto& mpiHelper = Dune::MPIHelper::instance(argc, argv); diff --git a/exercises/solution/exercise-basic/injection2pniproblem.hh b/exercises/solution/exercise-basic/injection2pniproblem.hh index 4e20b2b4..0fe71def 100644 --- a/exercises/solution/exercise-basic/injection2pniproblem.hh +++ b/exercises/solution/exercise-basic/injection2pniproblem.hh @@ -42,7 +42,7 @@ namespace Properties { // Create new type tags namespace TTag { struct Injection2pNITypeTag { using InheritsFrom = std::tuple<TwoPNI>; }; -struct Injection2pNICCTypeTag { using InheritsFrom = std::tuple<Injection2pNITypeTag, CCTpfaModel>; }; +struct Injection2pNICC { using InheritsFrom = std::tuple<Injection2pNITypeTag, CCTpfaModel>; }; } // end namespace TTag // Set the grid type -- GitLab