Primary Variables (6)¶
- \(\rho_{l}\) mass density of a species “l”
- \(\rho\,u_{x}\) x momentum density
- \(\rho\,u_{y}\) y momentum density
- \(\rho\,u_{z}\) z momentum density
- \(e\) energy density
- \(e_{e}\) electron energy density
Defines the equations of inviscid compressible hydrodynamics with separate electron and heavy particle energies:
Here, \(\mathbb{I}\) is the identity matrix, \(P\) is the total (heavy particle and electron) gas pressure and \(P_\mathrm{electron}\) is the electron pressure.
1st auxiliary variable is the total pressure
2nd auxiliary variable the electron pressure
3rd auxiliary variable is an estimate of the sound speed
basementPressure
(float) [0.0]
The minimum pressure allowed
basementDensity
(float) [0.0]
The minimum density allowed
Note
basementPressure and basementDensity are only used if correct=true
correct
(boolean) [true]
Tells whether or not densities or pressures should be corrected when the fall below basement pressures or basement densities. When set to true pressure=max(basementPressure, pressure) and density = max(basementDensity, density)
An example eulerTwoTemp equation block is given below::
equations = [euler]
<Equation euler>
kind = eulerTwoTemp
correct = false
</Equation>