Some details about the turbulence closures #1321
-
Hi, guys, I was going through the code and I have a few questions regarding the turbulence closures:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Correct. This might be fixable without touching the turbulence closure implementations (which are complicated), but would require some new types (like an abstraction that computes the sum of I think this would be a positive addition to the code. I do think a case would have to have very strongly sheared mean flows with relatively weak turbulence for such a change to have a measureable impact. For AMD, I think such a change might decrease the eddy diffusivity, since it would mostly affect the demoninator. For Smagorinsky-Lilly it would increase the eddy diffusivity (but this is unlikely to be what one wants... ?)
EDIT: I realized that the point here is only to include the mean profile in the eddy viscosities / diffusivities. We'd still neglect the turbulent flux associated with the mean velocities. |
Beta Was this translation helpful? Give feedback.
Correct. This might be fixable without touching the turbulence closure implementations (which are complicated), but would require some new types (like an abstraction that computes the sum of
velocities.u
andbackground_fields.u
when indexed into) and some modification of the time-stepping kernels. Probably not too much typing, but we need to make sure we have a good design.I think this would be a positive addition to the code. I do think a case would have to have very strongly sheared mean flows with relatively weak turbulence for such a change to have a measureable impact. For AMD, I think such a change might decrease the eddy diffusivity, sinc…