3-D ionospheric model plotting suite
Project description
PyGemini
A Python interface to Gemini3D, funded in part by NASA HDEE.
Setup
Python ≥ 3.7 is required. We recommend Python ≥ 3.8 in general for full features / robustness.
Setup PyGemini by:
git clone https://github.com/gemini3d/pygemini
pip install -e pygemini
build
Not all users need to run Gemini3D on the same device where PyGemini is installed.
PyGemini uses the "build on run" method developed by Michael Hirsch, which allows complex multi-language Python packages to install reliably across operating systems (MacOS, Linux, Windows).
Upon the first gemini3d.run()
, the underlying Gemini3D code is built, including all necessary libraries.
python -m gemini3d.prereqs
allows manually installing those libraries to save rebuild time, but this is optional as Gemini3D automatically downloads and builds missing libraries.
Developers
For those working with GEMINI Fortran code itself or to work with non-release versions of GEMINI Fortran code:
- install PyGemini in development mode as above
- set environment variable GEMINI_ROOT to the Gemini3D Fortran code directory, otherwise PyGemini will Git clone a new copy.
Run simulation
-
make a config.nml with desired parameters for an equilibrium sim.
-
run the equilibrium sim:
python -m gemini3d.run /path_to/config_eq.nml /path_to/sim_eq/
-
create a new config.nml for the actual simulation and run
python -m gemini3d.run /path_to/config.nml /path_to/sim_out/
Plots
An important part of any simulation is viewing the output. Because of the large data involved, most plotting functions automatically save PNG stacks to disk for quick flipping through with your preferred image viewing program.
Grid
Help ensure the simulation grid is what you intended by the following, which can be used before or after running the simulation.
import gemini3d.plot
gemini3d.plot.grid("path/to/sim")
simulation outputs
These commands create plots and save to disk under the "plots/" directory under the specified data directory.
command line:
python -m gemini3d.plot path/to/data -save png
or from within Python:
import gemini3d.plot as plot
plot.frame("path/to/data", datetime(2020, 1, 2, 1, 2, 3), saveplot_fmt="png")
# or
plot.plot_all("path/to/data", saveplot_fmt="png")
Convert data files to HDF5
There is a a script to convert data to HDF5, and another to convert grids to HDF5. The scripts convert from {raw, Matlab, NetCDF4} to HDF5. The benefits of doing this are especially significant for raw data, and HDF5 may compress by 50% or more, and make the data self-describing.
python scripts/convert_data.py h5 ~/mysim
python scripts/convert_grid.py h5 ~/mysim/inputs/simgrid.dat
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
File details
Details for the file gemini3d-1.3.0.tar.gz
.
File metadata
- Download URL: gemini3d-1.3.0.tar.gz
- Upload date:
- Size: 71.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd20af09a8230d71492ac70656dc80d55acdbb45db3131e704d45a1f14d14302 |
|
MD5 | 11c579f421f36d27224607d8bf109b6e |
|
BLAKE2b-256 | fb63a4eaf479eebaa92855c2d92c7f7f1d30ce76a5dec5101d4f9ac4f8e9d4a3 |