Replies: 1 comment 7 replies
-
By the way, I'd like to add that the SST_xxxx_m versions neglect the divergence terms, so these terms should be 0 for the SST_xxxx_m models! |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Starting point is the SST model, specifically the production term, here are some equations:
(#1551)
The final production term is:
I will focus on the axisymmetry contribution of this term only. For axisymmetry, the strain does not contribute because it is invariant under coordinate transformations.$S_{\theta \theta} = \frac{v}{r}$
[EDIT] The tensor is invariant under rotations, the magnitude in cylindrical coordinates with axisymmetry assumption has an additional component
So the terms that are left are the divergence terms.
Divergence in cylindrical coordinates is$$\nabla\cdot u = (\frac{\partial u}{\partial x} + \frac{\partial v}{\partial r}) + \frac{v}{r}$$
The second divergence term written in cylindrical coordinates leads to an additional term$$-\frac{2}{3}\rho k\frac{v}{r}$$ .
The squared divergence term written in cylindrical coordinates leads to an additional axisymmetric term$$-\frac{2}{3}\mu_t((\frac{v}{r})^2 +2\frac{v}{r}(\frac{\partial u}{\partial x} + \frac{\partial v}{\partial r}))$$
with$$\mu_t = \frac{\rho k}{\zeta}$$ , we can write it as:
The production term when axisymmetry is active for the SST-model is implemented as:
This does not match with the derivation. The final "-1" at the end is the contribution of the second divergence term, this term matches with the derivation. The other part does not match. It looks like the factor of 2.0 should be -1.0, and a factor 2.0 should be in front of the gradients.
Could somebody recheck my derivation?
Beta Was this translation helpful? Give feedback.
All reactions