diff --git a/dumux/porousmediumflow/1pnc/implicit/volumevariables.hh b/dumux/porousmediumflow/1pnc/implicit/volumevariables.hh index 775dbaf0a88db1cd070c1a1e18d9b34f0ff8eb42..e965160c31e8ee65a1f5dc010a81019c9ae35243 100644 --- a/dumux/porousmediumflow/1pnc/implicit/volumevariables.hh +++ b/dumux/porousmediumflow/1pnc/implicit/volumevariables.hh @@ -26,14 +26,14 @@ #define DUMUX_1PNC_VOLUME_VARIABLES_HH #include <dumux/common/properties.hh> -#include <dumux/discretization/volumevariables.hh> +#include <dumux/porousmediumflow/volumevariables.hh> namespace Dumux { /*! * \ingroup OnePNCModel - * \ingroup ImplicitVolumeVariables + * \ingroup PorousMediumFlowVolumeVariables * \brief Contains the quantities which are are constant within a * finite volume in the one-phase, n-component model. * @@ -45,9 +45,9 @@ namespace Dumux * model by specifying which phase is present through the DuMuX property system. */ template <class TypeTag> -class OnePNCVolumeVariables : public ImplicitVolumeVariables<TypeTag> +class OnePNCVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag> { - using ParentType = ImplicitVolumeVariables<TypeTag>; + using ParentType = PorousMediumFlowVolumeVariables<TypeTag>; using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); using Problem = typename GET_PROP_TYPE(TypeTag, Problem); diff --git a/dumux/porousmediumflow/2p/implicit/volumevariables.hh b/dumux/porousmediumflow/2p/implicit/volumevariables.hh index 0ca216a6583c6eccc420b95ef1ab5a33f05e2f63..ff6f58d0a547295bda450ea305888bd0007d4a44 100644 --- a/dumux/porousmediumflow/2p/implicit/volumevariables.hh +++ b/dumux/porousmediumflow/2p/implicit/volumevariables.hh @@ -26,21 +26,21 @@ #define DUMUX_2P_VOLUME_VARIABLES_HH #include <dumux/common/properties.hh> -#include <dumux/discretization/volumevariables.hh> +#include <dumux/porousmediumflow/volumevariables.hh> #include <dune/common/fvector.hh> namespace Dumux { /*! * \ingroup TwoPModel - * \ingroup ImplicitVolumeVariables + * \ingroup PorousMediumFlowVolumeVariables * \brief Contains the quantities which are are constant within a * finite volume in the two-phase model. */ template <class TypeTag> -class TwoPVolumeVariables : public ImplicitVolumeVariables<TypeTag> +class TwoPVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag> { - using ParentType = ImplicitVolumeVariables<TypeTag>; + using ParentType = PorousMediumFlowVolumeVariables<TypeTag>; using Implementation = typename GET_PROP_TYPE(TypeTag, VolumeVariables); using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); diff --git a/dumux/porousmediumflow/2pnc/implicit/volumevariables.hh b/dumux/porousmediumflow/2pnc/implicit/volumevariables.hh index 571be88c0b4f3a8223ad3658c25053838e6aa797..2238d6f4519310f485f807bf9c8008eba7cf5c54 100644 --- a/dumux/porousmediumflow/2pnc/implicit/volumevariables.hh +++ b/dumux/porousmediumflow/2pnc/implicit/volumevariables.hh @@ -32,7 +32,7 @@ #include <dumux/common/properties.hh> #include <dumux/material/fluidstates/compositional.hh> -#include <dumux/discretization/volumevariables.hh> +#include <dumux/porousmediumflow/volumevariables.hh> #include <dumux/material/constraintsolvers/computefromreferencephase.hh> #include <dumux/material/constraintsolvers/miscible2pnccomposition.hh> @@ -43,14 +43,14 @@ namespace Dumux /*! * \ingroup TwoPNCModel - * \ingroup ImplicitVolumeVariables + * \ingroup PorousMediumFlowVolumeVariables * \brief Contains the quantities which are are constant within a * finite volume in the two-phase, n-component model. */ template <class TypeTag> -class TwoPNCVolumeVariables : public ImplicitVolumeVariables<TypeTag> +class TwoPNCVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag> { - using ParentType = ImplicitVolumeVariables<TypeTag>; + using ParentType = PorousMediumFlowVolumeVariables<TypeTag>; using Implementation = typename GET_PROP_TYPE(TypeTag, VolumeVariables); using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); using Grid = typename GET_PROP_TYPE(TypeTag, Grid); diff --git a/dumux/porousmediumflow/3p/implicit/volumevariables.hh b/dumux/porousmediumflow/3p/implicit/volumevariables.hh index 6d33c70fcc1e0123da0d6ce1471070ec4df8708a..186a4fc212e7eae2e58d731f12eb56cbdc40e66f 100644 --- a/dumux/porousmediumflow/3p/implicit/volumevariables.hh +++ b/dumux/porousmediumflow/3p/implicit/volumevariables.hh @@ -28,7 +28,7 @@ #include <dumux/common/properties.hh> #include <dumux/material/constants.hh> #include <dumux/material/fluidstates/immiscible.hh> -#include <dumux/discretization/volumevariables.hh> +#include <dumux/porousmediumflow/volumevariables.hh> #include <dumux/discretization/methods.hh> namespace Dumux @@ -36,14 +36,14 @@ namespace Dumux /*! * \ingroup ThreePModel - * \ingroup ImplicitVolumeVariables + * \ingroup PorousMediumFlowVolumeVariables * \brief Contains the quantities which are are constant within a * finite volume in three-phase model. */ template <class TypeTag> -class ThreePVolumeVariables : public ImplicitVolumeVariables<TypeTag> +class ThreePVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag> { - using ParentType = ImplicitVolumeVariables<TypeTag>; + using ParentType = PorousMediumFlowVolumeVariables<TypeTag>; using Implementation = typename GET_PROP_TYPE(TypeTag, VolumeVariables); using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); diff --git a/dumux/porousmediumflow/3p3c/implicit/volumevariables.hh b/dumux/porousmediumflow/3p3c/implicit/volumevariables.hh index 8850570fce4a86caa2fede675a4b93567f1278c3..4ad1c3e3e7bfcb16ab410653741b7b8658e0c2cf 100644 --- a/dumux/porousmediumflow/3p3c/implicit/volumevariables.hh +++ b/dumux/porousmediumflow/3p3c/implicit/volumevariables.hh @@ -30,7 +30,7 @@ #include <dumux/material/fluidstates/compositional.hh> #include <dumux/material/constraintsolvers/computefromreferencephase.hh> #include <dumux/material/constraintsolvers/misciblemultiphasecomposition.hh> -#include <dumux/discretization/volumevariables.hh> +#include <dumux/porousmediumflow/volumevariables.hh> #include <dumux/discretization/methods.hh> namespace Dumux @@ -38,14 +38,14 @@ namespace Dumux /*! * \ingroup ThreePThreeCModel - * \ingroup ImplicitVolumeVariables + * \ingroup PorousMediumFlowVolumeVariables * \brief Contains the quantities which are are constant within a * finite volume in the three-phase three-component model. */ template <class TypeTag> -class ThreePThreeCVolumeVariables : public ImplicitVolumeVariables<TypeTag> +class ThreePThreeCVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag> { - using ParentType = ImplicitVolumeVariables<TypeTag>; + using ParentType = PorousMediumFlowVolumeVariables<TypeTag>; using Implementation = typename GET_PROP_TYPE(TypeTag, VolumeVariables); using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); diff --git a/dumux/porousmediumflow/richards/implicit/volumevariables.hh b/dumux/porousmediumflow/richards/implicit/volumevariables.hh index ce955b0ac2e9a7d5442490d5787e7d2308f31586..a595b2076ef731ee66e4704522d550535da615a9 100644 --- a/dumux/porousmediumflow/richards/implicit/volumevariables.hh +++ b/dumux/porousmediumflow/richards/implicit/volumevariables.hh @@ -25,7 +25,7 @@ #define DUMUX_RICHARDS_VOLUME_VARIABLES_HH #include <dumux/common/properties.hh> -#include <dumux/discretization/volumevariables.hh> +#include <dumux/porousmediumflow/volumevariables.hh> #include <dumux/material/idealgas.hh> #include <dumux/material/constants.hh> @@ -34,16 +34,16 @@ namespace Dumux /*! * \ingroup RichardsModel - * \ingroup ImplicitVolumeVariables + * \ingroup PorousMediumFlowVolumeVariables * \brief Volume averaged quantities required by the Richards model. * * This contains the quantities which are are constant within a finite * volume in the Richards model */ template <class TypeTag> -class RichardsVolumeVariables : public ImplicitVolumeVariables<TypeTag> +class RichardsVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag> { - using ParentType = ImplicitVolumeVariables<TypeTag>; + using ParentType = PorousMediumFlowVolumeVariables<TypeTag>; using Implementation = typename GET_PROP_TYPE(TypeTag, VolumeVariables); using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); using Problem = typename GET_PROP_TYPE(TypeTag, Problem); diff --git a/dumux/porousmediumflow/tracer/volumevariables.hh b/dumux/porousmediumflow/tracer/volumevariables.hh index e4f1e946aa2f4d1d1810e3911026d0f788de21c9..5d5e0ef1902dbfae5fb74077f46bf0e04c723f8f 100644 --- a/dumux/porousmediumflow/tracer/volumevariables.hh +++ b/dumux/porousmediumflow/tracer/volumevariables.hh @@ -24,21 +24,21 @@ #define DUMUX_TRACER_VOLUME_VARIABLES_HH #include <dumux/common/properties.hh> -#include <dumux/discretization/volumevariables.hh> +#include <dumux/porousmediumflow/volumevariables.hh> namespace Dumux { /*! * \ingroup TracerModel - * \ingroup ImplicitVolumeVariables + * \ingroup PorousMediumFlowVolumeVariables * \brief Contains the quantities which are constant within a * finite volume for the tracer model. */ template <class TypeTag> -class TracerVolumeVariables : public ImplicitVolumeVariables<TypeTag> +class TracerVolumeVariables : public PorousMediumFlowVolumeVariables<TypeTag> { - using ParentType = ImplicitVolumeVariables<TypeTag>; + using ParentType = PorousMediumFlowVolumeVariables<TypeTag>; using Scalar = typename GET_PROP_TYPE(TypeTag, Scalar); using Problem = typename GET_PROP_TYPE(TypeTag, Problem);