From 0b6a74b20a59a5aec58e4c144666dd645fba3ce8 Mon Sep 17 00:00:00 2001 From: Bernd Flemisch <bernd@iws.uni-stuttgart.de> Date: Fri, 16 Nov 2018 12:00:04 +0100 Subject: [PATCH] [propertysystem] replace macro SET_INT_PROP --- dumux/discretization/staggered/freeflow/properties.hh | 3 ++- dumux/freeflow/compositional/navierstokesncmodel.hh | 3 ++- dumux/porousmediumflow/1pnc/model.hh | 3 ++- dumux/porousmediumflow/2pnc/model.hh | 3 ++- dumux/porousmediumflow/3p3c/model.hh | 3 ++- dumux/porousmediumflow/3pwateroil/model.hh | 3 ++- dumux/porousmediumflow/mpnc/model.hh | 3 ++- dumux/porousmediumflow/nonequilibrium/model.hh | 6 ++++-- dumux/porousmediumflow/richardsnc/model.hh | 3 ++- test/freeflow/navierstokesnc/channel/problem.hh | 3 ++- test/freeflow/navierstokesnc/densitydrivenflow/problem.hh | 3 ++- test/freeflow/navierstokesnc/maxwellstefan/problem.hh | 3 ++- test/freeflow/ransnc/problem.hh | 3 ++- .../stokesdarcy/1p2c_1p2c/horizontalflow/problem_darcy.hh | 3 ++- .../stokesdarcy/1p2c_1p2c/horizontalflow/problem_stokes.hh | 3 ++- .../stokesdarcy/1p2c_1p2c/verticalflow/problem_darcy.hh | 3 ++- .../stokesdarcy/1p2c_1p2c/verticalflow/problem_stokes.hh | 3 ++- .../boundary/stokesdarcy/1p2c_2p2c/problem_darcy.hh | 3 ++- .../boundary/stokesdarcy/1p2c_2p2c/problem_stokes.hh | 3 ++- test/porousmediumflow/2pncmin/implicit/problem.hh | 3 ++- .../mpnc/implicit/thermalnonequilibrium/problem.hh | 6 ++++-- 21 files changed, 46 insertions(+), 23 deletions(-) diff --git a/dumux/discretization/staggered/freeflow/properties.hh b/dumux/discretization/staggered/freeflow/properties.hh index 1d434cc5bb..f0ded4b8b6 100644 --- a/dumux/discretization/staggered/freeflow/properties.hh +++ b/dumux/discretization/staggered/freeflow/properties.hh @@ -58,7 +58,8 @@ struct StaggeredFreeFlowModel { using InheritsFrom = std::tuple<StaggeredModel>; * \brief Set the number of equations on the faces to 1. We only consider scalar values because the velocity vector * is normal to the face. */ -SET_INT_PROP(StaggeredFreeFlowModel, NumEqFace, 1); +template<class TypeTag> +struct NumEqFace<TypeTag, TTag::StaggeredFreeFlowModel> { static constexpr int value = 1; }; /*! * \brief For free flow models, we take the number of "physical" equations diff --git a/dumux/freeflow/compositional/navierstokesncmodel.hh b/dumux/freeflow/compositional/navierstokesncmodel.hh index 34a98ec348..f50b133f0f 100644 --- a/dumux/freeflow/compositional/navierstokesncmodel.hh +++ b/dumux/freeflow/compositional/navierstokesncmodel.hh @@ -143,7 +143,8 @@ public: template<class TypeTag> struct UseMoles<TypeTag, TTag::NavierStokesNC> { static constexpr bool value = false; }; //!< Defines whether molar (true) or mass (false) density is used -SET_INT_PROP(NavierStokesNC, ReplaceCompEqIdx, 0); //<! Set the ReplaceCompEqIdx to 0 by default +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::NavierStokesNC> { static constexpr int value = 0; }; //<! Set the ReplaceCompEqIdx to 0 by default template<class TypeTag> struct NormalizePressure<TypeTag, TTag::NavierStokesNC> { static constexpr bool value = true; }; //!< Normalize the pressure term in the momentum balance by default diff --git a/dumux/porousmediumflow/1pnc/model.hh b/dumux/porousmediumflow/1pnc/model.hh index dea6e71c09..fc4a4e4066 100644 --- a/dumux/porousmediumflow/1pnc/model.hh +++ b/dumux/porousmediumflow/1pnc/model.hh @@ -150,7 +150,8 @@ struct OnePNCNI { using InheritsFrom = std::tuple<OnePNC>; }; /////////////////////////////////////////////////////////////////////////// //! Set as default that no component mass balance is replaced by the total mass balance -SET_INT_PROP(OnePNC, ReplaceCompEqIdx, GetPropType<TypeTag, Properties::FluidSystem>::numComponents); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::OnePNC> { static constexpr int value = GetPropType<TypeTag, Properties::FluidSystem>::numComponents; }; //! The base model traits. Per default, we use the number of components of the fluid system. SET_PROP(OnePNC, BaseModelTraits) diff --git a/dumux/porousmediumflow/2pnc/model.hh b/dumux/porousmediumflow/2pnc/model.hh index 21736eeded..8f0ed8a006 100644 --- a/dumux/porousmediumflow/2pnc/model.hh +++ b/dumux/porousmediumflow/2pnc/model.hh @@ -256,7 +256,8 @@ SET_TYPE_PROP(TwoPNC, IOFields, TwoPNCIOFields); SET_TYPE_PROP(TwoPNC, LocalResidual, CompositionalLocalResidual<TypeTag>); //!< Use the compositional local residual -SET_INT_PROP(TwoPNC, ReplaceCompEqIdx, GetPropType<TypeTag, Properties::FluidSystem>::numComponents); //!< Per default, no component mass balance is replaced +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::TwoPNC> { static constexpr int value = GetPropType<TypeTag, Properties::FluidSystem>::numComponents; }; //!< Per default, no component mass balance is replaced //! Default formulation is pw-Sn, overwrite if necessary SET_PROP(TwoPNC, Formulation) diff --git a/dumux/porousmediumflow/3p3c/model.hh b/dumux/porousmediumflow/3p3c/model.hh index 2925ea0ea8..5763331776 100644 --- a/dumux/porousmediumflow/3p3c/model.hh +++ b/dumux/porousmediumflow/3p3c/model.hh @@ -225,7 +225,8 @@ template<class TypeTag> struct UseConstraintSolver<TypeTag, TTag::ThreePThreeC> { static constexpr bool value = false; }; //! Set as default that _no_ component mass balance is replaced by the total mass balance -SET_INT_PROP(ThreePThreeC, ReplaceCompEqIdx, GetPropType<TypeTag, Properties::ModelTraits>::numComponents()); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::ThreePThreeC> { static constexpr int value = GetPropType<TypeTag, Properties::ModelTraits>::numComponents(; }); /*! * \brief The fluid state which is used by the volume variables to * store the thermodynamic state. This should be chosen diff --git a/dumux/porousmediumflow/3pwateroil/model.hh b/dumux/porousmediumflow/3pwateroil/model.hh index 34cdd163f8..a86fe27dd5 100644 --- a/dumux/porousmediumflow/3pwateroil/model.hh +++ b/dumux/porousmediumflow/3pwateroil/model.hh @@ -225,7 +225,8 @@ SET_PROP(ThreePWaterOilNI, FluidState){ SET_TYPE_PROP(ThreePWaterOilNI, LocalResidual, ThreePWaterOilLocalResidual<TypeTag>); //! Set as default that no component mass balance is replaced by the total mass balance -SET_INT_PROP(ThreePWaterOilNI, ReplaceCompEqIdx, GetPropType<TypeTag, Properties::ModelTraits>::numComponents()); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::ThreePWaterOilNI> { static constexpr int value = GetPropType<TypeTag, Properties::ModelTraits>::numComponents(; }); //! The primary variable switch for the 3p3c model SET_TYPE_PROP(ThreePWaterOilNI, PrimaryVariableSwitch, ThreePWaterOilPrimaryVariableSwitch<TypeTag>); diff --git a/dumux/porousmediumflow/mpnc/model.hh b/dumux/porousmediumflow/mpnc/model.hh index 8da121ab30..23b294c64c 100644 --- a/dumux/porousmediumflow/mpnc/model.hh +++ b/dumux/porousmediumflow/mpnc/model.hh @@ -289,7 +289,8 @@ public: }; //! Per default, no component mass balance is replaced -SET_INT_PROP(MPNC, ReplaceCompEqIdx, GetPropType<TypeTag, Properties::FluidSystem>::numComponents); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::MPNC> { static constexpr int value = GetPropType<TypeTag, Properties::FluidSystem>::numComponents; }; //! Use mole fractions in the balance equations by default template<class TypeTag> struct UseMoles<TypeTag, TTag::MPNC> { static constexpr bool value = true; }; diff --git a/dumux/porousmediumflow/nonequilibrium/model.hh b/dumux/porousmediumflow/nonequilibrium/model.hh index cea9e423ba..fa218acbd8 100644 --- a/dumux/porousmediumflow/nonequilibrium/model.hh +++ b/dumux/porousmediumflow/nonequilibrium/model.hh @@ -116,8 +116,10 @@ template<class TypeTag> struct EnableChemicalNonEquilibrium<TypeTag, TTag::NonEquilibrium> { static constexpr bool value = true; }; //! Default values for the number of energy balance equations -SET_INT_PROP(NonEquilibrium, NumEnergyEqSolid, 1); -SET_INT_PROP(NonEquilibrium, NumEnergyEqFluid, GetPropType<TypeTag, Properties::EquilibriumModelTraits>::numPhases()); +template<class TypeTag> +struct NumEnergyEqSolid<TypeTag, TTag::NonEquilibrium> { static constexpr int value = 1; }; +template<class TypeTag> +struct NumEnergyEqFluid<TypeTag, TTag::NonEquilibrium> { static constexpr int value = GetPropType<TypeTag, Properties::EquilibriumModelTraits>::numPhases(; }); SET_TYPE_PROP(NonEquilibrium, EnergyLocalResidual, EnergyLocalResidualNonEquilibrium<TypeTag, getPropValue<TypeTag, Properties::NumEnergyEqFluid>()>); SET_TYPE_PROP(NonEquilibrium, LocalResidual, NonEquilibriumLocalResidual<TypeTag>); diff --git a/dumux/porousmediumflow/richardsnc/model.hh b/dumux/porousmediumflow/richardsnc/model.hh index 814aacd105..fb20e6c829 100644 --- a/dumux/porousmediumflow/richardsnc/model.hh +++ b/dumux/porousmediumflow/richardsnc/model.hh @@ -165,7 +165,8 @@ SET_TYPE_PROP(RichardsNC, LocalResidual, CompositionalLocalResidual<TypeTag>); //! We set the replaceCompIdx to 0, i.e. the first equation is substituted with //! the total mass balance, i.e. the phase balance -SET_INT_PROP(RichardsNC, ReplaceCompEqIdx, 0); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::RichardsNC> { static constexpr int value = 0; }; //! Set the volume variables property SET_PROP(RichardsNC, VolumeVariables) diff --git a/test/freeflow/navierstokesnc/channel/problem.hh b/test/freeflow/navierstokesnc/channel/problem.hh index a6e128ba66..ff835dcc9e 100644 --- a/test/freeflow/navierstokesnc/channel/problem.hh +++ b/test/freeflow/navierstokesnc/channel/problem.hh @@ -63,7 +63,8 @@ SET_PROP(ChannelNCTest, FluidSystem) using type = FluidSystems::OnePAdapter<H2OAir, phaseIdx>; }; -SET_INT_PROP(ChannelNCTest, ReplaceCompEqIdx, 0); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::ChannelNCTest> { static constexpr int value = 0; }; // Set the grid type SET_TYPE_PROP(ChannelNCTest, Grid, Dune::YaspGrid<2>); diff --git a/test/freeflow/navierstokesnc/densitydrivenflow/problem.hh b/test/freeflow/navierstokesnc/densitydrivenflow/problem.hh index 1c3e8efef1..d1992bd70f 100644 --- a/test/freeflow/navierstokesnc/densitydrivenflow/problem.hh +++ b/test/freeflow/navierstokesnc/densitydrivenflow/problem.hh @@ -55,7 +55,8 @@ SET_PROP(DensityDrivenFlow, FluidSystem) using type = FluidSystems::OnePAdapter<H2OAir, phaseIdx>; }; -SET_INT_PROP(DensityDrivenFlow, ReplaceCompEqIdx, 0); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::DensityDrivenFlow> { static constexpr int value = 0; }; // Set the grid type SET_TYPE_PROP(DensityDrivenFlow, Grid, Dune::YaspGrid<2>); diff --git a/test/freeflow/navierstokesnc/maxwellstefan/problem.hh b/test/freeflow/navierstokesnc/maxwellstefan/problem.hh index a2c06c03f4..dc394abdd9 100644 --- a/test/freeflow/navierstokesnc/maxwellstefan/problem.hh +++ b/test/freeflow/navierstokesnc/maxwellstefan/problem.hh @@ -49,7 +49,8 @@ namespace TTag { struct MaxwellStefanNCTest { using InheritsFrom = std::tuple<NavierStokesNC, StaggeredFreeFlowModel>; }; } // end namespace TTag -SET_INT_PROP(MaxwellStefanNCTest, ReplaceCompEqIdx, 0); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::MaxwellStefanNCTest> { static constexpr int value = 0; }; // Set the grid type SET_TYPE_PROP(MaxwellStefanNCTest, Grid, Dune::YaspGrid<2>); diff --git a/test/freeflow/ransnc/problem.hh b/test/freeflow/ransnc/problem.hh index e53e266a36..794998f679 100644 --- a/test/freeflow/ransnc/problem.hh +++ b/test/freeflow/ransnc/problem.hh @@ -94,7 +94,8 @@ SET_PROP(FlatPlateNCTest, FluidSystem) }; // replace the main component balance eq with a total balance eq -SET_INT_PROP(FlatPlateNCTest, ReplaceCompEqIdx, 0); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::FlatPlateNCTest> { static constexpr int value = 0; }; // Set the grid type SET_TYPE_PROP(FlatPlateNCTest, Grid, diff --git a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_darcy.hh b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_darcy.hh index 0aa5166d73..476cac429e 100644 --- a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_darcy.hh +++ b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_darcy.hh @@ -65,7 +65,8 @@ template<class TypeTag> struct UseMoles<TypeTag, TTag::DarcyOnePTwoC> { static constexpr bool value = true; }; // Do not replace one equation with a total mass balance -SET_INT_PROP(DarcyOnePTwoC, ReplaceCompEqIdx, 3); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::DarcyOnePTwoC> { static constexpr int value = 3; }; //! Use a model with constant tortuosity for the effective diffusivity SET_TYPE_PROP(DarcyOnePTwoC, EffectiveDiffusivityModel, diff --git a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_stokes.hh b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_stokes.hh index fc05f67716..bee03e45f9 100644 --- a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_stokes.hh +++ b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/horizontalflow/problem_stokes.hh @@ -71,7 +71,8 @@ template<class TypeTag> struct UseMoles<TypeTag, TTag::StokesOnePTwoC> { static constexpr bool value = true; }; // Do not replace one equation with a total mass balance -SET_INT_PROP(StokesOnePTwoC, ReplaceCompEqIdx, 3); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::StokesOnePTwoC> { static constexpr int value = 3; }; } /*! diff --git a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_darcy.hh b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_darcy.hh index ea50d02e5d..8f9a7dd60f 100644 --- a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_darcy.hh +++ b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_darcy.hh @@ -65,7 +65,8 @@ template<class TypeTag> struct UseMoles<TypeTag, TTag::DarcyOnePTwoC> { static constexpr bool value = true; }; // Do not replace one equation with a total mass balance -SET_INT_PROP(DarcyOnePTwoC, ReplaceCompEqIdx, 3); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::DarcyOnePTwoC> { static constexpr int value = 3; }; //! Use a model with constant tortuosity for the effective diffusivity SET_TYPE_PROP(DarcyOnePTwoC, EffectiveDiffusivityModel, diff --git a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_stokes.hh b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_stokes.hh index 133a23b058..ca5a97cb6a 100644 --- a/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_stokes.hh +++ b/test/multidomain/boundary/stokesdarcy/1p2c_1p2c/verticalflow/problem_stokes.hh @@ -72,7 +72,8 @@ template<class TypeTag> struct UseMoles<TypeTag, TTag::StokesOnePTwoC> { static constexpr bool value = true; }; // Do not replace one equation with a total mass balance -SET_INT_PROP(StokesOnePTwoC, ReplaceCompEqIdx, 3); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::StokesOnePTwoC> { static constexpr int value = 3; }; } /*! diff --git a/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_darcy.hh b/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_darcy.hh index 9e75b5fa17..ae766fed03 100644 --- a/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_darcy.hh +++ b/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_darcy.hh @@ -62,7 +62,8 @@ SET_PROP(DarcyTwoPTwoC, Formulation) { static constexpr auto value = TwoPFormulation::p1s0; }; //// The gas component balance (air) is replaced by the total mass balance -SET_INT_PROP(DarcyTwoPTwoC, ReplaceCompEqIdx, 3); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::DarcyTwoPTwoC> { static constexpr int value = 3; }; // Set the grid type SET_TYPE_PROP(DarcyTwoPTwoC, Grid, Dune::YaspGrid<2, Dune::TensorProductCoordinates<GetPropType<TypeTag, Properties::Scalar>, 2> >); diff --git a/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_stokes.hh b/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_stokes.hh index ed681672d6..0759c1baf4 100644 --- a/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_stokes.hh +++ b/test/multidomain/boundary/stokesdarcy/1p2c_2p2c/problem_stokes.hh @@ -61,7 +61,8 @@ SET_PROP(StokesOnePTwoC, FluidSystem) using type = FluidSystems::OnePAdapter<H2OAir, phaseIdx>; }; -SET_INT_PROP(StokesOnePTwoC, ReplaceCompEqIdx, 3); +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::StokesOnePTwoC> { static constexpr int value = 3; }; // Use formulation based on mass fractions template<class TypeTag> diff --git a/test/porousmediumflow/2pncmin/implicit/problem.hh b/test/porousmediumflow/2pncmin/implicit/problem.hh index da652e24b0..80ab7eb37a 100644 --- a/test/porousmediumflow/2pncmin/implicit/problem.hh +++ b/test/porousmediumflow/2pncmin/implicit/problem.hh @@ -87,7 +87,8 @@ SET_PROP(Dissolution, SpatialParams) }; //Set properties here to override the default property settings -SET_INT_PROP(Dissolution, ReplaceCompEqIdx, 1); //!< Replace gas balance by total mass balance +template<class TypeTag> +struct ReplaceCompEqIdx<TypeTag, TTag::Dissolution> { static constexpr int value = 1; }; //!< Replace gas balance by total mass balance SET_PROP(Dissolution, Formulation) { static constexpr auto value = TwoPFormulation::p1s0; }; diff --git a/test/porousmediumflow/mpnc/implicit/thermalnonequilibrium/problem.hh b/test/porousmediumflow/mpnc/implicit/thermalnonequilibrium/problem.hh index eaf710218e..e2e8db2687 100644 --- a/test/porousmediumflow/mpnc/implicit/thermalnonequilibrium/problem.hh +++ b/test/porousmediumflow/mpnc/implicit/thermalnonequilibrium/problem.hh @@ -112,8 +112,10 @@ public: //################# //changes from the default settings which also assume chemical non-equilibrium //set the number of energyequations we want to use -SET_INT_PROP(CombustionOneComponent, NumEnergyEqFluid, 1); -SET_INT_PROP(CombustionOneComponent, NumEnergyEqSolid, 1); +template<class TypeTag> +struct NumEnergyEqFluid<TypeTag, TTag::CombustionOneComponent> { static constexpr int value = 1; }; +template<class TypeTag> +struct NumEnergyEqSolid<TypeTag, TTag::CombustionOneComponent> { static constexpr int value = 1; }; // by default chemical non equilibrium is enabled in the nonequil model, switch that off here template<class TypeTag> -- GitLab