The Piecewise Parabolic Method for Hydrodynamics

The Piecewise Parabolic Method for Hydrodynamics#

The PPM interface construction is more involved for hydrodynamics than advection because there are 3 characteristic waves. The basic overview of the method is:

  • Convert the conserved state, U to primitive variables, q

  • Reconstruct each of the primitive variables as a parabola.

    We first find the values of the parabola on the left and right edges of the zone, q,i and q+,i. This is done by defining a conservative cubic interpolant that passes through the 2 zones on each side of the interface. The unlimited version of this would be:

    qi+1/2=712(qi+qi+1)112(qi1+qi+2)

    we then use this value to set:

    q+,i=q,i+1=qi+1/2

    Working zone-by-zone, the values q,i and q+,i are then limited, and we define the parabolic reconstruction in zone i as:

    qi(x)=q,i+ξ(Δqi+q6,i(1ξ))

    where

    Δqi=q+,iq,i
    q6,i=6(qi12(q,i+q+,i))

    and

    ξ=xxi1/2Δx
  • Integrate under the parabola for the distance λi(ν)Δt for each of the characteristic waves ν: uc, u, and u+c. We define the dimensionless wave speed, σi(ν):

    σi(ν)=λ(ν)ΔtΔx

    From the right edge, we have:

    I+(ν)(qi)=1σi(ν)Δxxi+1/2σi(ν)Δxxi+1/2q(x)dx=q+,iσi(ν)2[Δqiq6,i(123σi(ν))]

    and from the left edge, we have:

    I(ν)(qi)=1σi(ν)Δxxi1/2xi1/2+σi(ν)Δxq(x)dx=q,i+σi(ν)2[Δqi+q6,i(123σi(ν))]
  • Define a reference state. We are going to project the amount of q carried by each wave into the characteristic variables and then sum up all of the jumps that move toward each interface. To minimize the effects of this characteristic projection, we will subtract off a reference state, q~:

    q~+,i=I+(+)(qi)
    q~,i=I()(qi)

    In each case, we are picking the fastest wave moving toward the interface.

  • Define the left and right states on the interfaces seen by zones i by adding up all of the jumps that reach that interface:

    qi+1/2,Ln+1/2=q~+ν;λ(ν)0li(ν)(q~+I+(ν)(qi))ri(ν)
    qi1/2,Rn+1/2=q~ν;λ(ν)0li(ν)(q~+I(ν)(qi))ri(ν)

    Notice that zone i gives the left state on interface i+1/2 and the right state on zone i1/2.

We then solve the Riemann problem using these state.