Skip to content
Snippets Groups Projects
Commit 6f56b837 authored by Johannes Hommel's avatar Johannes Hommel
Browse files

[1pncmin] renamed initial to reference porosity and permeability in thermochemspatialparams.hh

parent 671dc7a1
No related branches found
No related tags found
1 merge request!768Feature/update poro and perm laws
...@@ -110,21 +110,21 @@ public: ...@@ -110,21 +110,21 @@ public:
} }
/*! /*!
* \brief Define the initial permeability \f$[m^2]\f$ distribution * \brief Define the reference permeability \f$[m^2]\f$ distribution
* *
* \param element The finite element * \param element The finite element
* \param scv The sub-control volume * \param scv The sub-control volume
*/ */
Scalar initialPermeability(const Element& element, const SubControlVolume &scv) const Scalar referencePermeability(const Element& element, const SubControlVolume &scv) const
{ return 8.53e-12; } { return 8.53e-12; }
/*! /*!
* \brief Define the initial porosity \f$[-]\f$ distribution * \brief Define the reference porosity \f$[-]\f$ distribution
* *
* \param element The finite element * \param element The finite element
* \param scv The sub-control volume * \param scv The sub-control volume
*/ */
Scalar initialPorosity(const Element& element, const SubControlVolume &scv) const Scalar referencePorosity(const Element& element, const SubControlVolume &scv) const
{ {
return 0.8; return 0.8;
} }
......
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