Defines the equations of ideal compressible magnetohydrodynamics with divergence cleaning and an electron entropy equation:
Here, I is the identity matrix, Ptot=Pion+Pelectron=ρionϵion(γion−1)+ρelectronϵelectron(γelectron−1) is the total plasma pressure, ϵion,electron is the specific internal energy of ions and electrons and γion,electron is the adiabatic index (ratio of specific heats) for the ions and electrons. The quantity cfast corresponds to the fastest wave speed over the entire simulation domain; divergence errors are advected out of the domain with this speed.
In order to track the electron temperature, USim evolves the electron entropy, defined as:
Here, nelectron is the electron number density, melectron is the electron mass, mion is the ion mass and Z is the ion charge state. with the fluid velocity, u. In order to advect the electron entropy with the electron velocity, refer to twoTemperatureMhdDednerEqn. The method provided by simpleTwoTemperatureMhdDednerEqn is generally more robust and has lower computational cost than that provided by twoTemperatureMhdDednerEqn. If, for example, heating of electrons by (for example) magnetic dissipation is required, then this can be accomplished by adding source terms of the electron entropy equation, see, e.g. mhdSrc.
The electromagnetic fields are defined as:
Here, bplasma is the magnetic field induced in the plasma by the inductive electric field, e, while eexternal and bexternal are electromagnetic fields computed “externally” to the ideal magnetohydrodynamic equations.
basementPressure
(float, optional)basementDensity
(float, optional)gasGamma
(float, optional)electronGamma
(float, optional)electronMass
(float, optional)ionMass
(float, optional)chargeState
(float, optional)currentVector
(string, required)externalEfield
(string, optional)externalBfield
(string, optional)in
(string vector, required)Vector of Conserved Quantities
(nodalArray, 10-components, required)The vector of conserved quantities, q has 10 entries:
Fastest Wave Speed
(dynVector, 1-component, required)Externally Computed Electric Field
(nodalArray, 3-components, optional)Additional terms in the generalized Ohm’s law, Eexternal, computed “externally” to the ideal magnetohydrodynamic system. The data structure containing eexternal is specified by the “externalEField” option described below.
Externally Computed Magnetic Field
(nodalArray, 3-components, optional)Additional contribution to the magnetic field, bexternal, which is not evolved by the induction equation, but does contribute to the Lorentz force and the work done on the plasma. The data structure containing bexternal is specified by the “externalBField” option described below.
out
(string vector, required)For the mhdDednerEqn, one of four output variables are computed, depending on whether the equation is combined with an updater capable of computing fluxes (classicMusclUpdater (1d, 2d, 3d)), primitive variables (computePrimitiveState(1d, 2d, 3d)), the time step associated with the CFL condition (timeStepRestrictionUpdater (1d, 2d, 3d)) or the fastest wave speed in the grid (hyperbolic (1d, 2d, 3d)).
Vector of Fluxes
(nodalArray, 9-components)When combined with an updater that computes ∇⋅F(w) (e.g. classicMusclUpdater (1d, 2d, 3d)), the equation system returns:
Vector of Primitive States
(nodalArray, 9-components)When combined with an updater that computes w=w(q) (e.g. computePrimitiveState(1d, 2d, 3d)), the equation systen returns:
Time Step
(dynVector, 1-component)Fastest Wave Speed
(dynVector, 1-component)The following block demonstrates the simpleTwoTemperatureMhdDednerEqn used in combination with classicMusclUpdater (1d, 2d, 3d) to compute ∇⋅F(w)
<Updater hyper>
kind = classicMuscl1d
onGrid = domain
# input data-structures
in = [q,electricField]
# output data-structures
out = [qnew]
# the time integration scheme, rk1 for first order runge-kutta
timeIntegrationScheme = none
# the numerical flux to use
numericalFlux = roeFlux
# CFL number to use
cfl = 0.4
# Form of variables to limit
variableForm = primitive
# Limiter to use
limiter = [muscl,muscl]
waveSpeeds = [waveSpeed]
# list of equations to solve
equations = [mhd]
<Equation mhd>
kind = simpleTwoTemperatureMhdDednerEqn
gasGamma = GAS_GAMMA
electronGamma = $ELECTRON_GAMMA$
basementDensity = $BASEMENT_DENSITY$
basementPressure = $BASEMENT_PRESSURE$
externalEfield = "electricField"
</Equation>
</Updater>
The following block demonstrates the simpleTwoTemperatureMhdDednerEqn used in combination with computePrimitiveState(1d, 2d, 3d) to compute w(q)
<Updater computePrimitiveState>
kind = computePrimitiveState1d
onGrid = domain
# input data-structures
in = [q,electricField]
# ouput data-structures
out = [w]
<Equation mhd>
kind = simpleTwoTemperatureMhdDednerEqn
gasGamma = GAS_GAMMA
electronGamma = $ELECTRON_GAMMA$
basementDensity = $BASEMENT_DENSITY$
basementPressure = $BASEMENT_PRESSURE$
externalEfield = "electricField"
</Equation>
</Updater>
The following block demonstrates the simpleTwoTemperatureMhdDednerEqn used in combination with timeStepRestrictionUpdater (1d, 2d, 3d), hyperbolic (1d, 2d, 3d) and quadratic (1d, 2d, 3d) to compute dtmin, dtdiff and cfast for resistive two-temperature MHD:
<Updater getHypDT>
kind = timeStepRestrictionUpdater1d
in = [q,electricField]
onGrid = domain
waveSpeeds = [waveSpeed]
timeSteps = [diffDT]
restrictions = [idealMhd]
courantCondition = CFL
<TimeStepRestriction idealMhd>
kind = hyperbolic1d
cfl = CFL
model = simpleTwoTemperatureMhdDednerEqn
gasGamma = GAS_GAMMA
electronGamma = $ELECTRON_GAMMA$
correctNans = true
correct = true
correctNans = true
basementDensity = $BASEMENT_DENSITY$
basementPressure = $BASEMENT_PRESSURE$
externalEfield = "electricField"
storeTimeStep = False
</TimeStepRestriction>
</Updater>