Skip to content
Snippets Groups Projects
Commit b837c429 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

DecoupledTwoPIndices: properly deprecate pressEqIdx

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10920 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 3fe4690d
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,8 @@ struct DecoupledTwoPIndices : public DecoupledTwoPCommonIndices
// indices of the equations
static const int contiWEqIdx = PVOffset + 0; //!< Index of the continuity equation of the wetting phase
static const int pressureEqIdx = contiWEqIdx; //!< Index of the pressure equation (total mass balance)
static const int pressEqIdx = pressureEqIdx; //!< !!!! DEPRECATED: Use pressureEqIdx instead!!!!
DUNE_DEPRECATED_MSG("use pressureEqIdx instead")
static const int pressEqIdx = pressureEqIdx; //!< \deprecated
static const int contiNEqIdx = PVOffset + 1; //!< Index of the continuity equation of the non-wetting phase
static const int satEqIdx = contiNEqIdx; //!< Index of the continuity equation of the non-wetting phase (saturation equation)
static const int transportEqIdx = satEqIdx; //!< Index of the saturation transport equation
......@@ -156,7 +157,8 @@ struct DecoupledTwoPIndices<DecoupledTwoPCommonIndices::pnsw, PVOffset>
// indices of the equations
static const int contiNEqIdx = PVOffset + 0; //!< Index of the continuity equation of the non-wetting phase
static const int pressureEqIdx = contiNEqIdx; //!< Index of the pressure equation (total mass balance)
static const int pressEqIdx = pressureEqIdx; //!< !!!! DEPRECATED: Use pressureEqIdx instead!!!!
DUNE_DEPRECATED_MSG("use pressureEqIdx instead")
static const int pressEqIdx = pressureEqIdx; //!< \deprecated
static const int contiWEqIdx = PVOffset + 1; //!< Index of the continuity equation of the wetting phase
static const int satEqIdx = contiWEqIdx; //!< Index of the continuity equation of the non-wetting phase (saturation equation)
static const int transportEqIdx = satEqIdx; //!< Index of the saturation transport equation
......@@ -196,7 +198,8 @@ struct DecoupledTwoPIndices<DecoupledTwoPCommonIndices::pwsw, PVOffset>
// indices of the equations
static const int contiWEqIdx = PVOffset + 0; //!< Index of the continuity equation of the wetting phase
static const int pressureEqIdx = contiWEqIdx; //!< Index of the pressure equation (total mass balance)
static const int pressEqIdx = pressureEqIdx; //!< !!!! DEPRECATED: Use pressureEqIdx instead!!!!
DUNE_DEPRECATED_MSG("use pressureEqIdx instead")
static const int pressEqIdx = pressureEqIdx; //!< \deprecated
static const int contiNEqIdx = PVOffset + 1; //!< Index of the continuity equation of the non-wetting phase
static const int satEqIdx = contiNEqIdx; //!< Index of the continuity equation of the non-wetting phase (saturation equation)
static const int transportEqIdx = satEqIdx; //!< Index of the saturation transport equation
......@@ -234,7 +237,8 @@ struct DecoupledTwoPIndices<DecoupledTwoPCommonIndices::pnsn, PVOffset>
// indices of the equations
static const int contiNEqIdx = PVOffset + 0; //!< Index of the continuity equation of the non-wetting phase
static const int pressureEqIdx = contiNEqIdx; //!< Index of the pressure equation (total mass balance)
static const int pressEqIdx = pressureEqIdx; //!< !!!! DEPRECATED: Use pressureEqIdx instead!!!!
DUNE_DEPRECATED_MSG("use pressureEqIdx instead")
static const int pressEqIdx = pressureEqIdx; //!< \deprecated
static const int contiWEqIdx = PVOffset + 1; //!< Index of the continuity equation of the wetting phase
static const int satEqIdx = contiWEqIdx; //!< Index of the continuity equation of the non-wetting phase (saturation equation)
static const int transportEqIdx = satEqIdx; //!< Index of the saturation transport equation
......@@ -272,7 +276,8 @@ struct DecoupledTwoPIndices<DecoupledTwoPCommonIndices::pGlobalSw, PVOffset> : p
// indices of the equations
static const int pressureEqIdx = PVOffset + 0; //!< Index of the pressure equation (total mass balance)
static const int pressEqIdx = pressureEqIdx; //!< !!!! DEPRECATED: Use pressureEqIdx instead!!!!
DUNE_DEPRECATED_MSG("use pressureEqIdx instead")
static const int pressEqIdx = pressureEqIdx; //!< \deprecated
static const int satEqIdx = PVOffset + 1; //!< Index of the continuity equation of the non-wetting phase (saturation equation)
static const int transportEqIdx = satEqIdx; //!< Index of the saturation transport equation
};
......@@ -308,7 +313,8 @@ struct DecoupledTwoPIndices<DecoupledTwoPCommonIndices::pGlobalSn, PVOffset>
// indices of the equations
static const int pressureEqIdx = PVOffset + 0; //!< Index of the pressure equation (total mass balance)
static const int pressEqIdx = pressureEqIdx; //!< !!!! DEPRECATED: Use pressureEqIdx instead!!!!
DUNE_DEPRECATED_MSG("use pressureEqIdx instead")
static const int pressEqIdx = pressureEqIdx; //!< \deprecated
static const int satEqIdx = PVOffset + 1; //!< Index of the continuity equation of the non-wetting phase (saturation equation)
static const int transportEqIdx = satEqIdx; //!< Index of the saturation transport equation
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment