Skip to content
Snippets Groups Projects
Commit e4c45b82 authored by william's avatar william
Browse files

STYLE: twoPhaseEulerFoam: changed coefficient names in segregated drag model

parent ff9366cb
No related merge requests found
......@@ -50,8 +50,8 @@ Foam::dragModels::segregated::segregated
:
dragModel(dict, pair),
residualRe_("residualRe", dimless, dict.lookup("residualRe")),
mSeg_("mSeg", dimless, dict.lookup("mSeg")),
nSeg_("nSeg", dimless, dict.lookup("nSeg"))
m_("m", dimless, dict.lookup("m")),
n_("n", dimless, dict.lookup("n"))
{}
......@@ -149,7 +149,7 @@ Foam::tmp<Foam::volScalarField> Foam::dragModels::segregated::K() const
)
);
volScalarField lambda(mSeg_*ReI + nSeg_*muAlphaI/muI);
volScalarField lambda(m_*ReI + n_*muAlphaI/muI);
return lambda*sqr(magGradI)*muI;
}
......
......@@ -69,11 +69,11 @@ private:
//- Residual reynolds number
const dimensionedScalar residualRe_;
//- M segregated coefficient
const dimensionedScalar mSeg_;
//- M coefficient
const dimensionedScalar m_;
//- N segregated coefficient
const dimensionedScalar nSeg_;
//- N coefficient
const dimensionedScalar n_;
public:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment