Skip to content
Snippets Groups Projects
Commit 7ea0e85a authored by Henry's avatar Henry
Browse files

homogeneousDynSmagorinsky: Corrected cD coefficient

parent 6924b159
No related merge requests found
...@@ -69,7 +69,7 @@ dimensionedScalar homogeneousDynSmagorinsky::cD ...@@ -69,7 +69,7 @@ dimensionedScalar homogeneousDynSmagorinsky::cD
tmp<volSymmTensorField> LL = tmp<volSymmTensorField> LL =
dev(filter_(sqr(U())) - (sqr(filter_(U())))); dev(filter_(sqr(U())) - (sqr(filter_(U()))));
return average(LL && MM)/MMMM; return 0.5*average(LL && MM)/MMMM;
} }
else else
{ {
......
...@@ -48,7 +48,7 @@ Description ...@@ -48,7 +48,7 @@ Description
and and
cD=<L.M>/<M.M>, cD=1/2*<L.M>/<M.M>,
where where
......
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