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

[nacl] nacl does not implement liquid properties

parent 970be4e7
No related branches found
No related tags found
1 merge request!1033[material] introduce brine fluid system and test
...@@ -43,7 +43,6 @@ namespace Components { ...@@ -43,7 +43,6 @@ namespace Components {
template <class Scalar> template <class Scalar>
class NaCl class NaCl
: public Components::Base<Scalar, NaCl<Scalar> > : public Components::Base<Scalar, NaCl<Scalar> >
, public Components::Liquid<Scalar, NaCl<Scalar> >
, public Components::Solid<Scalar, NaCl<Scalar> > , public Components::Solid<Scalar, NaCl<Scalar> >
{ {
public: public:
...@@ -63,16 +62,6 @@ public: ...@@ -63,16 +62,6 @@ public:
return 58.4428e-3 ; return 58.4428e-3 ;
} }
/*!
* \brief The diffusion Coefficient \f$\mathrm{[m^2/s]}\f$ of NaCl in water.
* \param temperature absolute temperature in \f$\mathrm{[K]}\f$
* \param pressure of the phase in \f$\mathrm{[Pa]}\f$
*/
static Scalar liquidDiffCoeff(Scalar temperature, Scalar pressure)
{
return 2e-9;
}
/*! /*!
* \brief The mass density \f$\mathrm{[kg/m^3]}\f$ of NaCl. * \brief The mass density \f$\mathrm{[kg/m^3]}\f$ of NaCl.
*/ */
...@@ -105,8 +94,6 @@ public: ...@@ -105,8 +94,6 @@ public:
{ {
return 6.49; return 6.49;
} }
}; };
} // end namespace Components } // end namespace Components
......
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