buoyantKEpsilon: support multiphase operation

This commit is contained in:
Henry 2014-04-29 11:42:49 +01:00
parent ddf38857fc
commit b4261cab4f

View file

@ -107,7 +107,7 @@ buoyantKEpsilon<BasicTurbulenceModel>::Gcoef() const
lookupObject<uniformDimensionedVectorField>("g"); lookupObject<uniformDimensionedVectorField>("g");
return return
(this->Cmu_*this->k_/this->sigmak_) this->alpha_*(this->Cmu_/this->sigmak_)*this->k_
*(g & fvc::grad(this->rho_))/(this->epsilon_ + this->epsilonMin_); *(g & fvc::grad(this->rho_))/(this->epsilon_ + this->epsilonMin_);
} }