Skip to content
Snippets Groups Projects
Commit 5225ebf3 authored by Sergio Ferraris's avatar Sergio Ferraris
Browse files

Correcting k(grad U) expression

parent 3e08747b
No related merge requests found
......@@ -154,8 +154,9 @@ public:
tmp<volScalarField> k(const tmp<volTensorField>& gradU) const
{
return
2.0
* pow((2.0/sqrt(2.0))*sqrt(ce_)*flm_/fmm_, 2.0/3.0)/ce_
pow(2.0, 4.0/3.0)
* pow(flm_/fmm_, 2.0/3.0)
* pow(ce_, -2.0/3.0)
* sqr(delta())*magSqr(dev(symm(gradU)));
}
......
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