-
Notifications
You must be signed in to change notification settings - Fork 847
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
Heat flux in axisymmetric simulations #2438
Comments
were there experiments or simulations from other codes for this or a similar testcase? |
@Hanquist please upload any SU2 files that can be used to replicate the results. |
Hi @bigfooted, these run conditions are arbitrary (Mach ~6 at 25 km altitude). We have gotten good agreement with experimental data for the Standard SU2 solver for full 3D shapes (see Figs. 18 and 19 here: https://arc.aiaa.org/doi/epdf/10.2514/6.2025-2769) and good agreement with experiments/other codes for axisymmetric NEMO (see Figs. 9 and 10 here: https://arc.aiaa.org/doi/epdf/10.2514/6.2022-1636). After we get this sorted out, we can add a tutorial/testcase for aerodynamic heating. Hi @pcarruscag, we are attaching the mesh and cfg files. This is a coarse mesh but I would still not expect to see the trends shown above. The only difference in the cases above is:
|
@Hanquist I'm not aware of the details for axisymmetric source terms, it would probably be worth looking into it if NEMO looks ok |
The only difference I notice between how NEMO handles the axisymmetric formulation and the standard solver is how they handle the singularity at the symmetry line: NEMO (nemo_sources.cpp):
then the jacobians is a multiple of yinv. For example:
Standard solver (flow_sources.cpp):
Since EPS is pretty small, I would expect these to be consistent with each other, unless more than the symmetry line is being captured by this. I don't think this is the reason for us because we are still using a course mesh. But I could see both of these formulations being a challenge if for some crazy reason someone did an axisymmetric flow not in the tradiational horizontal plane. As I write this, I also see a potential difference in thermal conductivity: NEMO:
Standard:
|
When running axisymmetric simulations, we get poor heat flux predictions (and trends) near the leading edge:
Zoomed in:
The symmetric (analogous to an infinite cylinder) shows the correct trend where the surface heating is highest at the stagnation point (x = 0). The axisymmetric case (analogous to a hemisphere) shows a significant decrease in heating at this stagnation region.
If you look at the flow field below where y>0 is the symmetric case (infinite cylinder) and y<0 is the axisymmetric case, you will oberve that there is too much thermal diffusion near the symmetry line. Note that these are two different simulations and I mirrored the axisymmetric case so we can see them on the same figure. This thicker "thermal boundary layer" is not physical and creates the smaller heat flux value and poor trend seen above:
Discussing with @bigfooted and @pcarruscag, we think it may have to do with the axisymmetric source terms. Interestingly enough we do not see this artifact when running NEMO simulations so it is handled better there. @WallyMaier @jtneedels @CatarinaGarbacz do you recall doing anything special in the NEMO implementation of axisymmetric source terms?
The text was updated successfully, but these errors were encountered: