Calculate an incoherent scatter spectrum with arbitrary isotropic electron velocity distributions and radar pointing at oblique angles to the magnetic field
Project description
INcoherent SCAtter Radar spectrum
Info
Calculates an incoherent scatter radar spectrum based on the theory presented in Hagfors (1961) and Mace (2003).
Installing
You can install inscar via pip from PyPI:
$ pip install inscar
Usage
Please see the Modules Reference for details.
Physical environment
The plasma parameters that are supported natively by the program are
Radar frequency [Hz]
This will also set the radar wave number (= -4pi(radar frequency)/(speed of light))
Magnetic field strength [T]
Aspect angle [1]
Electron temperature [K]
Ion temperature [K]
Electron collision frequency [Hz]
Ion collision frequency [Hz]
Electron mass in atomic mass units [u]
Ion mass in atomic mass units [u]
Electron number density [m^(-3)]
Ion number density [m^(-3)]
Kappa value for the kappa velocity distribution function [1]
Custom simulation set-ups can be made by inheriting from the different classes. Say you want a Particle class that also carries information about the temperature of a collection of super thermal electrons as well as some height information. You then inherit from Particle and decorate it with the @attr.s object:
@attr.s
class RealDataParticle(isr.Particle):
"""Create a particle object with extra attributes."""
superthermal_temperature: float = attr.ib(
default=90000,
validator=is_positive,
on_setattr=attr.setters.validate,
)
z: int = attr.ib(default=300)
For more examples, see the assets directory.
Calculation method
The program support different methods of calculating the spectrum, based on how you assume the particles to be distributed. This includes a Maxwellian distribution (IntMaxwell class) and a kappa distribution (IntKappa class), in addition to any arbitrary isotropic distribution (IntLong class) which can take any Vdf as particle velocity distribution (default is VdfMaxwell). An example showing how a new Vdf class can be made is given in assets (VdfRealData).
Aside
This program was developed during my master thesis. For a more detailed explanation of the mathematical derivations and an analysis of the numerical precision of the program, please refer to the thesis found at munin.uit.no.
Contributing
To contribute to the project, clone and install the full development version (uses rye for dependencies). Optionally, you may also install the pre-commit hooks to automatically format the code and run the tests before committing.
$ git clone https://github.com/engeir/inscar.git
$ cd inscar
$ rye install
$ pre-commit install
Before committing new changes to a branch you may run command
$ nox
to run the full test suite. You will need Rye and nox installed for this.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file inscar-3.3.2.tar.gz
.
File metadata
- Download URL: inscar-3.3.2.tar.gz
- Upload date:
- Size: 41.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00998ed396e799a865964913ede6ec2f18817ce0351226b715864f4fa102e55a |
|
MD5 | 50d914d8d63e0c94d464854b54d0af11 |
|
BLAKE2b-256 | 68fd0c8ee07c7e799f992da9467186656cd0c2686dbe9c9c93fcc1923518cfcf |
File details
Details for the file inscar-3.3.2-py3-none-any.whl
.
File metadata
- Download URL: inscar-3.3.2-py3-none-any.whl
- Upload date:
- Size: 14.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2ef14db3c478beabf8e38c2d9f91a6381458063ff6ffa22ec99e59aa23c53b0 |
|
MD5 | f9163052c6d9c0995507db7f5e995eb4 |
|
BLAKE2b-256 | 121a4bc8478e496835e0def3f6aa2a91756b665cf1701737b4d4acaf0b62ed1c |