Mapping definition

Let the mapping of stretched mesh to uniform mesh be defined by X=Φ(Ξ)=(x(χ),y(η),z(ξ)). For demonstration purposes, we assume mapping only in the z-direction. Note that the normals to faces continue to be aligned with the grid axes.

We define the velocity

U=TU

where

T=J[ΞΦ]1

and

J=det[ΞΦ]

In our case T is

[zξ000zξ0001],J=(zξ),U=(zξu,zξv,w).

We can write the mesh spacing in X-space as

(xχdx,yηdy,zξdz)=(dx,dy,zξdz)

where (dx,dy,dz) are the mesh spacings in Ξ-space.

Handy identities

X=1JTTΞ
XA=1JΞ(TA)=1JΞ(A)

for any vector field A

Governing equations in stretched mesh space

JUt+(UMACΞ)U=J(Fb1ρTTJΞp)+μρΞ(1JTTTΞU),
Jρt+Ξ(ρUMAC)=0,
J(ρs)t+Ξ(ρsUMAC)=S,
ΞU=0,

MAC Projection

In the MAC projection we want to solve

X(1ρXp)=XUpred

then set

UMAC=Upred1ρXp

Mapping the above to uniform coordinates yields

Ξ(1JρTTTΞp)=ΞUpred

The MAC projection from AMReX will then return

UMAC=Upred1ρT(1JTTΞp)=Upred1JρTTTΞp

Nodal Projection

Analogously to the MAC projection we want to solve

Ξ(1JρTTTΞp)=TTΞ(Un+1,+1JTTΞpn1/2)=ΞUn+1,

where here Un+1,=TUn+1, is cell-centered with Un+1,=Un+1,+1JTTΞpn1/2. Note, although p is defined on the nodes, p is cell-centered.

We construct the divergence and gradient operators with a finite element approach, so the mapping enters in here via integrals over cell volumes. Thus we will only need zξ at cell centers; this is the same metric term used in the MAC projector.

As with the MAC projection we want to create Un+1,=TUn+1, as the velocity field we will send in to the nodal projector.

The nodal projection will return

Un+1=Un+1,1JρTTTΞp

Note that – unlike in the MAC projection – we want Un+1 rather than Un+1, so after the projection we must define

U=T1U

Initial conditions & computing the timestep

The initial conditions for any problem as well as any other global computations such as evaluating the CFL or the adaptive timestep size should be done so in the stretched coordinates.

Exceptions to the current implementation

  • As a first pass, the stretched mesh capability is implemented only for the MOL scheme.

  • The stretched mesh capability has been tested and verified only for single-level AMR meshes.

  • The mesh stretching capability requires the use of multi-component velocity solves by setting velocity_diffusion.use_tensor_operator = false

  • Efforts are underway to extend the capability beyond laminar physics.