Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions _docs_v7/Physical-Definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ SU2 offers different ways of setting and computing this definition. This documen

---

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

---

## Fluid Model ##

| Solver | Version |
| --- | --- |
| `EULER`, `NAVIER_STOKES`, `RANS`, `NEMO_EULER`, `NEMO_NAVIER_STOKES`, `INC_EULER`, `INC_NAVIER_STOKES`, `INC_RANS`, `FEM_EULER`, `FEM_NAVIER_STOKES` | 7.0.0 |

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:

| Option Value | Description |
|---|---|
|`STANDARD_AIR` | **Air model with ideal gas EOS** |
|`IDEAL_GAS` | **Arbitrary fluid with ideal gas EOS** |
|`VW_GAS` | **Arbitrary fluid with Vander-Waals EOS** |
|`PR_GAS` | **Arbitrary fluid with Peng-Robinson EOS** |
|`CONSTANT_DENSITY` | **Constant density** |
|`INC_IDEAL_GAS` | **Incompressible fluid constant specific heat** |
|`INC_IDEAL_GAS_POLY` | **Incompressible fluid polynomial specific heat** |
|`SU2_NONEQ` | **SU2 nonequilibrium thermochemical library** |
|`MUTATIONPP` | **Mutation++ nonequilibrium thermochemical library** |

Some fluid models require the specification of additional parameters, with the full set of required options available in the configuration file template.

## Reference Values ##

| Solver | Version |
Expand Down
19 changes: 0 additions & 19 deletions _docs_v7/Solver-Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ This is a basic introduction on how to set up a simulation using SU2. We disting
---

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

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.

## Specifying a Fluid Model ##

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:

| Option Value | Description |
|---|---|
|`STANDARD_AIR` | **Air model with ideal gas EOS** |
|`IDEAL_GAS` | **Arbitrary fluid with ideal gas EOS** |
|`VW_GAS` | **Arbitrary fluid with Vander-Waals EOS** |
|`PR_GAS` | **Arbitrary fluid with Peng-Robinson EOS** |
|`CONSTANT_DENSITY` | **Constant density** |
|`INC_IDEAL_GAS` | **Incompressible ideal gas** |
|`INC_IDEAL_GAS_POLY` | **Incompressible ideal gas** |
|`SU2_NONEQ` | **SU2 nonequilibrium thermochemical library** |
|`MUTATIONPP` | **Mutation++ nonequilibrium thermochemical library** |

Some fluid models require the specification of additional parameters, with the full set of required options available in the configuration file template.

## Restarting the simulation ##

| Solver | Version |
Expand Down