Replies: 1 comment 1 reply
-
To get a totally systematic refinement when using Vekatakrishan-type limiters you need to reduce the coefficient as the mesh size is reduced. Otherwise, for the same coefficient the limiters are less active on a fine mesh than on a coarse one, because the solution range in the vicinity of a node decreases while the reference value remains the same. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I have tried to verify the implementation of the SA turbulence model when the Neg, QCR2000 and Rotation corrections (CRot=1) are applied, following the work in https://doi.org/10.2514/6.2023-1244 . Only portion of these results will be shown in the SciTech paper regarding the HLPW5 results. The fully-structured meshes are provided by the HiFi-CFD Verification Workshop and taken from https://github.com/HighFidelityCFDVerificationWorkshop/2024RANS/tree/main/Joukowski_Mesh (you have to generate those using python). All of the rate of convergence plots are done on the absolute error with respect to a reference value (which is not theoretical but is the result obtained from the SANS code on an adapted mesh using P3 polynomials, which you can find in the above reference). The simulations are considered converged if the log of the density RMS residual is lower than -13.
The flow conditions are:
The RANS equations are solved in non-dimensional formulation with the freestream_vel_eq_mach option.
First I tried running with Roe+MUSCL and different limiters (also not activating the limiter) and with the central scheme of JST. The limiters I've used are the Venkatakrishnan (V), Venkatakrishnan-Wang (VW), Nishikawa R3 (R3). Green Gauss has been used for the gradient computations.
Convergence of the drag coefficient
Convergence of the residuals for the density and for nu-tilde
Convergence of the pressure component of the drag coefficient
Convergence of the viscous component of the drag coefficient
First of all, no solution was obtained with the Roe+MUSCL and no limiter (which I will call No Lim. from now on) on the first two meshes due to divergence problems. Nevertheless, the best results wrt the drag coefficient on the finest meshes are the ones without limiter and with JST. Convergence is of second order for JST and No Lim. on the finest meshes (No Lim. gets worse on the last mesh and goes back to first order). When considering the pressure and viscous components of the drag coefficient, however, we can see that the ones computed by SU2 converge to different values with respect to the ones computed by Fun3D and SANS. This makes the error go with 0-order on the finest meshes for JST and No Lim., whereas all the others retain first order convergence (the same seems to happen to Fun3D for the Cdv).
I then tried focusing on the VW limiter and changing the value of the Venka coefficient (From now on I will report only the Cd and residual. If other plots are needed don't hesitate to ask for them).
Convergence of the drag coefficient
Convergence of the residuals
As soon as the coefficient is increased with respect to the 0.03 value the results improve a lot, both in terms of residual convergence (on the finest meshes) and in terms of actual values. The convergence to a "wrong" value of Cdp and Cdv still remains.
Finally (not really, but I don't want to make it too long), I tried converting the structured mesh into a full triangular one by diagonalizing the quads in Pointwise. No results have been obtained with the GG method on these grids due to divergence problems. Thus I tried with the weighted least squares (WLS) and compared against the structured results. Three limiters are considered: Venka-Wang (VW), Nishikawa R3 (R3) and Nishikawa R5 (R5). Convergence problems on the triangulated meshes start from L2 mesh (for VW, for R3 and R5 from L4 mesh), where the residuals stagnate. Moreover, the results on the two finest meshes are completely wrong.
Convergence of drag coefficient
Convergence of residuals
All of the simulations have been performed on the same number of cores, and with the same version of SU2 (latest develop with CRot = 1).
In conclusion:
At the following link you can check all of these results. Plus, structured and triangulated grids are provided as well as the series of configs used.
https://polimi365-my.sharepoint.com/:f:/g/personal/10507725_polimi_it/EvaNl7DMLy9Eu-_JH3i0xvcBflGUa37eIfnuU-_29MjpDA?e=4O2cHJ
Beta Was this translation helpful? Give feedback.
All reactions