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
4 changes: 2 additions & 2 deletions _docs/Advanced-AD-Techniques.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ we can build an internal representation of each expression to directly compute a
The picture below shows the computational graph for the expression `φ=cos(v1)v2` and the compile-time representation as object with `su2double` being the general datatype used throughout SU2.
![Expression Templates](http://www.scicomp.uni-kl.de/wordpress/wp-content/uploads/2016/05/Screenshot-from-2016-05-20-15-49-59.png)

This object can be traversed to compute and store the partial derivatives `∂φ/∂v1=cos(v1)` and `∂φ/∂v2=-sin(v1)v2` based on the derivatives of each involved unary or binary operation. If recording is enabled the traversal of the computational graph of each
This object can be traversed to compute and store the partial derivatives `∂φ/∂v1=-sin(v1)v2` and `∂φ/∂v2=cos(v1)` based on the derivatives of each involved unary or binary operation. If recording is enabled the traversal of the computational graph of each
expression is started as soon as it occurs on the right-hand side in a statement. Note that the partial derivatives are only stored if the corresponding argument has some dependency on the input variables set by the user. This kind of dependency or
activity tracking is relatively easy to accomplish since every variable stores an index along with its value. A
zero index represents passive variables while a non-zero index identifies active variables. This index will be
Expand All @@ -35,7 +35,7 @@ as an argument.
### AD Tool Wrapper

The CoDi library provides a special datatype and is automatically included
during the compilation if AD support is requested by the user (see [[AD Build]]) . For developers of SU2 there is no need to deal
during the compilation if AD support is requested by the user (see the build instructions for further information). For developers of SU2 there is no need to deal
with this library explicitly which is why there are simple wrapper routines for the most important features
available. These are for example the following:

Expand Down
10 changes: 7 additions & 3 deletions _docs_v7/Theory.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Governing Equations in SU2
permalink: /docs_v7/Theory/
---

This page contains a very brief summary of the different governing equation sets that are treated in each of the solvers within SU2. The reader will be referred to other references for the full detail of the numerical implementations, but we will also describe the approaches at a high level here.
This page contains a very brief summary of the different governing equation sets that are treated in each of the solvers within SU2. The reader will be referred to other references in some instances for the full detail of the numerical implementations, but the approaches are also described at a high level here.

---

Expand Down Expand Up @@ -94,7 +94,9 @@ Within the `EULER` solvers, we discretize the equations in space using a finite
| `INC_NAVIER_STOKES`, `INC_RANS` | 7.0.0 |


SU2 solves the incompressible Navier-Stokes equations in a general form allowing for variable density due to heat transfer through the low-Mach approximation (or incompressible ideal gas formulation). The equations can be expressed in differential form as
SU2 solves the incompressible Navier-Stokes equations in a general form allowing for variable density due to heat transfer through the low-Mach approximation (or incompressible ideal gas formulation).
The reader is referred to [this paper](https://arc.aiaa.org/doi/10.2514/1.J058222) for extended details on the incompressible Navier-Stokes and Euler solvers in SU2.
The equations can be expressed in differential form as

$$ \mathcal{R}(V) = \frac{\partial V}{\partial t} + \nabla \cdot \bar{F}^{c}(V) - \nabla \cdot \bar{F}^{v}(V,\nabla V) - S = 0 $$

Expand Down Expand Up @@ -164,6 +166,8 @@ Within the `INC_EULER` solver, we discretize the equations in space using a fini

# Turbulence Modeling #

Available for `RANS`, `INC_RANS`.

SU2 implements several variants of the SST and SA turbulence models, for specifics of the models please see the [NASA Turbulence Modeling Resource](https://turbmodels.larc.nasa.gov/index.html) (TMR).
For information on how to use turbulence models in SU2 see the [users guide](https://su2code.github.io/docs_v7/Physical-Definition/).

Expand All @@ -173,7 +177,7 @@ The edge-based finite volume discretization of flow solvers is also used in turb

# Species Transport #

Compatible with `NAVIER_STOKES`, `RANS`, `INC_NAVIER_STOKES`, `INC_RANS`
Compatible with `NAVIER_STOKES`, `RANS`, `INC_NAVIER_STOKES`, `INC_RANS`.

$$ \mathcal{R}(U) = \frac{\partial U}{\partial t} + \nabla \cdot \bar{F}^{c}(U) - \nabla \cdot \bar{F}^{v}(U,\nabla U) - S = 0 $$

Expand Down
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,19 @@ <h2 style="font-weight:700">Powerful. Fast. Free.</h2>
<div class="container">

<!-- Begin Special Banner for temporary announcements. End the comment here to enable... --->
<div class="row">
<div class="col-lg-12">
<hr>
<center>
<h1>3rd Annual SU2 Conference</h1>
<h3><a href="https://www.eventbrite.com/e/3rd-annual-su2-conference-tickets-375147244507?aff=ebdsoporgprofile">Registration</a> and <a href="https://su2foundation.org/su2conference2022/">Abstract Submission</a> Open!</h3>
<h3>Combined In-Person (<a href="https://www.google.com/maps/search/villa+monastero/@46.0084623,9.284619,17z/data=!3m1!4b1">Varenna/Italy</a>) and Virtual Event,
September 5 - 7, 2022</h3>
<h3>More information on abstract submission, registration etc. are posted on the <a href="https://su2foundation.org/su2conference2022/">conference website</a> and will always contain the latest updates.</h3>
</center>
<hr>
</div>
</div>
<!-- End Special Banner -->

<div class="row">
Expand Down