[docs]
class DriftKineticElectrostaticAdiabatic(StruphyModel):
r"""Electrostatic drift-kinetic model for a single ion species with adiabatic electrons.
Evolves the guiding-center distribution :math:`f(\mathbf{X}, v_\parallel, \mu, t)` under
both the :math:`\mathbf{E}^* \times \mathbf{B}` drift and parallel streaming along the
background magnetic field. Electrons are not evolved kinetically; instead they contribute
through an adiabatic response term in the quasi-neutrality (Poisson) equation. The
optional control-variate method can be activated for the field solve.
Parameters
----------
base_units : BaseUnits
Base units for normalization (default: ``BaseUnits(kBT=1.0)``).
charge_number : int
Charge number (in units of the positive elementary charge) of the ion species (default: 1).
mass_number : float
Mass number (in units of the proton mass) of the ion species (default: 1.0).
epsilon : float, optional
Normalized inverse cyclotron frequency: :math:`1 / (\hat{\Omega}_\mathrm{c} \hat{t})`.
If ``None``, computed from ``base_units`` and the charge/mass numbers.
"""
@classmethod
def model_type(cls) -> LiteralOptions.ModelTypes:
return "Kinetic"
## species
class EMFields(FieldSpecies):
def __init__(self):
self.phi = FEECVariable(space="H1")
self.init_variables()
class KineticIons(ParticleSpecies):
def __init__(
self,
charge_number: int = 1,
mass_number: float = 1.0,
epsilon: float = None,
alpha: float = None,
):
self.var = PICVariable(space="Particles5D")
self.init_variables(
charge_number=charge_number,
mass_number=mass_number,
epsilon=epsilon,
alpha=alpha,
)
class Diagnostics(DiagnosticSpecies):
def __init__(
self,
):
self.rho = FEECVariable(space="H1")
self.init_variables()
## propagators
class Propagators:
def __init__(
self,
phi: FEECVariable = None,
rho: ParticlesToGrid = None,
epsilon: float = 1.0,
Z: int = 1,
diagnostic: FEECVariable | None = None,
):
self.gc_poisson = PoissonAdiabaticGyrokinetic(rho=rho, epsilon=epsilon, Z=Z, diagnostic=diagnostic)
self.push_gc_bxe = PushGuidingCenterBxEstar(phi=phi)
self.push_gc_para = PushGuidingCenterParallel(phi=phi)
## abstract methods
def __init__(
self,
base_units: BaseUnits = BaseUnits(kBT=1.0),
charge_number: int = 1,
mass_number: float = 1.0,
epsilon: float = None,
alpha: float = None,
use_diagnostic_poisson: bool = False,
):
# 0. store input parameters
self.params = copy.deepcopy(locals())
# 1. instantiate all species
self.em_fields = self.EMFields()
self.kinetic_ions = self.KineticIons(
charge_number,
mass_number,
epsilon,
alpha=alpha,
)
if use_diagnostic_poisson:
self.diagnostics = self.Diagnostics()
diagnostic = self.diagnostics.rho
else:
diagnostic = None
# 2. derive units (must be done after instantiating species to access charge and mass numbers)
self.setup_equation_params(base_units=base_units)
if epsilon is None:
epsilon = self.params["epsilon"] = self.kinetic_ions.var.species.equation_params.epsilon
# 3. instantiate all propagators
rho = ParticlesToGrid(
self.kinetic_ions.var,
"H1",
Pyccelkernel(accum_kernels_gc.gc_density_0form),
)
self.propagators = self.Propagators(
phi=self.em_fields.phi, rho=rho, epsilon=epsilon, Z=charge_number, diagnostic=diagnostic
)
# 4. assign variables to propagators
self.propagators.gc_poisson.variables.phi = self.em_fields.phi
self.propagators.push_gc_bxe.variables.ions = self.kinetic_ions.var
self.propagators.push_gc_para.variables.ions = self.kinetic_ions.var
# 5. define scalars to be tracked during simulation
field_energy = FunctionScalarFEEC(self._compute_en_phi)
phi_integral_ITGtest = FunctionScalarFEEC(self._compute_phi_integral_ITGtest)
particle_kinetic = KineticEnergyPIC(self.kinetic_ions.var)
particle_magnetic = FunctionScalarPIC(self._compute_en_particle_magnetic, self.kinetic_ions.var)
particle_energy = particle_kinetic + particle_magnetic
self.scalars = Scalars(
phi_integral=phi_integral_ITGtest,
en_phi=field_energy,
en_particles=particle_energy,
en_tot=field_energy + particle_energy,
)
@property
def bulk_species(self):
return self.kinetic_ions
@property
def velocity_scale(self):
return "thermal"
def allocate_helpers(self):
"""Solve initial Poisson equation.
:meta private:
"""
self._tmp3 = xp.empty(1, dtype=float)
self._e_field = Propagator.derham.V1.zeros()
self.propagators.gc_poisson(1.0)
# allocate temporary tabs for scalars computation
derham = self.em_fields.phi.spline.derham
self.phi_squared_averaged_feec = FEECVariable("H1")
self.phi_squared_averaged_feec.allocate(derham, self.em_fields.phi.spline.domain)
self.phi_squared = self.em_fields.phi.spline.vector.space.zeros()
self.phi_squared_average = self.em_fields.phi.spline.vector.space.zeros()
average_matrix_z = AverageOperator(derham, direction=2)
average_matrix_teta = AverageOperator(derham, direction=1)
self.average_matrix = average_matrix_z @ average_matrix_teta
def _compute_en_phi(self):
phi = self.em_fields.phi.spline.vector
epsilon = self.kinetic_ions.equation_params.epsilon
e1 = Propagator.derham.grad.dot(-phi, out=self._e_field)
en_phi1 = 0.5 * Propagator.mass_ops.M1gyro.dot_inner(e1, e1)
en_phi = 0.5 / epsilon**2 * Propagator.mass_ops.M0ad.dot_inner(phi, phi)
return en_phi + en_phi1
def _compute_phi_integral_ITGtest(self):
phi = self.em_fields.phi.spline.vector
self.phi_squared._data = phi._data**2
self.average_matrix.dot(self.phi_squared, out=self.phi_squared_average)
self.phi_squared_averaged_feec.spline.vector = self.phi_squared_average
return self.phi_squared_averaged_feec.spline(0.5, 0.5, 0.5)[0, 0, 0]
def _compute_en_particle_magnetic(self):
particles = self.kinetic_ions.var.particles
particles.save_magnetic_background_energy()
return 1 / particles.Np * xp.sum(particles.markers_wo_holes_and_ghost[:, 8])
## default parameters
def generate_default_parameter_file(self, path=None, prompt=True):
params_path = super().generate_default_parameter_file(path=path, prompt=prompt)
new_file = []
with open(params_path, "r") as f:
for line in f:
if "BaseUnits(" in line:
new_file += ["base_units = BaseUnits(kBT=1.0)\n"]
elif "saving_params = " in line:
new_file += ["\nbinplot = BinningPlot(slice='e1', n_bins=128, ranges=(0.0, 1.0))\n"]
new_file += ["saving_params = SavingParameters(binning_plots=(binplot,))\n\n"]
else:
new_file += [line]
with open(params_path, "w") as f:
for line in new_file:
f.write(line)
[docs]
@classmethod
def doc_pde(cls):
r"""**PDEs solved by model:**
Drift-kinetic equation:
.. math::
\frac{\partial f}{\partial t} + \left[ v_\parallel \frac{\mathbf{B}^*}{B^*_\parallel} + \frac{\mathbf{E}^* \times \mathbf{b}_0}{B^*_\parallel} \right] \cdot \frac{\partial f}{\partial \mathbf{X}} + \left[ \frac{1}{\varepsilon} \frac{\mathbf{B}^*}{B^*_\parallel} \cdot \mathbf{E}^* \right] \cdot \frac{\partial f}{\partial v_\parallel} = 0
Poisson equation:
.. math::
-\nabla_\perp \cdot \left( \frac{n_0}{|B_0|^2} \nabla_\perp \phi \right) + \frac{1}{\varepsilon} n_0 \left( 1 + \frac{1}{Z \varepsilon} \frac{1}{T_0} \phi \right) = \frac{1}{\varepsilon} \int f B^*_\parallel \, \textnormal{d} v_\parallel \textnormal{d} \mu
where :math:`f(\mathbf{X}, v_\parallel, \mu, t)` is the guiding center distribution and
.. math::
\mathbf{E}^* = -\nabla \phi - \varepsilon \mu \nabla |B_0|, \qquad \mathbf{B}^* = \mathbf{B}_0 + \varepsilon v_\parallel \nabla \times \mathbf{b}_0, \qquad B^*_\parallel = \mathbf{B}^* \cdot \mathbf{b}_0
The control variate method can be activated in the Poisson equation; if enabled, the following Poisson equation is solved:
.. math::
-\nabla_\perp \cdot \left( \frac{n_0}{|B_0|^2} \nabla_\perp \phi \right) + \frac{1}{Z \varepsilon^2} \frac{n_0}{T_0} \phi = \frac{1}{\varepsilon} \int (f - f_0) B^*_\parallel \, \textnormal{d} v_\parallel \textnormal{d} \mu
"""
[docs]
@classmethod
def doc_normalization(cls):
r"""The reference speed is the ion thermal speed and the electrostatic
fields are scaled accordingly:
.. math::
\hat v = \hat v_i,\qquad \hat E = \hat v_i \hat B,\qquad \hat\phi = \hat E \hat x.
The small parameter is :math:`\varepsilon = 1/(\hat\Omega_c\hat t)`."""
[docs]
@classmethod
def doc_scalar_quantities(cls):
r"""**The following scalars are tracked during simulation:**
- Field energy: ``en_phi``
- Guiding-center particle energy: ``en_particles``
- Total energy: ``en_tot``"""
[docs]
@classmethod
def doc_discretization(cls):
"""Time integration is performed by the following propagators (in sequence):
1. :class:`~struphy.propagators.implicit_diffusion.ImplicitDiffusion`
2. :class:`~struphy.propagators.push_guiding_center_bx_estar.PushGuidingCenterBxEstar`
3. :class:`~struphy.propagators.push_guiding_center_parallel.PushGuidingCenterParallel`
"""
doc = rf"""**1. ImplicitDiffusion:**
{PoissonAdiabaticGyrokinetic.__doc__}
**2. PushGuidingCenterBxEstar:**
{PushGuidingCenterBxEstar.__doc__}
**3. PushGuidingCenterParallel:**
{PushGuidingCenterParallel.__doc__}
"""
return doc
[docs]
@classmethod
def doc_long_description(cls):
r"""This model is an electrostatic drift-kinetic reduction for strongly
magnetized ions in a fixed magnetic equilibrium. Electrons are not
evolved kinetically; instead they enter through the adiabatic response
in the quasi-neutrality solve. The implementation supports control
variates for the field solve."""
[docs]
@classmethod
def doc_examples(cls):
r"""Create and initialize the drift-kinetic adiabatic-electron model:
.. code-block:: python
from struphy.models import DriftKineticElectrostaticAdiabatic
model = DriftKineticElectrostaticAdiabatic()
model.em_fields.phi
model.kinetic_ions.var
"""
[docs]
@classmethod
def doc_use_cases(cls):
r"""This model is appropriate for:
- electrostatic drift-kinetic ion turbulence studies
- strongly magnetized plasmas with adiabatic electrons
- guiding-center PIC verification in realistic magnetic geometry
- low-frequency regimes where full gyrophase resolution is unnecessary"""
[docs]
@classmethod
def doc_cannot_be_used_for(cls):
r"""This model is not suitable for:
- fully electromagnetic dynamics with evolving magnetic perturbations
- electron kinetic effects beyond the adiabatic closure
- problems that require resolving full cyclotron motion
- multi-species kinetic coupling without extending the model"""