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

remove property CompositionFromFugacitiesSolver which has been deprecated in...

remove property CompositionFromFugacitiesSolver which has been deprecated in 2.3. ConstraintSolver has to be used instead.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10391 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 3d3cc79b
No related branches found
No related tags found
No related merge requests found
......@@ -98,7 +98,6 @@ NEW_PROP_TAG(FluidSystem);
//! The thermodynamic constraint solver which calculates the
//! composition of any phase given all component fugacities.
NEW_PROP_TAG(CompositionFromFugacitiesSolver);
NEW_PROP_TAG(ConstraintSolver);
//! Enable the energy equation?
......
......@@ -103,22 +103,6 @@ public:
typedef typename MaterialLaw::Params type;
};
/*!
* \brief Set the thermodynamic constraint solver which calculates the
* composition of any phase given all component fugacities.
*
* \deprecated version. Use "ConstraintSolver" instead of "CompositionFromFugacitiesSolver"
*/
SET_PROP(MPNC, CompositionFromFugacitiesSolver) // DEPRECATED version. Use "ConstraintSolver" instead of "CompositionFromFugacitiesSolver"
{
private:
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
public:
typedef Dumux::CompositionFromFugacities<Scalar, FluidSystem> type; // DEPRECATED version. Use "ConstraintSolver" instead of "CompositionFromFugacitiesSolver"
};
/*!
* \brief Set the thermodynamic constraint solver which calculates the
* composition of any phase given all component fugacities.
......@@ -130,7 +114,7 @@ private:
typedef typename GET_PROP_TYPE(TypeTag, FluidSystem) FluidSystem;
public:
typedef typename GET_PROP_TYPE(TypeTag, CompositionFromFugacitiesSolver) type;
typedef Dumux::CompositionFromFugacities<Scalar, FluidSystem> type;
};
......
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