Skip to content
Snippets Groups Projects
Commit 642060c1 authored by Philipp Nuske's avatar Philipp Nuske
Browse files

Introduce the required deprecation mesages for the renamed interfaces in the...

Introduce the required deprecation mesages for the renamed interfaces in the volume variables. Sorry for the delay.  
reviewed by Bernd

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@12248 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 1e0d90ba
No related branches found
No related tags found
No related merge requests found
......@@ -211,21 +211,25 @@ public:
* the sub-control volume.
*/
Scalar heatCapacity() const
{ return heatCapacity_; };
{ return heatCapacity_; }
/*!
* \brief Returns the thermal conductivity \f$\mathrm{[W/(m*K)]}\f$ of the fluid phase in
* the sub-control volume.
*/
Scalar thermalConductivity(const unsigned int phaseIdx) const
{ return thermalConductivity_[phaseIdx] ; };
{ return thermalConductivity_[phaseIdx] ; }
/*!
* \brief Returns the total density of the given solid phase [kg / m^3] in
* the sub-control volume.
*/
Scalar densitySolid() const
{ return densitySolid_; };
{ return densitySolid_; }
DUNE_DEPRECATED_MSG("use densitySolid() instead")
Scalar soilDensity() const
{ return densitySolid(); }
/*!
* \brief If running under valgrind this produces an error message
......
......@@ -182,6 +182,10 @@ public:
Scalar densitySolid() const
{ return densitySolid_; }
DUNE_DEPRECATED_MSG("use densitySolid() instead")
Scalar soilDensity() const
{ return densitySolid(); }
/*!
* \brief Returns the conductivity of the given solid phase [kg / m^3] in
* the sub-control volume.
......@@ -189,6 +193,10 @@ public:
Scalar thermalConductivitySolid() const
{ return thermalConductivitySolid_; }
DUNE_DEPRECATED_MSG("use thermalConductivitySolid() instead")
Scalar soilThermalConductivity() const
{ return thermalConductivitySolid(); }
/*!
* \brief Returns the conductivity of the given fluid [kg / m^3] in
* the sub-control volume.
......
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