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
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,13 +34,51 @@ To achieve second order upwind schemes need to be used with MUSCL reconstruction
34
34
| --- | --- |
35
35
|`EULER`, `NAVIER_STOKES`, `RANS`| 7.0.0 |
36
36
37
+
### Central Schemes ###
38
+
39
+
-`JST`: Jameson-Schmidt-Turkel scheme with scalar dissipation defined by the second and fourth order dissipation coefficients in option `JST_SENSOR_COEFF = (2nd, 4th)` the default values are 0.5 and 0.02 respectively;
40
+
-`JST-KE`: Equivalent to `JST` with 0 fourth order coefficient (computational effort is reduced as solution Laplacians no longer need to be computed);
41
+
-`LAX-FRIEDRICH`: The simplest of central schemes with a first order dissipation term specified via `LAX_SENSOR_COEFF` (the default is 0.15), this scheme is the most stable and least accurate due to its very dissipative nature.
42
+
43
+
Option `CENTRAL_JACOBIAN_FIX_FACTOR` (default value 4.0) affects all central schemes, in implicit time marching it improves the numerical properties of the Jacobian matrix so that higher CFL values can be used.
44
+
45
+
### Upwind Schemes ###
46
+
47
+
The following table lists the available upwind schemes for compressible flow and what secondary options apply to each one.
|`L2ROE` - Low dissipation Low Mach Roe | X | X ||||
52
+
|`LMROE` - Rieper's Low Mach Roe scheme | X | X ||||
53
+
|`TURKEL_PREC` - Row with Turkel preconditioning ||||| X |
54
+
|`AUSM`||||||
55
+
|`AUSMPLUSUP` - AUSM+up |||| X ||
56
+
|`AUSMPLUSUP2` - AUSM+up2 |||| X ||
57
+
|`SLAU`||| X | X ||
58
+
|`SLAU2`||| X | X ||
59
+
|`HLLC`| X |||||
60
+
|`CUSP`|| X ||||
61
+
|`MSW` - Modified Steger-Warming scheme ||||||
62
+
63
+
-`ROE_KAPPA`, default 0.5, constant that multiplies the left and right state averages;
64
+
-`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;
65
+
-`ROE_LOW_DISSIPATION`, default `NONE`, methods to reduce dissipation where certain conditions are verified, `FD` (wall distance based), `NTS` (Travin and Shur), `FD_DUCROS` and `NTS_DUCROS` as before plus Ducros' shock sensor;
66
+
-`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;
67
+
-`MIN/MAX_ROE_TURKEL_PREC`, defaults 0.01 and 0.2, reference Mach numbers for Turkel preconditioning.
0 commit comments