BoltzmannCollisionIntegral.jl

Julia Evaluation of the Boltzmann Collision Integral for Relativistic, Anisotropic, Binary Interactions
Author cneverett
Popularity
1 Star
Updated Last
7 Days Ago
Started In
April 2024

BoltzmannCollisionIntegral.jl icon

BoltzmannCollisionIntegral.jl

Build Status

Overview

BoltzmannCollisionIntegral.jl is a Julia package for the evaluation of the relativistic Boltzmann collision integral for binary interactions $(12\rightleftharpoons34)$ (see Everett+Cotter 2024):

$$C(\boldsymbol{p}_3)=\int\frac{\mathrm{d}^3\boldsymbol{p}_1}{p_1^0}\frac{\mathrm{d}^3\boldsymbol{p}_2}{p_2^0}\frac{\mathrm{d}^3\boldsymbol{p}_4}{p_4^0}\left[\frac{f(\boldsymbol{p}_1)f(\boldsymbol{p}_2)}{1+\delta_{12}}W(p_1^\mu,p_2^\mu|p_3^\mu,p_4^\mu)- \frac{f(\boldsymbol{p}_3)f(\boldsymbol{p}_4)}{1+\delta_{12}}W(p_3^\mu,p_4^\mu|p_1^\mu,p_2^\mu)\right],$$

via momentum discretisation and Monte-Carlo sampling. The distribution functions $f(\boldsymbol{p})$ for the particles involved are assumed to be anisotropic (only axisymmetric is currently implemented). The collision integral is split into two components, an emission spectra dictating the rate of gain of particles emerging from a given binary interaction and an absorption spectra dictating the rate of loss of particles from the same interaction.

Evaluation is performed by assuming that the distribution function is constant over some set of discrete domains in phase space and then integrating over those domains using a Monte-Carlo method. For more information see the Documentation.

Evaluation currently supports both single and multithreaded operation (with multi-CPU acceleration planned). Data is exported in the JLD2 file format.

Since v2.0.0 the evaluation of synchrotron emissions from charged particles orbiting a uniform magnetic field directed along the symmetry axis is also supported. This is achieved via the integration of the following:

$$\left(\frac{\partial f(\boldsymbol{p}_1)}{\partial t}\right)_{Sync}=\frac{Z\mu^2}{B}\frac{3c^5\sigma_Tm_e^5}{4\pi\hbar^3\mu_0e^3}\int\mathrm{d}^3\boldsymbol{p}_2\frac{p_1}{p^0_2}\left[\left(\frac{p^0_2\cos\theta_1-p_2\cos\theta_2\cos\theta_1}{\sin\theta_1}\right)^2J_{\omega/\omega_0}(x)^2+(p_2\sin\theta_2)^2 J'_{\omega/\omega_0}(x)^2\right]f(\boldsymbol{p}_2).$$

Usage

BoltzmannCollisionIntegral.jl is available to download from the Julia package manager. Inside a Julia session, enter the package manager with ], then run the command

pkg> add BoltzmannCollisionIntegral

finally load the package by running

using BoltzmannCollisionIntegral

To perform an evaluation of the emission and absorption spectra, an example script Run_Integration.jl for selecting the binary interaction, discrete phase space bounds and integration conditions is located under the src/Common/ folder of the package. It is recommended to copy this script and place it in your working folder and edit the fields as required. Then simply run

include("Run_Integration.jl")

To perform an evaluation of the synchrotron emission spectra, an example script Run_Integration_Sync.jl for selecting the emitting particle, discrete phase space bounds and integration conditions is located under the src/Synchrotron/Common/ folder of the package. It is recommended to copy this script and place it in your working folder and edit the fields as required. Then simply run

include("Run_Integration_Sync.jl")

See Getting Started for in depth detail.

Used By Packages

No packages found.