Skip to content

Commit 8276fa3

Browse files
authored
Merge pull request #77 from su2code/vandv_swbli
V&V M5 SWBLI
2 parents d5de08a + 899b8ab commit 8276fa3

File tree

6 files changed

+66
-0
lines changed

6 files changed

+66
-0
lines changed

_data/vandv.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
- Flat_Plate
1010
- Bump_Channel
1111
- 30p30n
12+
- swbli

_vandv/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ Code-to-code comparisons of drag and skin friction on a turbulent flat plate is
2727
Code-to-code comparisons for a bump in a channel, which results in pressure gradients, is presented using data from the NASA Turbulence Modeling Resource.
2828
* [Three-Element High-Lift Subsonic Airfoil](/vandv/30p30n/)
2929
Results for the 30p30n airfoil, mesh independence study at low angle-of-attack, and determination of maximum lift, both comparing different numerical schemes.
30+
* [Shock-Wave Boundary-Layer Interaction](/vandv/swbli/)
31+
Comparison of grid-converged results with experimental data. SA and SST turbulence models.

_vandv/swbli.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
title: Shock-Wave Boundary-Layer Interaction
3+
permalink: /vandv/swbli/
4+
---
5+
6+
| Solver | Version | Author |
7+
| --- | --- | --- |
8+
| `RANS` | 7.4.0 | P. Gomes |
9+
10+
The details of the Mach 5 SWBLI validation case are taken from the [NPARC Alliance Validation Archive](https://www.grc.nasa.gov/www/wind/valid/m5swbli/m5swbli.html).
11+
12+
<p align="center">
13+
<img src="/vandv_files/swbli/mach.png" alt="Mach number contours (SST-2003m)" />
14+
</p>
15+
**Figure 1** - Mach number contours (SST-2003m).
16+
17+
We validate our implementation of the SA and SST models by comparing the SU2 numerical results on a sequence of grids against experimental results.
18+
19+
## Problem Setup
20+
21+
The main geometry features and flow conditions are according to the [main reference](https://www.grc.nasa.gov/www/wind/valid/m5swbli/m5swbli.html). In this study, the inlet was extended 10mm to avoid the intersection of the supersonic inlet with a no-slip wall (that extension is modelled with a slip wall).
22+
The SU2 configuration files used in this study are [available here](https://github.com/su2code/SU2/blob/develop/TestCases/vandv/rans/swbli/).
23+
These are applicable to all grid levels, however note that simulations on finer grids were restarted from the results on the previous (coarser) level.
24+
Mean flow convective fluxes were computed with Roe's scheme and a limited MUSCL reconstruction (Green-Gauss gradients and Venkatakrishnan's limiter).
25+
The SA-neg and SST-2003m turbulence models were used with first order advection.
26+
SU2 was run with "freestream equal Mach" non-dimensionalization for all configurations.
27+
28+
## Mesh Description
29+
30+
Quad-dominant meshes of increasing density were used to perform a grid convergence study.
31+
The meshes were generated using GMSH where a refinement factor was applied for all sizes and counts.
32+
Particular attention was given to the y+ on the bottom plate (smaller than 1 on the coarsest level), the main shock, and the separation region.
33+
The GMSH script can be downloaded from the [SU2 V&V GitHub repository](https://github.com/su2code/VandV/tree/master/rans/swbli).
34+
The mesh designations and approximate sizes are:
35+
36+
- L1 "coarse" (2 x "fine") - 37k quadrilaterals
37+
- L2 "medium" (1.41 x "fine") - 76k quadrilaterals
38+
- L3 "fine" - 146k quadrilaterals
39+
40+
## Results
41+
42+
Given the focus of this validation case (interaction between a shock wave and a boundary layer) it is of particular interest to analyze how well CFD predicts the skin friction coefficient on the bottom plate and the separation (caused by the shock wave) and re-attachment locations.
43+
Figure 2 compares the skin friction coefficient for the two turbulence models and three mesh levels used, with the experimental values.
44+
45+
<p align="center">
46+
<img src="/vandv_files/swbli/cf.png" alt="Comparison of skin friction coefficient." />
47+
</p>
48+
**Figure 2** - Comparison of skin friction coefficient.
49+
50+
The results do not change significantly between meshes L2 and L3, they were also not sensitive to other perturbations such as refining the mesh around the main shock, or global refinement (i.e. what would be an L4 mesh). The results for these other tests are omitted for simplicity.
51+
52+
Both turbulence models predict that separation takes place (negative skin friction). The start of the separation region is better predicted with SST and it is close to the experiment. However, both models underestimate the re-attachment location.
53+
54+
These results with SU2 are further from the experiment than the numerical results presented in the [main reference](https://www.grc.nasa.gov/www/wind/valid/m5swbli/m5swbli.html), which is likely due to compressibility effects not being included in the SA and SST-2003m models.
55+
This hypothesis was tested by including the SA mixing-layer compressibility correction, i.e. using SA-neg-comp (by adding `COMPRESSIBILITY` to `SA_OPTIONS`).
56+
Figure 3 compares the results obtained with this model on meshes L2 and L3 with the experimental results, the SA-neg results on the L3 mesh are also shown for reference.
57+
With compressibility effects the size of the separation region is closer to the experiment.
58+
This V&V case will be updated with results from the SST-2003 (not modified) model once it is implemented.
59+
60+
<p align="center">
61+
<img src="/vandv_files/swbli/cf_comp.png" alt="Skin friction coefficient with SA compressibility correction." />
62+
</p>
63+
**Figure 3** - Skin friction coefficient with SA compressibility correction.

vandv_files/swbli/cf.png

104 KB
Loading

vandv_files/swbli/cf_comp.png

84.3 KB
Loading

vandv_files/swbli/mach.png

54.2 KB
Loading

0 commit comments

Comments
 (0)