You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _docs_v7/Convective-Schemes.md
+15-19
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ To achieve second-order in space, upwind schemes need to be used with MUSCL reco
32
32
33
33
| Solver | Version |
34
34
| --- | --- |
35
-
|`EULER`, `NAVIER_STOKES`, `RANS`|7.0.0 |
35
+
|`EULER`, `NAVIER_STOKES`, `RANS`|8.0.0 |
36
36
37
37
### Central Schemes ###
38
38
@@ -46,9 +46,7 @@ In implicit time marching it improves the numerical properties of the Jacobian m
46
46
To maintain CFL at lower-than-default values of dissipation coefficients, a higher factor should be used.
47
47
`JST_MAT` benefits from higher values (~8.0).
48
48
49
-
All compressible central schemes support vectorization (`USE_VECTORIZATION= YES`) with no robustness downsides, see the build instructions for how to tune the compilation for maximum vectorization performance.
50
-
51
-
**Note:** The Lax-Friedrich scheme is always used on coarse multigrid levels when any central scheme is selected.
49
+
**Note:** The Lax-Friedrich scheme is always used on coarse multigrid levels when any central scheme is selected. All compressible central schemes use vectorization, see the build instructions for how to tune the compilation for maximum performance.
52
50
53
51
### Upwind Schemes ###
54
52
@@ -62,28 +60,25 @@ All compressible central schemes support vectorization (`USE_VECTORIZATION= YES`
62
60
-`SLAU` - Simple Low dissipation AUSM scheme;
63
61
-`SLAU2` - SLAU with the alternative pressure flux formulation;
64
62
-`HLLC` - Harten-Lax-van Leer-Contact;
65
-
-`CUSP` - Convective Upwind Split Pressure;
66
63
-`MSW` - Modified Steger-Warming.
67
64
68
65
Some of the schemes above have tunning parameters or accept extra options, the following table lists those options and indicates to which schemes they apply (if a scheme does not appear on the table, no options apply to it).
-`ROE_KAPPA`, default 0.5, constant that multiplies the left and right state sum;
80
76
-`ENTROPY_FIX_COEFF`, default 0.001, puts a lower bound on dissipation by limiting the minimum convective Eigenvalue to a fraction of the speed of sound. Increasing it may help overcome convergence issues, at the expense of making the solution sensitive to this parameter.
81
77
-`ROE_LOW_DISSIPATION`, default `NONE`, methods to reduce dissipation in regions where certain conditions are verified, `FD` (wall distance based), `NTS` (Travin and Shur), `FD_DUCROS` and `NTS_DUCROS` as before plus Ducros' shock sensor;
82
78
-`USE_ACCURATE_FLUX_JACOBIANS`, default `NO`, if set to `YES` accurate flux Jacobians are used instead of Roe approximates, slower on a per iteration basis but in some cases allows much higher CFL values to be used and therefore faster overall convergence;
83
79
-`MIN_ROE_TURKEL_PREC` and `MAX_ROE_TURKEL_PREC`, defaults 0.01 and 0.2 respectively, reference Mach numbers for Turkel preconditioning;
84
-
-`USE_VECTORIZATION`, default `NO`, if `YES` use the vectorized (SSE, AVX, or AVX512) implementation which is faster but may be less robust against initial solution transients.
85
80
86
-
**Note:** Some schemes are not compatible with all other features of SU2, the AUSM family and CUSP are not compatible with unsteady simulations of moving grids, non-ideal gases are only compatible with the standard Roe and HLLC schemes.
81
+
**Note:** Some schemes are not compatible with all other features of SU2, the AUSM family is not compatible with unsteady simulations of moving grids, non-ideal gases are only compatible with the standard Roe and HLLC schemes. The only upwind scheme that uses vectorization is the Roe scheme (ideal gas only), see the build instructions for how to tune the compilation for maximum performance.
87
82
88
83
## Incompressible Flow ##
89
84
@@ -99,12 +94,13 @@ Some of the schemes above have tunning parameters or accept extra options, the f
99
94
100
95
`FDS` - Flux Difference Splitting with low speed preconditioning, this scheme does not have tuning parameters.
101
96
102
-
## Turbulence Equations ##
97
+
## Turbulence and Scalar/Species Equations ##
103
98
104
99
| Solver | Version |
105
100
| --- | --- |
106
-
|`RANS`, `INC_RANS`|7.0.0 |
101
+
|`RANS`, `INC_RANS`|8.0.0 |
107
102
108
-
Only one method is currently available: `SCALAR_UPWIND` which must be selected via option `CONV_NUM_METHOD_TURB`.
109
-
This method does not have any special parameters.
103
+
For compressible flows the only method available is `SCALAR_UPWIND` which must be selected via option `CONV_NUM_METHOD_TURB`.
104
+
For incompressible flows the `BOUNDED_SCALAR` method is also available, this includes a divergence correction to prevent spurious production/destruction of the transported scalar while convergence is not reached.
0 commit comments