Skip to content
Snippets Groups Projects
Commit cbbbca49 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] H2,rho; Remove unused getDerivGasDensity().

parent 38449f47
No related branches found
No related tags found
No related merge requests found
......@@ -98,16 +98,6 @@ double TwoPhaseFlowWithPrhoMaterialProperties::getGasDensity(
return _gas_density->getValue(vars);
}
double TwoPhaseFlowWithPrhoMaterialProperties::getDerivGasDensity(
const double p, const double T) const
{
ArrayType vars;
vars[static_cast<int>(MaterialLib::Fluid::PropertyVariableType::T)] = T;
vars[static_cast<int>(MaterialLib::Fluid::PropertyVariableType::p)] = p;
return _gas_density->getdValue(vars,
MaterialLib::Fluid::PropertyVariableType::p);
}
double TwoPhaseFlowWithPrhoMaterialProperties::getLiquidViscosity(
const double p, const double T) const
{
......
......@@ -89,7 +89,6 @@ public:
double getGasDensity(const double p, const double T) const;
double getGasViscosity(const double p, const double T) const;
double getLiquidViscosity(const double p, const double T) const;
double getDerivGasDensity(double const p, double const T) const;
bool computeConstitutiveRelation(
double const t,
ParameterLib::SpatialPosition const& x_position,
......
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