Skip to content
Snippets Groups Projects
Commit 45451bb5 authored by Dennis Gläser's avatar Dennis Gläser Committed by Timo Koch
Browse files

[components][brine] introduce liquid thermal conductivity function

For now, we use the thermal conductivity of pure water. The influence
of the salinity on the conductivity is neglected for now.
parent b2728406
No related branches found
No related tags found
1 merge request!1153Feature/reuse brine in brine co2
...@@ -423,6 +423,18 @@ public: ...@@ -423,6 +423,18 @@ public:
assert(mu_brine > 0.0); assert(mu_brine > 0.0);
return mu_brine/1000.0; return mu_brine/1000.0;
} }
/*!
* \brief Thermal conductivity of a brine \f$\mathrm{[W/(m K)]}\f$.
* \param temperature temperature of component in \f$\mathrm{[K]}\f$
* \param pressure pressure of component in \f$\mathrm{[Pa]}\f$
*
* \todo TODO: For the thermal conductivity the salinity contribution is
* neglected. This contribution is probably not big, but somebody
* would have to find out its influence.
*/
static Scalar liquidThermalConductivity(Scalar temperature, Scalar pressure)
{ return H2O::liquidThermalConductivity(temperature, pressure); }
}; };
/*! /*!
......
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