Skip to content

Commit 0f2b2d1

Browse files
authored
Merge pull request #108 from su2code/feature_nemo_theory
Add NEMO governing equations to theory.md
2 parents 7d3d8b0 + ccf2544 commit 0f2b2d1

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

_docs_v7/Theory.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ This page contains a very brief summary of the different governing equation sets
99

1010
- [Compressible Navier-Stokes](#compressible-navier-stokes)
1111
- [Compressible Euler](#compressible-euler)
12+
- [Thermochemical Nonequilibrium Navier-Stokes](#thermochemical-nonequilibrium-navier-stokes)
13+
- [Thermochemical Nonequilibrium Euler](#thermochemical-nonequilibrium-euler)
1214
- [Incompressible Navier-Stokes](#incompressible-navier-stokes)
1315
- [Incompressible Euler](#incompressible-euler)
1416
- [Turbulence Modeling](#turbulence-modeling)
@@ -87,6 +89,68 @@ Within the `EULER` solvers, we discretize the equations in space using a finite
8789

8890
---
8991

92+
# Thermochemical Nonequilibrium Navier-Stokes #
93+
94+
| Solver | Version |
95+
| --- | --- |
96+
| `NEMO_NAVIER_STOKES` | 7.0.0 |
97+
98+
99+
To simulate hypersonic flows in thermochemical nonequilibrium, SU2-NEMO solves the Navier-Stokes equations for reacting flows, expressed in differential form as
100+
101+
$$ \mathcal{R}(U) = \frac{\partial U}{\partial t} + \nabla \cdot \bar{F}^{c}(U) - \nabla \cdot \bar{F}^{v}(U,\nabla U) - S = 0 $$
102+
103+
where the conservative variables are the working variables and given by
104+
105+
$$U = \left \{ \rho_{1}, \dots, \rho_{n_s}, \rho \bar{v}, \rho E, \rho E_{ve} \right \}^\mathsf{T}$$
106+
107+
$$S$$ is a source term composed of
108+
109+
$$S = \left \{ \dot{w}_{1}, \dots, \dot{w}_{n_s}, \mathbf{0}, 0, \dot{\theta}_{tr:ve} + \sum_s \dot{w}_s E_{ve,s} \right \}^\mathsf{T}$$
110+
111+
and the convective and viscous fluxes are
112+
113+
$$\bar{F}^{c} = \left \{ \begin{array}{c} \rho_{1} \bar{v} \\ \vdots \\ \rho_{n_s} \bar{v} \\ \rho \bar{v} \otimes \bar{v} + \bar{\bar{I}} p \\ \rho E \bar{v} + p \bar{v} \\ \rho E_{ve} \bar{v} \end{array} \right \}$$
114+
115+
and
116+
117+
$$\bar{F}^{v} = \left \{ \begin{array}{c} \\- \bar{J}_1 \\ \vdots \\ - \bar{J}_{n_s} \\ \bar{\bar{\tau}} \\ \bar{\bar{\tau}} \cdot \bar{v} + \sum_k \kappa_k \nabla T_k - \sum_s \bar{J}_s h_s \\ \kappa_{ve} \nabla T_{ve} - \sum_s \bar{J}_s E_{ve} \end{array} \right \}$$
118+
119+
In the equations above, the notation is is largely the same as for the compressible Navier-Stokes equations. An individual mass conservation equation is introduced for each chemical species, indexed by $$s \in \{1,\dots,n_s\}$$. Each conservation equation has an associated source term, $$\dot{w}_{s}$$ associated with the volumetric production rate of species $$s$$ due to chemical reactions occuring within the flow.
120+
121+
Chemical production rates are given by $$ \dot{w}_s = M_s \sum_r (\beta_{s,r} - \alpha_{s,r})(R_{r}^{f} - R_{r}^{b}) $$
122+
123+
where the forward and backward reaction rates are computed using an Arrhenius formulation.
124+
125+
A two-temperature thermodynamic model is employed to model nonequilibrium between the translational-rotational and vibrational-electronic energy modes. As such, a separate energy equation is used to model vibrational-electronic energy transport. A source term associated with the relaxation of vibrational-electronic energy modes is modeled using a Landau-Teller formulation $$ \dot{\theta}_{tr:ve} = \sum _s \rho_s \frac{dE_{ve,s}}{dt} = \sum _s \rho_s \frac{E_{ve*,s} - E_{ve,s}}{\tau_s}. $$
126+
127+
Transport properties for the multi-component mixture are evaluated using a Wilkes-Blottner-Eucken formulation.
128+
129+
---
130+
131+
# Thermochemical Nonequilibrium Euler #
132+
133+
| Solver | Version |
134+
| --- | --- |
135+
| `NEMO_EULER` | 7.0.0 |
136+
137+
138+
To simulate inviscid hypersonic flows in thermochemical nonequilibrium, SU2-NEMO solves the Euler equations for reacting flows which can be obtained as a simplification of the thermochemical nonequilibrium Navier-Stokes equations in the absence of viscous effects. They can be expressed in differential form as
139+
140+
$$ \mathcal{R}(U) = \frac{\partial U}{\partial t} + \nabla \cdot \bar{F}^{c}(U) - S = 0 $$
141+
142+
where the conservative variables are the working variables and given by
143+
144+
$$U = \left \{ \rho_{1}, \dots, \rho_{n_s}, \rho \bar{v}, \rho E, \rho E_{ve} \right \}^\mathsf{T}$$
145+
146+
$$S$$ is a source term composed of
147+
148+
$$S = \left \{ \dot{w}_{1}, \dots, \dot{w}_{n_s}, \mathbf{0}, 0, \dot{\theta}_{tr:ve} + \sum_s \dot{w}_s E_{ve,s} \right \}^\mathsf{T}$$
149+
150+
and the convective and viscous fluxes are
151+
152+
$$\bar{F}^{c} = \left \{ \begin{array}{c} \rho_{1} \bar{v} \\ \vdots \\ \rho_{n_s} \bar{v} \\ \rho \bar{v} \otimes \bar{v} + \bar{\bar{I}} p \\ \rho E \bar{v} + p \bar{v} \\ \rho E_{ve} \bar{v} \end{array} \right \}$$
153+
90154
# Incompressible Navier-Stokes #
91155

92156
| Solver | Version |

0 commit comments

Comments
 (0)