-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement collision source terms for multi-ion MHD #2213
base: main
Are you sure you want to change the base?
Changes from 1 commit
23d74ec
f021401
9ef9542
e611c30
5dabad1
5c772f6
6104177
98949a4
02aca9b
0971c19
fde0b1d
51f651e
22bf32f
f6ad4f7
1b036f4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -175,6 +175,22 @@ divergence_cleaning_field(u, equations::AbstractIdealGlmMhdMultiIonEquations) = | |||||||
return rho | ||||||||
end | ||||||||
|
||||||||
@inline function pressure(u, equations::AbstractIdealGlmMhdMultiIonEquations) | ||||||||
B1, B2, B3, _ = u | ||||||||
p = zero(MVector{ncomponents(equations), real(equations)}) | ||||||||
for k in eachcomponent(equations) | ||||||||
rho, rho_v1, rho_v2, rho_v3, rho_e = get_component(k, u, equations) | ||||||||
v1 = rho_v1 / rho | ||||||||
v2 = rho_v2 / rho | ||||||||
v3 = rho_v3 / rho | ||||||||
v_mag = sqrt(v1^2 + v2^2 + v3^2) | ||||||||
gamma = equations.gammas[k] | ||||||||
p[k] = (gamma - 1) * | ||||||||
(rho_e - 0.5f0 * rho * v_mag^2 - 0.5f0 * (B1^2 + B2^2 + B3^2)) | ||||||||
end | ||||||||
return SVector{ncomponents(equations), real(equations)}(p) | ||||||||
end | ||||||||
|
||||||||
#Convert conservative variables to primitive | ||||||||
function cons2prim(u, equations::AbstractIdealGlmMhdMultiIonEquations) | ||||||||
@unpack gammas = equations | ||||||||
|
@@ -263,4 +279,165 @@ end | |||||||
|
||||||||
return SVector(cons) | ||||||||
end | ||||||||
|
||||||||
@doc raw""" | ||||||||
source_terms_collision_ion_ion(u, x, t, | ||||||||
equations::AbstractIdealGlmMhdMultiIonEquations) | ||||||||
|
||||||||
Compute the ion-ion collision source terms for the momentum and energy equations of each ion species as | ||||||||
```math | ||||||||
\begin{aligned} | ||||||||
\vec{s}_{\rho_k \vec{v}_k} =& \rho_k\sum_{k'}\bar{\nu}_{kk'}(\vec{v}_{k'} - \vec{v}_k),\\ | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I assume you have |
||||||||
s_{E_k} =& | ||||||||
3 \sum_{k'} \left( | ||||||||
\bar{\nu}_{kk'} \frac{\rho_k M_{1}}{M_{k'} + M_k} R_1 (T_{k'} - T_k) | ||||||||
\right) + | ||||||||
\sum_{k'} \left( | ||||||||
\bar{\nu}_{kk'} \rho_k \frac{M_{k'}}{M_{k'} + M_k} \norm{\vec{v}_{k'} - \vec{v}_k}^2 | ||||||||
\right) | ||||||||
+ | ||||||||
\vec{v}_k \cdot \vec{s}_{\rho_k \vec{v}_k}, | ||||||||
\end{aligned} | ||||||||
``` | ||||||||
where ``M_k`` is the molar mass of ion species `k` provided in `molar_masses`, | ||||||||
``R_k`` is specific gas constant of ion species `k` provided in `gas_constants`, and | ||||||||
``\bar{\nu}_{kk'}`` is the effective collision frequency of species `k` with species `k'`, which is computed as | ||||||||
```math | ||||||||
\begin{aligned} | ||||||||
\bar{\nu}_{kk'} = \bar{\nu}^1_{kk'} \tilde{B}_{kk'} \frac{\rho_{k'}}{T_{k k'}^{3/2}}, | ||||||||
\end{aligned} | ||||||||
``` | ||||||||
with the so-called reduced temperature ``T_{k k'}`` and the ion-ion collision constants ``\tilde{B}_{kk'}`` provided | ||||||||
in `ion_electron_collision_constants`. | ||||||||
|
||||||||
The additional coefficient ``\bar{\nu}^1_{kk'}`` is a non-dimensional drift correction factor proposed by Rambo and | ||||||||
Denavit. | ||||||||
Comment on lines
+521
to
+522
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
|
||||||||
References: | ||||||||
- P. Rambo, J. Denavit, Interpenetration and ion separation in colliding plasmas, Physics of Plasmas 1 (1994) 4050–4060. | ||||||||
- Schunk, R. W., Nagy, A. F. (2000). Ionospheres: Physics, plasma physics, and chemistry. | ||||||||
Cambridge university press. | ||||||||
Comment on lines
+524
to
+527
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you provide the DOI here? |
||||||||
""" | ||||||||
function source_terms_collision_ion_ion(u, x, t, | ||||||||
equations::AbstractIdealGlmMhdMultiIonEquations) | ||||||||
Comment on lines
+529
to
+530
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Out of curiosity: Could one re-use this for a 2 fluid (ion-electron) Euler-Poisson Plasma approximation? |
||||||||
s = zero(MVector{nvariables(equations), eltype(u)}) | ||||||||
@unpack gas_constants, molar_masses, ion_ion_collision_constants = equations | ||||||||
|
||||||||
prim = cons2prim(u, equations) | ||||||||
|
||||||||
for k in eachcomponent(equations) | ||||||||
rho_k, v1_k, v2_k, v3_k, p_k = get_component(k, prim, equations) | ||||||||
T_k = p_k / (rho_k * gas_constants[k]) | ||||||||
|
||||||||
S_q1 = 0 | ||||||||
S_q2 = 0 | ||||||||
S_q3 = 0 | ||||||||
S_E = 0 | ||||||||
for l in eachcomponent(equations) | ||||||||
rho_l, v1_l, v2_l, v3_l, p_l = get_component(l, prim, equations) | ||||||||
amrueda marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||
T_l = p_l / (rho_l * gas_constants[l]) | ||||||||
|
||||||||
# Reduced temperature | ||||||||
T_kl = (molar_masses[l] * T_k + molar_masses[k] * T_l) / | ||||||||
(molar_masses[k] + molar_masses[l]) | ||||||||
|
||||||||
delta_v2 = (v1_l - v1_k)^2 + (v2_l - v2_k)^2 + (v3_l - v3_k)^2 | ||||||||
|
||||||||
# Compute collision frequency without drifting correction | ||||||||
v_kl = ion_ion_collision_constants[k, l] * rho_l / T_kl^(3 / 2) | ||||||||
|
||||||||
# Correct the collision frequency with the drifting effect | ||||||||
z2 = delta_v2 / (p_l / rho_l + p_k / rho_k) | ||||||||
v_kl /= (1 + (2 / (9 * pi))^(1 / 3) * z2)^(3 / 2) | ||||||||
|
||||||||
S_q1 += rho_k * v_kl * (v1_l - v1_k) | ||||||||
S_q2 += rho_k * v_kl * (v2_l - v2_k) | ||||||||
S_q3 += rho_k * v_kl * (v3_l - v3_k) | ||||||||
|
||||||||
S_E += (3 * molar_masses[1] * gas_constants[1] * (T_l - T_k) | ||||||||
+ | ||||||||
molar_masses[l] * delta_v2) * v_kl * rho_k / | ||||||||
(molar_masses[k] + molar_masses[l]) | ||||||||
end | ||||||||
|
||||||||
S_E += (v1_k * S_q1 + v2_k * S_q2 + v3_k * S_q3) | ||||||||
|
||||||||
set_component!(s, k, 0, S_q1, S_q2, S_q3, S_E, equations) | ||||||||
end | ||||||||
return SVector{nvariables(equations), real(equations)}(s) | ||||||||
end | ||||||||
|
||||||||
@doc raw""" | ||||||||
source_terms_collision_ion_electron(u, x, t, | ||||||||
equations::AbstractIdealGlmMhdMultiIonEquations) | ||||||||
|
||||||||
Compute the ion-ion collision source terms for the momentum and energy equations of each ion species. We assume v_e = v⁺ | ||||||||
(no effect of currents on the electron velocity). | ||||||||
|
||||||||
The collision sources read as | ||||||||
```math | ||||||||
\begin{aligned} | ||||||||
\vec{s}^{ke}_{\rho_k \vec{v}_k} =& \rho_k \bar{\nu}_{ke} (\vec{v}_{e} - \vec{v}_k), | ||||||||
\\ | ||||||||
s^{ke}_{E_k} =& | ||||||||
3 \left( | ||||||||
\bar{\nu}_{ke} \frac{\rho_k M_{1}}{M_k} \underbrace{R_1}_{=1} (T_{e} - T_k) | ||||||||
\right) | ||||||||
+ | ||||||||
\vec{v}_k \cdot \vec{s}_{\rho_k \vec{v}_k}, | ||||||||
\end{aligned} | ||||||||
where ``\bar{\nu}_{kk'}`` is the collision frequency of species `k` with the electrons, which is computed as | ||||||||
```math | ||||||||
\begin{aligned} | ||||||||
\bar{\nu}_{ke} = \tilde{B}_{ke} \frac{e n_e}{T_e^{3/2}}, | ||||||||
\end{aligned} | ||||||||
``` | ||||||||
where ``e n_e`` is the total electron charge computed assuming quasi-neutrality, `T_e` is the electron temperature | ||||||||
computed with `electron_temperature` (see [`IdealGlmMhdMultiIonEquations2D`](@ref)), and ``\tilde{B}_{ke}`` is the | ||||||||
ion-electron collision coefficient provided in `ion_electron_collision_constants`. | ||||||||
|
||||||||
References: | ||||||||
- P. Rambo, J. Denavit, Interpenetration and ion separation in colliding plasmas, Physics of Plasmas 1 (1994) 4050–4060. | ||||||||
- Schunk, R. W., Nagy, A. F. (2000). Ionospheres: Physics, plasma physics, and chemistry. | ||||||||
Cambridge university press. | ||||||||
Comment on lines
+614
to
+617
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||||||||
""" | ||||||||
function source_terms_collision_ion_electron(u, x, t, | ||||||||
equations::AbstractIdealGlmMhdMultiIonEquations) | ||||||||
s = zero(MVector{nvariables(equations), eltype(u)}) | ||||||||
@unpack gas_constants, molar_masses, ion_electron_collision_constants, electron_temperature = equations | ||||||||
|
||||||||
prim = cons2prim(u, equations) | ||||||||
T_e = electron_temperature(u, equations) | ||||||||
T_e32 = T_e^(3 / 2) | ||||||||
|
||||||||
v1_plus, v2_plus, v3_plus, vk1_plus, vk2_plus, vk3_plus = charge_averaged_velocities(u, | ||||||||
equations) | ||||||||
|
||||||||
# Compute total electron charge | ||||||||
total_electron_charge = zero(real(equations)) | ||||||||
for k in eachcomponent(equations) | ||||||||
rho, _ = get_component(k, u, equations) | ||||||||
total_electron_charge += rho * equations.charge_to_mass[k] | ||||||||
end | ||||||||
|
||||||||
for k in eachcomponent(equations) | ||||||||
rho_k, v1_k, v2_k, v3_k, p_k = get_component(k, prim, equations) | ||||||||
T_k = p_k / (rho_k * gas_constants[k]) | ||||||||
|
||||||||
# Compute effective collision frequency | ||||||||
v_ke = ion_electron_collision_constants[k] * total_electron_charge / T_e32 | ||||||||
|
||||||||
S_q1 = rho_k * v_ke * (v1_plus - v1_k) | ||||||||
S_q2 = rho_k * v_ke * (v2_plus - v2_k) | ||||||||
S_q3 = rho_k * v_ke * (v3_plus - v3_k) | ||||||||
|
||||||||
S_E = 3 * molar_masses[1] * gas_constants[1] * (T_e - T_k) * v_ke * rho_k / | ||||||||
molar_masses[k] | ||||||||
|
||||||||
S_E += (v1_k * S_q1 + v2_k * S_q2 + v3_k * S_q3) | ||||||||
|
||||||||
set_component!(s, k, 0, S_q1, S_q2, S_q3, S_E, equations) | ||||||||
end | ||||||||
return SVector{nvariables(equations), real(equations)}(s) | ||||||||
end | ||||||||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a little inconsistent as there is
v_mag
but noB_mag
.