Skip to content
Snippets Groups Projects
Commit d6caff1d authored by Kutscher's avatar Kutscher
Browse files

add to LBMKernel getter for multiphase parameters

parent 2266acb9
No related branches found
No related tags found
1 merge request!269Implements Sharp Interface
...@@ -234,8 +234,12 @@ real LBMKernel::getPhaseFieldRelaxation() const { return tauH; } ...@@ -234,8 +234,12 @@ real LBMKernel::getPhaseFieldRelaxation() const { return tauH; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
void LBMKernel::setMobility(real mob) { this->mob = mob; } void LBMKernel::setMobility(real mob) { this->mob = mob; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
real LBMKernel::getMobility() const { return mob; }
//////////////////////////////////////////////////////////////////////////
void LBMKernel::setInterfaceWidth(real w) { this->interfaceWidth = w; } void LBMKernel::setInterfaceWidth(real w) { this->interfaceWidth = w; }
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
real LBMKernel::getInterfaceWidth() const { return interfaceWidth; }
//////////////////////////////////////////////////////////////////////////
void LBMKernel::setSigma(real sigma){ this->sigma = sigma;} void LBMKernel::setSigma(real sigma){ this->sigma = sigma;}
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
real LBMKernel::getSigma() const { return sigma;} real LBMKernel::getSigma() const { return sigma;}
...@@ -128,7 +128,9 @@ public: ...@@ -128,7 +128,9 @@ public:
void setPhaseFieldRelaxation(real tauH); void setPhaseFieldRelaxation(real tauH);
real getPhaseFieldRelaxation() const; real getPhaseFieldRelaxation() const;
void setMobility(real mob); void setMobility(real mob);
real getMobility() const;
void setInterfaceWidth(real w); void setInterfaceWidth(real w);
real getInterfaceWidth() const;
void setSigma(real sigma); void setSigma(real sigma);
real getSigma() const; real getSigma() const;
......
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