Skip to content
Snippets Groups Projects
Commit 040cabdf authored by Henry's avatar Henry
Browse files

Minor cleanup

parent 391d5b9a
Branches
Tags
No related merge requests found
......@@ -236,7 +236,7 @@ void kEpsilon<BasicTurbulenceModel>::correct()
volScalarField divU(fvc::div(fvc::absolute(this->phi(), U)));
tmp<volTensorField> tgradU = fvc::grad(U);
volScalarField G(this->GName(), nut*(tgradU() && dev(twoSymm(tgradU()))));
volScalarField G(this->GName(), nut*(dev(twoSymm(tgradU())) && tgradU()));
tgradU.clear();
// Update epsilon and G at the wall
......@@ -260,7 +260,6 @@ void kEpsilon<BasicTurbulenceModel>::correct()
solve(epsEqn);
bound(epsilon_, this->epsilonMin_);
// Turbulent kinetic energy equation
tmp<fvScalarMatrix> kEqn
(
......
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