Euler Physics
Describe the equation being solved here
Where $q$ are the conservative variables and $F$ is the Euler flux.
where $\rho$ is density, $u$ is the x velocity, $v$ is the y velocity, $w$ is the z velocity and $e$ is the energy.
The calloricaly perfect ideal gas law is used to close the system (TODO ref calcPressure)
The x-y-z components of the Euler flux are:
TODO: describe the physical quantities (include units)
Discretizations
The code currently implements three kinds of discretizations.
The first is a standard discontinuous-Galerkin scheme using SBP operators and uses the numerical flux functions in flux functions section.
The second scheme is an entropy stable discretization that uses a Hadamard product between the SBP operator matrices and matrices of flux values. The face integrals for the entropy stable scheme are described on the face element integrals page.
The third scheme is a staggerd grid approach based on the entropy stable scheme. It uses all the same mechanics as the entropy stable scheme, but requires interpolating data back and forth between the solution and flux grids. The functions for doing the interpolation are listed on the relevent pages for the volume and face integrals.