pyAMPS#
Package authors: Karl M. Laundal et al.
Resources#
Python package: pyamps
Code
Documentation
Swarm Data Handbook
Laundal, K. M., Finlay, C. C., Olsen, N. & Reistad, J. P. (2018), Solar wind and seasonal influence on ionospheric currents from Swarm and CHAMP measurements, Journal of Geophysical Research - Space Physics. doi:10.1029/2018JA025387
%load_ext watermark
%watermark -i -v -p pyamps,numpy,matplotlib
Python implementation: CPython
Python version : 3.11.6
IPython version : 8.18.0
pyamps : 1.6
numpy : 1.26.2
matplotlib: 3.8.2
Example usage#
# initialize by supplying a set of external conditions:
from pyamps import AMPS
m = AMPS(
350, # Solar wind velocity in km
-4, # IMF By (GSM) in
-3, # IMF Bz (GSM) in n
20, # dipole tilt angle in degree
80, # F107_index
)
# make summary plot:
m.plot_currents()