Skip to content

Commit 35e8996

Browse files
authored
Merge pull request #122 from su2code/master
Update develop
2 parents f7b4e08 + ae10945 commit 35e8996

19 files changed

+448
-22
lines changed

_data/tutorials.yml

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
- Inc_Laminar_Cavity
2929
- Inc_Streamwise_Periodic
3030
- Inc_Species_Transport
31+
- Inc_Species_Transport_Composition_Dependent_Model
32+
- Inc_Turbulent_Bend
3133

3234
- title: Structural Mechanics
3335
tutorials:

_docs_v7/Markers-and-BC.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,19 @@ MARKER_FAR= (farfield)
131131
| --- | --- |
132132
| `RANS`, `INC_RANS`, | 7.3.0 |
133133

134-
The turbulence boundary conditions do not have a `MARKER_` keyword but can instead be set for inlet and freestream boundaries using the keywords:
134+
The turbulence boundary conditions do not have a `MARKER_` keyword for the SA Turbulence model but can instead be set for inlet and freestream boundaries using the keyword:
135135

136-
For the SA turbulence model:
137136
```
138137
FREESTREAM_NU_FACTOR= 3
139138
```
140139

141-
For the SST turbulence model:
140+
Conversely, for the SST turbulence model, it is possible to provide a 'MARKER_INLET' where turbulence intensity and turbulent-to-laminar ratio can be provided at each inlet as follows:
141+
142+
```
143+
MARKER_INLET_TURBULENT= (inlet_1, TURBULENCEINTENSITY_1, TURB2LAMVISCRATIO_1 , inlet_2, TURBULENCEINTENSITY_1, TURB2LAMVISCRATIO_1 ,..)
144+
```
145+
If 'MARKER_INLET_TURBULENT' are not provided in the .cfg file, SU2 will filled up the markers with the freestream options:
146+
142147
```
143148
FREESTREAM_TURBULENCEINTENSITY= 0.05
144149
FREESTREAM_TURB2LAMVISCRATIO= 10

_docs_v7/Physical-Definition.md

+24
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ SU2 offers different ways of setting and computing this definition. This documen
99

1010
---
1111

12+
- [Fluid Model](#fluid-model)
1213
- [Reference Values](#reference-values)
1314
- [Free-Stream Definition (Compressible)](#free-stream-definition-compressible)
1415
- [Thermodynamic State](#thermodynamic-state)
@@ -28,6 +29,29 @@ SU2 offers different ways of setting and computing this definition. This documen
2829

2930
---
3031

32+
## Fluid Model ##
33+
34+
| Solver | Version |
35+
| --- | --- |
36+
| `EULER`, `NAVIER_STOKES`, `RANS`, `NEMO_EULER`, `NEMO_NAVIER_STOKES`, `INC_EULER`, `INC_NAVIER_STOKES`, `INC_RANS`, `FEM_EULER`, `FEM_NAVIER_STOKES` | 7.0.0 |
37+
38+
For fluid simulations, a model defining the equation of state and thermodynamic properties of the fluid or mixture is required. This is selected using the `FLUID_MODEL` option in the config. Available fluid models in SU2 include:
39+
40+
| Option Value | Description |
41+
|---|---|
42+
|`STANDARD_AIR` | **Air model with ideal gas EOS** |
43+
|`IDEAL_GAS` | **Arbitrary fluid with ideal gas EOS** |
44+
|`VW_GAS` | **Arbitrary fluid with Vander-Waals EOS** |
45+
|`PR_GAS` | **Arbitrary fluid with Peng-Robinson EOS** |
46+
|`CONSTANT_DENSITY` | **Constant density** |
47+
|`INC_IDEAL_GAS` | **Incompressible fluid constant specific heat** |
48+
|`INC_IDEAL_GAS_POLY` | **Incompressible fluid polynomial specific heat** |
49+
|`FLUID_MIXTURE` | **Incompressible ideal gas mixing laws for multicomponent flow** |
50+
|`SU2_NONEQ` | **SU2 nonequilibrium thermochemical library** |
51+
|`MUTATIONPP` | **Mutation++ nonequilibrium thermochemical library** |
52+
53+
Some fluid models require the specification of additional parameters, with the full set of required options available in the configuration file template.
54+
3155
## Reference Values ##
3256

3357
| Solver | Version |

_docs_v7/Solver-Setup.md

-19
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ This is a basic introduction on how to set up a simulation using SU2. We disting
88
---
99

1010
- [Defining the Problem](#defining-the-problem)
11-
- [Specifying a Fluid Model](#specifying-a-fluid-model)
1211
- [Restarting the simulation](#restarting-the-simulation)
1312
- [Controlling the simulation](#controlling-the-simulation)
1413
- [Time-dependent Simulation](#time-dependent-simulation)
@@ -45,24 +44,6 @@ SU2 is capable of dealing with different kinds of physical problems. The kind of
4544

4645
Every solver has its specific options and we refer to the tutorial cases for more information. However, the basic controls detailed in the remainder of this page are the same for all problems.
4746

48-
## Specifying a Fluid Model ##
49-
50-
For fluid simulations, a model defining the equation of state and thermodynamic properties of the fluid or mixture is required. This is selected using the `FLUID_MODEL` option in the config. Available fluid models in SU2 include:
51-
52-
| Option Value | Description |
53-
|---|---|
54-
|`STANDARD_AIR` | **Air model with ideal gas EOS** |
55-
|`IDEAL_GAS` | **Arbitrary fluid with ideal gas EOS** |
56-
|`VW_GAS` | **Arbitrary fluid with Vander-Waals EOS** |
57-
|`PR_GAS` | **Arbitrary fluid with Peng-Robinson EOS** |
58-
|`CONSTANT_DENSITY` | **Constant density** |
59-
|`INC_IDEAL_GAS` | **Incompressible ideal gas** |
60-
|`INC_IDEAL_GAS_POLY` | **Incompressible ideal gas** |
61-
|`SU2_NONEQ` | **SU2 nonequilibrium thermochemical library** |
62-
|`MUTATIONPP` | **Mutation++ nonequilibrium thermochemical library** |
63-
64-
Some fluid models require the specification of additional parameters, with the full set of required options available in the configuration file template.
65-
6647
## Restarting the simulation ##
6748

6849
| Solver | Version |

0 commit comments

Comments
 (0)