Chapter 1
Introduction

The aim of this tutorial is to introduce the user to the spectral/hp element framework Nektar + + and to describe the main features of its Compressible Flow Solver in a simple manner. If you have not already downloaded and installed Nektar + +, please do so by visiting www.nektar.info, where you can also find the User-Guide with the instructions to install the library.

This tutorial requires:

1.1 Goals

After the completion of this tutorial, you will be familiar with:

Task: 1.1 Prepare for the tutorial. Make sure that you have:

Task: 1.2 Additionally, you should also install

1.2 Background

The Compressible Flow Solver allows us to solve the unsteady compressible Euler and Navier-Stokes equations for 1D/2D/3D problems using a discontinuous representation of the variables. For a more detailed description of this solver, please refer to the User-Guide.

In this tutorial we focus on the 2D Compressible Navier-Stokes equations. The two-dimensional second order partial differential equations can be written as:

∂q   ∂f    ∂g
---+ ---+  ---= 0,
∂t   ∂x    ∂y
(1.1)

where q is the vector of the conserved variables,

    (     )
    |||  ρ  |||
    {  ρu }
q = ||  ρv ||
    |(  E  |)
(1.2)

where ρ is the density, u and v are the velocity components in x and y directions, p is the pressure and E is the total energy. In this work we considered a perfect gas law for which the pressure is related to the total energy by the following expression:

E = --p-- + 1-ρ(u2 + v2),
    γ - 1   2
(1.3)

where γ is the ratio of specific heats.

The vector of the fluxes f = f(q,∇(q)) and g = g(q,∇(q)) can also be written as:

f = fi - fv, g = gi - gv,
(1.4)

The inviscid fluxes fi and gi take the form:

     (          )          (          )
     |||    ρu    |||          |||    ρv    |||
     {  p+  ρu2 }          {    ρuv   }
fi = ||    ρuv   || ,   gi = ||  p+  ρv2 || ,
     |( u(E + p )|)          |( v(E + p) |)
(1.5)

while the viscous fluxes fv and gv take the following form:

    (                   )        (                   )
    |||{          0        |||}        |||{         0         |||}
f =           τxx          , g  =          τxy          ,
v   |||         τyx        |||    v   |||         τyy        |||
    (  uτxx + v τyx + kTx )       (  uτxy + vτyy + kTy )
(1.6)

where τxx, τxy, τyx and τyy, are the components of the stress tensor1

        (     u +v )
τxx = 2μ ux - -x3-y  ,
        (     u +v )
τyy = 2μ vy - -x3-y  ,

τxy = τyx = μ(vx + uy),
(1.7)

where μ is the dynamic viscosity calculated using the Sutherland’s law and k is the thermal conductivity.

1.3 Problem description

We aim to simulate the flow past a cylinder by solving the Compressible Navier Stokes equations. For our study we use the following free-stream parameters: A Mach number equal to M = 0.2, a Reynolds number ReL=1 = 200 and Pr = 0.72, with the pressure set to p = 101325 Pa and the density equal to ρ = 1.225 Kg∕m3.

The flow domain is a rectangle of sizes [-10 20] x [-10 10]. The mesh consists of 639 quadrilaterals in which we applied the following boundary conditions (BCs): Non - slip isothermal wall on the cylinder surface, far - field at the bottom and top boundaries, inflow at the left boundary and outflow at the right boundary.

For the Navier-Stokes equations a non - slip condition must me applied to the velocity field at a solid wall, which corresponds to the cylinder for this problem. The cylinder wall is defined as an isothermal wall with imposed temperature Twall = 300.15 K.


PIC

Figure 1.1: 639 elements mesh.


Inflow, Outflow and Farfield BCs:

In the Compressible Flow Solver the boundary conditions are weakly implemented- (i.e the BCs are applied to the fluxes). In the Euler equations, for farfield BCs, the flux is computed via a Riemann solver. The use of a Riemann solver for applying BCs implies the usage of a ghost point where it is necessary to apply a consistent ghost state, which is not always trivial. In evaluating the boundary, the Riemann solver takes automatically into account the eigenvalues (characteristic lines) of the Euler equations and therefore the problem is always well posed. This approach is equivalent to a characteristic approach where the corresponding Riemann invariants are computed and applied as BCs, taking into account if the boundary is an inflow or outflow. The method is also known as no-reflective BCs as it damps the spurious reflections from the boundaries.

The characteristic approach presented for the Euler equations for farfield boundaries, works also for the advective flux of the Navier-Stokes equations in regions where viscosity effects can be neglected. However, in our outflow case shedding is present, so viscosity effects become important. In this case, the characteristic treatment of the BCs generates spurious oscillations polluting the overall solution and leading to numerical instabilities. In order to avoid this, Nektar + + implements a method based on the so-called sponge terms, modifying the RHS of the compressible NS equations as follows:

∂u   ∂f     ∂f
---+ --1-+  --2-= σ(¯x)(uref - u ),
∂t   ∂x1    ∂x2
(1.8)

Where σ(x) is a damping coefficient defined in a region x in proximity to the boundaries and uref is a known reference solution. The length and the shape of the damping coefficient depend on the problem being solved.

For further understanding of the boundary conditions implementation, please visit A Guide to the Implementation of Boundary Conditions in Compact High-Order Methods for Compressible Aerodynamics.

The initial condition is chosen to be that of a free flow field without the cylinder. If the solution greatly differs from the initial condition waves develop giving stability problems.

Tip: Set the initial conditions close to the expected solution to accelerate convergence and increment stability. Examples of setting more realistic initial conditions:

We successively setup the parameters of the problem (section 2.3). We finally run the solver (section 3) and post-process the data in order to visualise the results (section 4).