Examples

Compressible Navier-Stokes Equations

Gaussian Wave

This test case is taken/inspired by that presented in [MDGP+14]. It is intended to test non-reflecting/Riemann boundary conditions. It’s primarily intended for Euler equations, but has been implemented for the Navier-Stokes equations here for flexibility.

The problem has a perturbed initial condition and lets it evolve in time. The initial condition contains a Gaussian perturbation in the pressure field:

\[ \begin{aligned} \rho &= \rho_\infty\left(1+A\exp\left(\frac{-(\bar{x}^2 + \bar{y}^2)}{2\sigma^2}\right)\right) \\ \bm{U} &= \bm U_\infty \\ E &= \frac{p_\infty}{\gamma -1}\left(1+A\exp\left(\frac{-(\bar{x}^2 + \bar{y}^2)}{2\sigma^2}\right)\right) + \frac{\bm U_\infty \cdot \bm U_\infty}{2\rho_\infty}, \end{aligned} \]

where \(A\) and \(\sigma\) are the amplitude and width of the perturbation, respectively, and \((\bar{x}, \bar{y}) = (x-x_e, y-y_e)\) is the distance to the epicenter of the perturbation, \((x_e, y_e)\). The simulation produces a strong acoustic wave and leaves behind a cold thermal bubble that advects at the fluid velocity.

The boundary conditions are freestream in the x and y directions. When using an HLL (Harten, Lax, van Leer) Riemann solver [Tor09] (option -freestream_riemann hll), the acoustic waves exit the domain cleanly, but when the thermal bubble reaches the boundary, it produces strong thermal oscillations that become acoustic waves reflecting into the domain. This problem can be fixed using a more sophisticated Riemann solver such as HLLC [Tor09] (option -freestream_riemann hllc, which is default), which is a linear constant-pressure wave that transports temperature and transverse momentum at the fluid velocity.

Running

Table 17 Gaussian Wave Runtime Options

Option

Description

Default value

Unit

-epicenter

Coordinates of center of perturbation

0,0,0

m

-amplitude

Amplitude of the perturbation

0.1

-width

Width parameter of the perturbation

0.002

m

This problem can be run with the examples/gaussianwave.yaml file via:

./build/navierstokes -options_file examples/gaussianwave.yaml

examples/gaussianwave.yaml:

problem: gaussian_wave
mu: 0 # Effectively solving Euler momentum equations

dm_plex_box_faces: 40,40,1
dm_plex_box_upper: 1,1,0.025
dm_plex_box_lower: 0,0,0
dm_plex_dim: 3
bc_freestream: 4,6,3,5
bc_symmetry_z: 1,2

reference:
  temperature: 0.25
  pressure: 71.75
freestream:
  # riemann: hll # causes thermal bubble to reflect acoustic waves from boundary
  velocity: 2,2,0

epicenter: 0.33,0.75,0
amplitude: 2
width: 0.05

ts:
  adapt_type: none
  max_steps: 100
  dt: 2e-3
  type: alpha
  #monitor_solution: cgns:nwave.cgns
  #monitor_solution_interval: 10

implicit: true
stab: supg
state_var: primitive

snes_rtol: 1e-4
ksp_rtol: 1e-2
snes_lag_jacobian: 20
snes_lag_jacobian_persists:

## Demonstrate acoustic wave dissipation using an internal damping layer
# idl:
#   decay_time: 2e-3
#   start: 0
#   length: .25

Vortex Shedding - Flow past Cylinder

This test case, based on [SHJ91], is an example of using an externally provided mesh from Gmsh. A cylinder with diameter \(D=1\) is centered at \((0,0)\) in a computational domain \(-4.5 \leq x \leq 15.5\), \(-4.5 \leq y \leq 4.5\). We solve this as a 3D problem with (default) one element in the \(z\) direction. The domain is filled with an ideal gas at rest (zero velocity) with temperature 24.92 and pressure 7143. The viscosity is 0.01 and thermal conductivity is 14.34 to maintain a Prandtl number of 0.71, which is typical for air. At time \(t=0\), this domain is subjected to freestream boundary conditions at the inflow (left) and Riemann-type outflow on the right, with exterior reference state at velocity \((1, 0, 0)\) giving Reynolds number \(100\) and Mach number \(0.01\). A symmetry (adiabatic free slip) condition is imposed at the top and bottom boundaries \((y = \pm 4.5)\) (zero normal velocity component, zero heat-flux). The cylinder wall is an adiabatic (no heat flux) no-slip boundary condition. As we evolve in time, eddies appear past the cylinder leading to a vortex shedding known as the vortex street, with shedding period of about 6.

The Gmsh input file, examples/meshes/cylinder.geo is parametrized to facilitate experimenting with similar configurations. The Strouhal number (nondimensional shedding frequency) is sensitive to the size of the computational domain and boundary conditions.

Forces on the cylinder walls are computed using the “reaction force” method, which is variationally consistent with the volume operator. Given the force components \(\bm F = (F_x, F_y, F_z)\) and surface area \(S = \pi D L_z\) where \(L_z\) is the spanwise extent of the domain, we define the coefficients of lift and drag as

\[ \begin{aligned} C_L &= \frac{2 F_y}{\rho_\infty u_\infty^2 S} \\ C_D &= \frac{2 F_x}{\rho_\infty u_\infty^2 S} \\ \end{aligned} \]

where \(\rho_\infty, u_\infty\) are the freestream (inflow) density and velocity respectively.

Running

The initial condition is taken from -reference_temperature and -reference_pressure. To run this problem, first generate a mesh:

$ make -C examples/meshes

Then run by building the executable and running:

$ make -j
$ mpiexec -n 6 build/navierstokes -options_file examples/vortexshedding.yaml

The vortex shedding period is roughly 5.6 and this problem runs until time 100 (2000 time steps). The above run writes a file named force.csv (see ts_monitor_wall_force in examples/vortexshedding.yaml), which can be postprocessed by running to create a figure showing lift and drag coefficients over time.

$ python postprocess/vortexshedding.py

examples/vortexshedding.yaml:

problem: newtonian

# Time Stepping Settings
implicit: true
stab: supg

checkpoint_interval: 10

ts:
  adapt_type: 'none'
  type: alpha
  dt: .05
  max_time: 100
  alpha_radius: 0.5
  monitor_solution: cgns:vortexshedding-q3-g1-n08.cgns
  monitor_solution_interval: 5
  monitor_wall_force: ascii:force.csv:ascii_csv

# Reference state is used for the initial condition, zero velocity by default.

# This choice of pressure and temperature have a density of 1 and acoustic speed
# of 100. With velocity 1, this flow is Mach 0.01.
reference:
  pressure: 7143
  temperature: 24.92

# If the the outflow is placed close to the cylinder, this will recirculate cold
# fluid, demonstrating how the outflow BC is stable despite recirculation.
outflow:
  temperature: 20

# Freestream inherits reference state as default
freestream:
  velocity: 1,0,0
# Small gravity vector to break symmetry so shedding can start
gravity: 0,-.01,0

# viscosity corresponds to Reynolds number 100
mu: 0.01
k: 14.34 # thermal conductivity, Pr = 0.71 typical of air

## DM Settings:
degree: 3
dm_plex_filename: examples/meshes/cylinder-q1-n08.msh

# Boundary Settings
bc_symmetry_z: 6
bc_wall: 5
bc_freestream: 1
bc_outflow: 2
bc_symmetry_y: 3,4
wall_comps: 1,2,3

# Primitive variables are preferred at low Mach number
state_var: primitive

dm_view:
ts_monitor:
snes_lag_jacobian: 20
snes_lag_jacobian_persists:

#pmat_pbdiagonal:
#ksp_type: bcgsl
#pc_type: vpbjacobi
amat_type: shell

Density Current

For this test problem (from [SWW+93]), we solve the full Navier-Stokes equations (1), for which a cold air bubble (of radius \(r_c\)) drops by convection in a neutrally stratified atmosphere. Its initial condition is defined in terms of the Exner pressure, \(\pi(\bm{x},t)\), and potential temperature, \(\theta(\bm{x},t)\), that relate to the state variables via

\[ \begin{aligned} \rho &= \frac{P_0}{( c_p - c_v)\theta(\bm{x},t)} \pi(\bm{x},t)^{\frac{c_v}{ c_p - c_v}} \, , \\ e &= c_v \theta(\bm{x},t) \pi(\bm{x},t) + \bm{u}\cdot \bm{u} /2 + g z \, , \end{aligned} \]

where \(P_0\) is the atmospheric pressure. For this problem, we have used no-slip and non-penetration boundary conditions for \(\bm{u}\), and no-flux for mass and energy densities.

Running

Table 18 Density Current Runtime Options

Option

Description

Default value

Unit

-center

Location of bubble center

(lx,ly,lz)/2

(m,m,m)

-dc_axis

Axis of density current cylindrical anomaly, or (0,0,0) for spherically symmetric

(0,0,0)

-rc

Characteristic radius of thermal bubble

1000

m

-theta0

Reference potential temperature

300

K

-thetaC

Perturbation of potential temperature

-15

K

-P0

Atmospheric pressure

1E5

Pa

-N

Brunt-Vaisala frequency

0.01

1/s

This example can be run with:

./navierstokes -problem density_current -dm_plex_box_faces 16,1,8 -degree 1 -dm_plex_box_lower 0,0,0 -dm_plex_box_upper 2000,125,1000 -dm_plex_dim 3 -rc 400. -bc_wall 1,2,5,6 -wall_comps 1,2,3 -bc_symmetry_y 3,4 -mu 75

Channel

A compressible channel flow. Analytical solution given in [Whi99]:

\[ u_1 = u_{\max} \left [ 1 - \left ( \frac{x_2}{H}\right)^2 \right] \quad \quad u_2 = u_3 = 0\]
\[T = T_w \left [ 1 + \frac{Pr \hat{E}c}{3} \left \{1 - \left(\frac{x_2}{H}\right)^4 \right \} \right]\]
\[p = p_0 - \frac{2\rho_0 u_{\max}^2 x_1}{Re_H H}\]

where \(H\) is the channel half-height, \(u_{\max}\) is the center velocity, \(T_w\) is the temperature at the wall, \(Pr=\frac{\mu}{c_p \kappa}\) is the Prandlt number, \(\hat E_c = \frac{u_{\max}^2}{c_p T_w}\) is the modified Eckert number, and \(Re_h = \frac{u_{\max}H}{\nu}\) is the Reynolds number.

Boundary conditions are periodic in the streamwise direction, and no-slip and non-penetration boundary conditions at the walls. The flow is driven by a body force determined analytically from the fluid properties and setup parameters \(H\) and \(u_{\max}\).

Running

Table 19 Channel Runtime Options

Option

Description

Default value

Unit

-umax

Maximum/centerline velocity of the flow

10

m/s

-theta0

Reference potential temperature

300

K

-P0

Atmospheric pressure

1E5

Pa

-body_force_scale

Multiplier for body force (-1 for flow reversal)

1

This problem can be run with the examples/channel.yaml file via:

./build/navierstokes -options_file examples/channel.yaml

examples/channel.yaml:

problem: 'channel'
mu: .01

umax: 40
implicit: true
ts:
  type: 'beuler'
  adapt_type: 'none'
  dt: 5e-6

q_extra: 2

dm_plex_box_lower: 0,0,0
dm_plex_box_upper: .01,.01,.001
dm_plex_dim: 3
degree: 1
dm_plex_box_faces: 10,10,1
bc_symmetry_z: 1,2
bc_wall: 3,4
wall_comps: 1,2,3
dm_plex_box_bd: 'periodic,none,none'

Flat Plate Boundary Layer

Meshing

The flat plate boundary layer example has custom meshing features to better resolve the flow when using a generated box mesh. These meshing features modify the nodal layout of the default, equispaced box mesh and are enabled via -mesh_transform platemesh. One of those is tilting the top of the domain, allowing for it to be a outflow boundary condition. The angle of this tilt is controlled by -platemesh_top_angle.

The primary meshing feature is the ability to grade the mesh, providing better resolution near the wall. There are two methods to do this; algorithmically, or specifying the node locations via a file. Algorithmically, a base node distribution is defined at the inlet (assumed to be \(\min(x)\)) and then linearly stretched/squeezed to match the slanted top boundary condition. Nodes are placed such that -platemesh_Ndelta elements are within -platemesh_refine_height of the wall. They are placed such that the element height matches a geometric growth ratio defined by -platemesh_growth. The remaining elements are then distributed from -platemesh_refine_height to the top of the domain linearly in logarithmic space.

Alternatively, a file may be specified containing the locations of each node. The file should be newline delimited, with the first line specifying the number of points and the rest being the locations of the nodes. The node locations used exactly at the inlet (assumed to be \(\min(x)\)) and linearly stretched/squeezed to match the slanted top boundary condition. The file is specified via -platemesh_y_node_locs_path. If this flag is given an empty string, then the algorithmic approach will be performed.

Table 20 Boundary Layer Meshing Runtime Options

Option

Description

Default value

Unit

-platemesh_modify_mesh

Whether to modify the mesh using the given options below.

false

-platemesh_refine_height

Height at which -platemesh_Ndelta number of elements should refined into

5.9E-4

m

-platemesh_Ndelta

Number of elements to keep below -platemesh_refine_height

45

-platemesh_growth

Growth rate of the elements in the refinement region

1.08

-platemesh_top_angle

Downward angle of the top face of the domain. This face serves as an outlet.

5

degrees

-platemesh_y_node_locs_path

Path to file with y node locations. If empty, will use mesh warping instead.

""

Laminar Boundary Layer - Blasius

Simulation of a laminar boundary layer flow, with the inflow being prescribed by a Blasius similarity solution. At the inflow, the velocity is prescribed by the Blasius soution profile, density is set constant, and temperature is allowed to float. Using weakT: true, density is allowed to float and temperature is set constant. At the outlet, a user-set pressure is used for pressure in the inviscid flux terms (all other inviscid flux terms use interior solution values). The wall is a no-slip, no-penetration, no-heat flux condition. The top of the domain is treated as an outflow and is tilted at a downward angle to ensure that flow is always exiting it.

Running

Table 21 Blasius Runtime Options

Option

Description

Default value

Unit

-velocity_infinity

Freestream velocity

40

m/s

-temperature_infinity

Freestream temperature

288

K

-pressure_infinity

Atmospheric pressure, also sets IDL reference pressure

1.01E5

Pa

-temperature_wall

Wall temperature

288

K

-delta0

Boundary layer height at the inflow

4.2e-3

m

-n_chebyshev

Number of Chebyshev terms

20

-chebyshev_

Prefix for Chebyshev snes solve

This problem can be run with the examples/blasius.yaml file via:

./build/navierstokes -options_file examples/blasius.yaml

examples/blasius.yaml:

problem: 'blasius'

implicit: true
ts:
  adapt_type: 'none'
  type: 'beuler'
  dt: 2e-6
  max_time: 1.0e-3
  #monitor_solution: cgns:blasius-%d.cgns
  #monitor_solution_interval: 10
checkpoint_interval: 10

## Linear Settings:
degree: 1
dm_plex_box_faces: 40,60,1
mesh_transform: platemesh
platemesh_nDelta: 45

# # Quadratic Settings:
# degree: 2
# dm_plex_box_faces: 20,30,1
# platemesh:
#   modify_mesh: true
#   nDelta: 22
#   growth: 1.1664 # 1.08^2

stab: 'supg'

dm_plex_box_lower: 0,0,0
dm_plex_box_upper: 4.2e-3,4.2e-3,5.e-5
dm_plex_dim: 3
# Faces labeled 1=z- 2=z+ 3=y- 4=y+ 5=x+ 6=x-
bc_symmetry_z: 1,2
bc_wall: 3
wall_comps: 1,2,3
bc_inflow: 6
bc_outflow: 5,4
gravity: 0,0,0

# stg:
#   use: false
#   inflow_path: "./STGInflow_blasius.dat"
#   mean_only: true

# ts_monitor_spanstats_turbulence: cgns:stats-%d.cgns
# ts_monitor_spanstats_turbulence:
#   collect_interval: 1
#   interval: 5
#   cgns_batch_size: 1

Turbulent Boundary Layer

Simulating a turbulent boundary layer without modeling the turbulence requires resolving the turbulent flow structures. These structures may be introduced into the simulations either by allowing a laminar boundary layer naturally transition to turbulence, or imposing turbulent structures at the inflow. The latter approach has been taken here, specifically using a synthetic turbulence generation (STG) method. See Synthetic Turbulence Generation (STG) for details on STG.

Running

This problem can be run with the examples/blasius.yaml file via:

./build/navierstokes -options_file examples/blasius.yaml -stg_use true

Note the added -stg_use true flag This overrides the stg: use: false setting in the examples/blasius.yaml file, enabling the use of the STG inflow.

Taylor-Green Vortex

This problem is really just an initial condition, the Taylor-Green Vortex:

\[ \begin{aligned} u &= V'_x + V \sin(\hat x) \cos(\hat y) \sin(\hat z) \\ v &= V'_y - V \cos(\hat x) \sin(\hat y) \sin(\hat z) \\ w &= V'_z\\ p &= p_0 + \frac{\rho_0 V_0^2}{16} \left ( \cos(2 \hat x) + \cos(2 \hat y)\right) \left( \cos(2 \hat z) + 2 \right) \\ \rho &= \frac{p}{R T_0} \\ \end{aligned} \]

where \(\hat x = 2 \pi x / L\) for \(L\) the length of the domain in that specific direction, \(V\) is the magnitude of the vortex velocity, and \(V'_i\) is the background velocity that (optionally) advects the initial condition. The coordinate modification is done to transform a given grid onto a domain of \(x,y,z \in [0, 2\pi)\).

This initial condition is traditionally given for the incompressible Navier-Stokes equations. The reference state is selected using the -reference_{velocity,pressure,temperature} flags (Euclidean norm of -reference_velocity is used for \(V\)).

Table 22 Taylor-Green Vortex Runtime Options

Option

Description

Default value

Unit

-taylorgreen_background_velocity

Background velocity added to Taylor-Green initial condition

0,0,0

m/s

Compressible Euler Equations

Isentropic Vortex

Three-dimensional Euler equations, which are simplified and nondimensionalized version of system (1) and account only for the convective fluxes, are given by

(17)\[ \begin{aligned} \frac{\partial \rho}{\partial t} + \nabla \cdot \bm{U} &= 0 \\ \frac{\partial \bm{U}}{\partial t} + \nabla \cdot \left( \frac{\bm{U} \otimes \bm{U}}{\rho} + P \bm{I}_3 \right) &= 0 \\ \frac{\partial E}{\partial t} + \nabla \cdot \left( \frac{(E + P)\bm{U}}{\rho} \right) &= 0 \, , \\ \end{aligned} \]

Following the setup given in [ZZS11], the mean flow for this problem is \(\rho=1\), \(P=1\), \(T=P/\rho= 1\) (Specific Gas Constant, \(R\), is 1), and \(\bm{u}=(u_1,u_2,0)\) while the perturbation \(\delta \bm{u}\), and \(\delta T\) are defined as

\[ \begin{aligned} (\delta u_1, \, \delta u_2) &= \frac{\epsilon}{2 \pi} \, e^{0.5(1-r^2)} \, (-\bar{y}, \, \bar{x}) \, , \\ \delta T &= - \frac{(\gamma-1) \, \epsilon^2}{8 \, \gamma \, \pi^2} \, e^{1-r^2} \, , \\ \end{aligned} \]

where \((\bar{x}, \, \bar{y}) = (x-x_c, \, y-y_c)\), \((x_c, \, y_c)\) represents the center of the domain, \(r^2=\bar{x}^2 + \bar{y}^2\), and \(\epsilon\) is the vortex strength (\(\epsilon\) < 10). There is no perturbation in the entropy \(S=P/\rho^\gamma\) (\(\delta S=0)\).

Running

Table 23 Isentropic Vortex Runtime Options

Option

Description

Default value

Unit

-center

Location of vortex center

(lx,ly,lz)/2

(m,m,m)

-mean_velocity

Background velocity vector

(1,1,0)

-vortex_strength

Strength of vortex < 10

5

-c_tau

Stabilization constant

0.5

This problem can be run with:

./navierstokes -problem euler_vortex -dm_plex_box_faces 20,20,1 -dm_plex_box_lower 0,0,0 -dm_plex_box_upper 1000,1000,50 -dm_plex_dim 3 -bc_inflow 4,6 -bc_outflow 3,5 -bc_symmetry_z 1,2 -mean_velocity .5,-.8,0.

Shock Tube

This test problem is based on Sod’s Shock Tube (from[sod]), a canonical test case for discontinuity capturing in one dimension. For this problem, the three-dimensional Euler equations are formulated exactly as in the Isentropic Vortex problem. The default initial conditions are \(P=1\), \(\rho=1\) for the driver section and \(P=0.1\), \(\rho=0.125\) for the driven section. The initial velocity is zero in both sections. Symmetry boundary conditions are applied to the side walls and wall boundary conditions are applied at the end walls.

SU upwinding and discontinuity capturing have been implemented into the explicit timestepping operator for this problem. Discontinuity capturing is accomplished using a modified version of the \(YZ\beta\) operator described in [TS07]. This discontinuity capturing scheme involves the introduction of a dissipation term of the form

\[ \int_{\Omega} \nu_{SHOCK} \nabla \bm v \!:\! \nabla \bm q dV \]

The shock capturing viscosity is implemented following the first formulation described in [TS07]. The characteristic velocity \(u_{cha}\) is taken to be the acoustic speed while the reference density \(\rho_{ref}\) is just the local density. Shock capturing viscosity is defined by the following

\[ \nu_{SHOCK} = \tau_{SHOCK} u_{cha}^2 \]

where,

\[ \tau_{SHOCK} = \frac{h_{SHOCK}}{2u_{cha}} \left( \frac{ \,|\, \nabla \rho \,|\, h_{SHOCK}}{\rho_{ref}} \right)^{\beta} \]

\(\beta\) is a tuning parameter set between 1 (smoother shocks) and 2 (sharper shocks. The parameter \(h_{SHOCK}\) is a length scale that is proportional to the element length in the direction of the density gradient unit vector. This density gradient unit vector is defined as \(\hat{\bm j} = \frac{\nabla \rho}{|\nabla \rho|}\). The original formulation of Tezduyar and Senga relies on the shape function gradient to define the element length scale, but this gradient is not available to qFunctions in libCEED. To avoid this problem, \(h_{SHOCK}\) is defined in the current implementation as

\[ h_{SHOCK} = 2 \left( C_{YZB} \,|\, \bm p \,|\, \right)^{-1} \]

where

\[ p_k = \hat{j}_i \frac{\partial \xi_i}{x_k} \]

The constant \(C_{YZB}\) is set to 0.1 for piecewise linear elements in the current implementation. Larger values approaching unity are expected with more robust stabilization and implicit timestepping.

Running

Table 24 Shock Tube Runtime Options

Option

Description

Default value

Unit

-yzb

Use YZB discontinuity capturing

none

-stab

Stabilization method (none, su, or supg)

none

This problem can be run with:

./navierstokes -problem shocktube -yzb -stab su -bc_symmetry_z 3,4 -bc_symmetry_y 1,2 -bc_wall 5,6 -dm_plex_dim 3 -dm_plex_box_lower 0,0,0 -dm_plex_box_upper 1000,100,100 -dm_plex_box_faces 200,1,1 -units_second 0.1

Advection-Diffusion

There is a reduced mode in HONEE for pure advection-diffusion, which holds density \(\rho\) and momentum density \(\rho \bm u\) constant while advecting “total energy density” \(E\). This reduced mode is given by

(18)\[ \frac{\partial E}{\partial t} + \nabla \cdot (\bm{u} E ) - \kappa \nabla E = 0 \, , \]

with \(\bm{u}\) the vector velocity field and \(\kappa\) the diffusion coefficient.

Advection Field Options

There are three different definitions for \(\bm{u}\):

  • Rotation

    A uniform circular velocity field transports the blob of total energy. We have solved (18) applying zero energy density \(E\), and no-flux for \(\bm{u}\) on the boundaries.

  • Translation

    In this case, a background wind with a constant rectilinear velocity field, enters the domain and transports the blob of total energy out of the domain.

  • Boundary Layer

    This case has a linear velocity profile with only the y component set: \(u_y = y / L_y\). It starts at 0 for \(y=0\) and then increases to 1 at the top of the domain.

Initial Condition options

There are also several different definitions for initial conditions. Some require specific advection profiles, other’s can be used with multiple.

  • Bubble (Sphere and Cylinder)

    These are simple initial conditions with a controllable radius and center point. They use an magnitude of one within the bubble and zero outside and have different smoothing options for the boundary of the bubble with the rest of the domain. The difference between sphere and cylinder is whether the radius is applied in all 3 dimensions (sphere) or just in the x and y directions.

  • Cosine Hill

    This is similar to the bubble ICs, but uses a cosine wave to define the bubble and it’s radius is set to half the width of the domain (so the bubble fills the entire domain).

  • Skew

    This IC is meant for for the translation advection profile only. This IC features a line discontinuity intersecting the midpoint of the lower edge of the box and in the same direction as the advection velocity The solution is either 0 or 1 on either side of the discontinuity.

  • Wave

    This IC is meant for for the translation advection profile only. This either a sine or square wave that oscillates in the direction of advection velocity. The frequency and phase of the wave is controllable.

  • Boundary Layer

    This IC is meant to be paired with the boundary layer advection profile. This initial condition features a linear profile in the y direction up to a height set by the user.

For the inflow boundary conditions, a prescribed \(E_{wind}\) is applied weakly on the inflow boundaries such that the weak form boundary integral in (5) is defined as

\[ \int_{\partial \Omega_{inflow}} \bm v \cdot \bm{F}(\bm q_N) \cdot \widehat{\bm{n}} \,dS = \int_{\partial \Omega_{inflow}} \bm v \, E_{wind} \, \bm u \cdot \widehat{\bm{n}} \,dS \, , \]

For the outflow boundary conditions, we have used the current values of \(E\), following [PMK92] which extends the validity of the weak form of the governing equations to the outflow instead of replacing them with unknown essential or natural boundary conditions. The weak form boundary integral in (5) for outflow boundary conditions is defined as

\[ \int_{\partial \Omega_{outflow}} \bm v \cdot \bm{F}(\bm q_N) \cdot \widehat{\bm{n}} \,dS = \int_{\partial \Omega_{outflow}} \bm v \, E \, \bm u \cdot \widehat{\bm{n}} \,dS \, , \]

The advection problems can be run in both 2D and 3D, based on the DM defined for the problem. The following additional command-line options are available:

Running

Table 25 Advection Runtime Options

Option

Description

Default value

Unit

-strong_form

Strong (1) or weak/integrated by parts (0) advection term of the residual

0

-stab

Stabilization method (none, su, or supg)

none

-stab_tau

Formulation for \(\tau\) in stabilization (ctau, advdiff_shakib)

ctau

-Ctau_t

Scaling factor on the temporal portion of the \(\tau\) formulation

-Ctau_a

Scaling factor on the advection portion of the \(\tau\) formulation

\(P^2\)

-Ctau_d

Scaling factor on the diffusion portion of the \(\tau\) formulation

\(P^4\)

-CtauS

Scale coefficient for stabilization tau (nondimensional)

0

-diffusion_coeff

Diffusion coefficient

0

-wind_type

Wind type in Advection (rotation, translation, boundary_layer)

rotation

-wind_translation

Constant wind vector when -wind_type translation

1,0,0

-E_wind

Total energy of inflow wind when -wind_type translation

1E6

J

-advection_ic_type

Initial condition type, (sphere, cylinder, cosine_hill, skew, wave, boundary_layer)

sphere

-advection_ic_bubble_rc

For sphere or cylinder IC, characteristic radius of thermal bubble

1000

m

-advection_ic_bubble_continuity

For sphere or cylinder IC, different shapes of bubble, (smooth, back_sharp, thick, cosine)

smooth

-advection_ic_wave_type

For wave IC, the wave form used for -advection_ic_type wave (sine, square)

sine

-advection_ic_wave_frequency

For wave IC, frequency of the wave

\(2\pi\)

1/s

-advection_ic_wave_phase

For wave IC, phase angle of the wave

0

-advection_ic_bl_height_factor

For boundary_layer IC, sets the height of the linear boundary layer initial condition in proportion to the domain height

1

For 3D advection, an example of the rotation mode can be run with:

./navierstokes -problem advection -dm_plex_box_faces 10,10,10 -dm_plex_dim 3 -dm_plex_box_lower 0,0,0 -dm_plex_box_upper 8000,8000,8000 -bc_wall 1,2,3,4,5,6 -wall_comps 4 -wind_type rotation -implicit -stab su

and the translation mode with:

./navierstokes -problem advection -dm_plex_box_faces 10,10,10 -dm_plex_dim 3 -dm_plex_box_lower 0,0,0 -dm_plex_box_upper 8000,8000,8000 -wind_type translation -wind_translation .5,-1,0 -bc_inflow 1,2,3,4,5,6

For 2D advection, an example of the rotation mode can be run with:

./navierstokes -problem advection -dm_plex_box_faces 20,20 -dm_plex_box_lower 0,0 -dm_plex_box_upper 1000,1000 -bc_wall 1,2,3,4 -wall_comps 4 -wind_type rotation -implicit -stab supg

and the translation mode with:

./navierstokes -problem advection -dm_plex_box_faces 20,20 -dm_plex_box_lower 0,0 -dm_plex_box_upper 1000,1000 -units_meter 1e-4 -wind_type translation -wind_translation 1,-.5 -bc_inflow 1,2,3,4

Note the lengths in -dm_plex_box_upper are given in meters, and will be nondimensionalized according to -units_meter.

The boundary layer problem can be run with:

./build/navierstokes -options_file examples/advection_bl.yaml

examples/advection_bl.yaml:

problem: advection
stab: supg
stab_tau: advdiff_shakib
degree: 1

units_kilogram: 1
units_meter: 1
units_second: 1

wind_type: boundary_layer
advection_ic_type: boundary_layer
diffusion_coeff: 5e-4

implicit:
ts:
  dt: 1e-2
  type: alpha
  alpha_radius: 1
  adapt_type: none
  max_steps: 200
  # monitor_solution: cgns:advection_wave.cgns
  # monitor_solution_interval: 1
snes:
  mf_operator:
  lag_jacobian: 100
  lag_jacobian_persists: true
dm_mat_preallocate_skip: false

dm_plex:
  dim: 2
  box_lower: 0,0
  box_upper: 1,0.5
  box_faces: 20,20
  shape: box
  box_bd: none,none
bc_wall: 1,2,3,4
wall_comps: 0,1,2,3,4

The wave advection problem can be run with:

./build/navierstokes -options_file examples/advection_wave.yaml

examples/advection_wave.yaml:

problem: advection
stab: supg
stab_tau: advdiff_shakib
degree: 1

units_kilogram: 1
units_meter: 1
units_second: 1

wind_type: translation
wind_translation: -0.7071067811865475,0.7071067811865475
advection_ic_type: wave
advection_ic_wave:
  type: square
  frequency: 17.771531752633464 # 8 pi / sqrt(2)
  phase: 0
diffusion_coeff: 0

ts:
  dt: 1e-3
  type: rk
  adapt_type: none
  max_steps: 100
  # monitor_solution: cgns:advection_wave.cgns
  # monitor_solution_interval: 5
dm_mat_preallocate_skip: true

dm_plex:
  box_lower: 0,0
  box_upper: 1,1
  box_faces: 20,20
  shape: zbox
  box_bd: periodic,periodic

Note that the wave frequency, velocity direction, and domain size are set specifically to allow bi-periodic boundary conditions.