Skip to content
Snippets Groups Projects
Commit 4c13bff3 authored by wenqing's avatar wenqing
Browse files

[Doc] Added documentation to class SoilThermalConductivitySomerton

parent dcaa2267
No related branches found
No related tags found
No related merge requests found
...@@ -220,3 +220,11 @@ URL = {https://doi.org/10.1680/geot.2008.58.3.157} ...@@ -220,3 +220,11 @@ URL = {https://doi.org/10.1680/geot.2008.58.3.157}
year={1987}, year={1987},
publisher={Wiley Online Library} publisher={Wiley Online Library}
} }
@inproceedings{somerton1974high,
title={High temperature behavior of rocks associated with geothermal type reservoirs},
author={Somerton, W.~H. and El-Shaarani, A.~H. and Mobarak, S.~M. and others},
booktitle={SPE California Regional Meeting},
year={1974},
organization={Society of Petroleum Engineers}
}
...@@ -17,6 +17,19 @@ ...@@ -17,6 +17,19 @@
namespace MaterialPropertyLib namespace MaterialPropertyLib
{ {
class Medium; class Medium;
/**
* \brief A saturation dependent thermal conductivity model for soil.
*
* This model is proposed by Somerton, W.~H. et al. \cite somerton1974high,
* which takes the form of
* \f[
* \lambda = \lambda_{\text{dry}} +
* \sqrt{S}(\lambda_{\text{wet}}-\lambda_{\text{dry}}),
* \f]
* where \f$\lambda_{\text{dry}}\f$ is the thermal conductivity of soil at the
* dry state, \f$\lambda_{\text{wet}}\f$ is the thermal conductivity of soil at
* the fully water saturated state, and \f$S\f$ is the water saturation.
*/
class SoilThermalConductivitySomerton final : public Property class SoilThermalConductivitySomerton final : public Property
{ {
public: public:
...@@ -59,7 +72,9 @@ public: ...@@ -59,7 +72,9 @@ public:
double const dt) const override; double const dt) const override;
private: private:
/// Thermal conductivity of soil at the dry state.
double const dry_thermal_conductivity_; double const dry_thermal_conductivity_;
/// Thermal conductivity of soil at the fully water saturated state.
double const wet_thermal_conductivity_; double const wet_thermal_conductivity_;
}; };
......
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