Skip to content

Commit 0318c83

Browse files
committed
add new file
1 parent 97fffea commit 0318c83

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

_docs_v7/Convective-Schemes.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
title: Convective Schemes
3+
permalink: /docs_v7/Convective-Schemes/
4+
---
5+
6+
This page lists the convective schemes available in SU2 and their associated options, it is not meant as a detailed theory guide but some application guidance is given nonetheless.
7+
The options listed here do not apply to the high order DG solver.
8+
9+
---
10+
11+
## Content ##
12+
13+
- [Introduction](#intro)
14+
- [Compressible Flow](#compressible-flow)
15+
- [Central schemes](#compressible-central)
16+
- [Upwind schemes](#compressible-upwind)
17+
- [Incompressible Flow](#incomp-flow)
18+
- [Central schemes](#incomp-central)
19+
- [Upwind schemes](#incomp-upwind)
20+
- [Turbulence Equations](#turbulence)
21+
22+
---
23+
24+
## Introduction ##
25+
26+
Convective schemes are used in the FVM discretization of convective fluxes through the faces of the dual-grid control volumes.
27+
They are selected via option `CONV_NUM_METHOD_FLOW` and fall under the two broad categories of central and upwind.
28+
Central schemes tend to be more robust whereas second order upwind schemes can be more accurate (i.e. less dissipative).
29+
To achieve second order upwind schemes need to be used with MUSCL reconstruction (`MUSCL_FLOW = YES`), see the "gradients and limiters" page for the MUSCL-related options.
30+
31+
## Compressible Flow ##
32+
33+
| Solver | Version |
34+
| --- | --- |
35+
| `EULER`, `NAVIER_STOKES`, `RANS` | 7.0.0 |
36+
37+
38+
## Incompressible Flow ##
39+
40+
| Solver | Version |
41+
| --- | --- |
42+
| `INC_EULER`, `INC_NAVIER_STOKES`, `INC_RANS` | 7.0.0 |
43+
44+
45+
## Turbulence Equations ##
46+
47+
| Solver | Version |
48+
| --- | --- |
49+
| `RANS`, `INC_RANS` | 7.0.0 |
50+
51+
Only one method is currently available: `SCALAR_UPWIND` which must be selected via option `CONV_NUM_METHOD_TURB`.
52+
This method does not have any special parameters.
53+

0 commit comments

Comments
 (0)