Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix axisymmetric divergence for SST production #1784

Merged
merged 51 commits into from
Nov 12, 2022
Merged

Conversation

bigfooted
Copy link
Contributor

Proposed Changes

Give a brief overview of your contribution here in a few sentences.
the axisymmetric terms in the production term of the SST model are not correct and the current implementation is prone to error.

Related Work

Resolve any issues (bug fix or feature request), note any related PRs, or mention interactions with the work of others, if any.
#1783

PR Checklist

Put an X by all that apply. You can fill this out after submitting the PR. If you have any questions, don't hesitate to ask! We want to help. These are a guide for you to know what the reviewers will be looking for in your contribution.

  • I am submitting my contribution to the develop branch.
  • My contribution generates no new compiler warnings (try with --warnlevel=3 when using meson).
  • My contribution is commented and consistent with SU2 style (https://su2code.github.io/docs_v7/Style-Guide/).
  • I have added a test case that demonstrates my contribution, if necessary.
  • I have updated appropriate documentation (Tutorials, Docs Page, config_template.cpp), if necessary.

@pcarruscag pcarruscag changed the title [WIP] fix divergence for SST production Fix axisymmetric divergence for SST production Oct 7, 2022
@pcarruscag
Copy link
Member

Actually, can you elaborate on why the strain magnitude doesn't need adjustments?
Contrary to cartesian coordinates, a constant velocity in the radial direction causes some compression/expansion of the fluid and thus there should be a (v / y)^2 missing.
Disclaimer: I am not a maths person and my reference is for solid mechanics 😆

@bigfooted
Copy link
Contributor Author

Actually, can you elaborate on why the strain magnitude doesn't need adjustments? Contrary to cartesian coordinates, a constant velocity in the radial direction causes some compression/expansion of the fluid and thus there should be a (v / y)^2 missing. Disclaimer: I am not a maths person and my reference is for solid mechanics 😆

Ah yes, I erroneously thought: 2D means only considering the r and z-directions and considered the 2D strain tensor S_ij. But you are right, the stress tensor component $S_{\theta \theta} = \frac{u_r}{r}$ contributes to the total strain magnitude.

@bigfooted
Copy link
Contributor Author

OK, should this term be added to CFVMFlowSolverBase<V, R>::ComputeVorticityAndStrainMag? There is a call to GetStrainMag in SST and in SA, and in SetRoe_dissipation_NTS.

@pcarruscag
Copy link
Member

Good point, I think we can include the axisymmetric term there. And there is something else... That strain magnitude is including the divergence and so it's closer to the norm of the stress tensor than to the norm of the stress tensor, and thus it is not consistent with the literature, again... 🤦

@bigfooted
Copy link
Contributor Author

yes, I see it. Do you know why this is done? I think we should remove the Div term to make it compatible with literature. This will then probably change all turbulence regression tests.

@bigfooted
Copy link
Contributor Author

The divergence term comes from the idea to write strain rate as [part without volume change] + [part with volume change]:
https://www.whoi.edu/cms/files/12.800_Chapter_3_%2706_25330.pdf (p 13)
Not sure what the advantage is of writing it like that in the code since the divergence terms should cancel again. I'm also not sure why we only add the divergence term when nDim==2. It looks wrong to me.

In any case,magnitude of strain rate is $S=\sqrt{2S_{ij}S_{ij}}$, which is, written out for 3D Cartesian coordinates,

$\frac{1}{2}S^2 = S^2_{11} + S^2_{22} + S^2_{33} + S^2_{12} + S^2_{21} + S^2_{13} + S^2_{31} + s^2_{23} + S^2_{32} $

It's symmetric, so:

$\frac{1}{2}S^2 = S^2_{11} + S^2_{22} + S^2_{33} + 2S^2_{12} + 2S^2_{13} + 2s^2_{23}$

and using $S_{ij}=\frac{1}{2}(\frac{\partial u_i}{\partial x_j} + \frac{\partial u_j}{\partial x_i})$, and $\frac{\partial u}{\partial x} = u_x$ etc. :

$\frac{1}{2}S^2 = u_x^2 + v_y^2 + w_z^2 + 2(\frac{1}{2}(u_y+v_x))^2 + 2(\frac{1}{2}(u_z+w_x))^2 + 2(\frac{1}{2}(v_z+w_y))^2$

$\frac{1}{2}S^2 = u_x^2 + v_y^2 + w_z^2 + \frac{1}{2}(u_y+v_x)^2 + \frac{1}{2}(u_z+w_x)^2 + \frac{1}{2}(v_z+w_y)^2$

For axisymmetry, all the terms with velocity component w and the gradients in z are zero, except that $w_z=\frac{v}{r}$

…rts, although it shouldn't because this PR is not finished........
%
% ------------- DIRECT, ADJOINT, AND LINEARIZED PROBLEM DEFINITION ------------%
%
SOLVER= RANS
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice cleanup of the options 👍

@pcarruscag pcarruscag merged commit 7f96fbe into develop Nov 12, 2022
@pcarruscag pcarruscag deleted the fix_sst_axisymmetry branch November 12, 2022 22:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants