Python Reader for Adaptive Mesh Interface Simulations
Project description
Pyramis: Python Reader for Adaptive Mesh Interface Simulations
A python library, to provide essential and efficient framework for management and analysis of the adaptive mesh simulation such as RAMSES.
Installing
Using pip
pip install pyramis
Using development mode
git clone https://github.com/sanhancluster/pyramis
cd pyramis
pip install -e .
Using conda
To create new conda environment specifically for Pyramis,
git clone https://github.com/sanhancluster/pyramis
cd pyramis
conda env create -f environment.yml
conda activate pyramis
python -m pip install -e .
If you want to install in an already existing environment,
git clone https://github.com/sanhancluster/pyramis
cd pyramis
conda activate <my_env_name>
conda env update -f environment.yml
python -m pip install -e .
How to use
Reading the RAMSES raw data
pyramis uses multi-threading (concurrent.futures.ThreadPoolExecutor) by default for reading RAMSES snapshot files. Number of workers will be automatically decided by the available resources when the package is imported.
The particle data
You can read particle data directly from specific region by following commands. Pyramis computes list of cpu domains to read the complete data within the region using Peano-Hilbert space filling curve.
import pyramis as pr
# path to the directory where output_* are located
ramses_path = '/path/to/ramses/'
# targeting box to read in code unit
region = [[0.4, 0.6], [0.4, 0.6], [0.4, 0.6]]
part = pr.ramses.read_part(ramses_path, iout=1, region=region) # reads output_00001
print(f"Total particle mass within the box is {np.sum(part['m'])}") # in code unit
For a particular type of particles, part_type option can be used.
part = pr.ramses.read_part(ramses_path, iout=1, part_type='star')
The cell data
You can read all cells from specific region by following commands.
# path to the directory where output_* are located
ramses_path = '/path/to/ramses/'
# targeting box to read in code unit
region = [[0.4, 0.6], [0.4, 0.6], [0.4, 0.6]]
cell = pr.ramses.read_cell(ramses_path, iout=1, region=region)
print(f"Mean gas density within the box is {np.mean(cell['rho'])}") # in code unit
Reading the RAMSES HDF format data
pyramis uses concurrent.futures.ProcessPoolExecutor by default to enable parallel read from HDF files. This requires main block guard for the top-level script.
The particle and cell data
if __name__ == '__main__':
# path to the directory where part_*.h5, cell_*.h5 are located
hdf_path = '/path/to/hdf/'
# targeting box in code unit
region = [[0.4, 0.6], [0.4, 0.6], [0.4, 0.6]]
part = pr.hdf.read_part(hdf_path, part_type='star', iout=1, region=region)
cell = pr.hdf.read_cell(hdf_path, iout=1, region=region)
Particle type (part_type) need to be always present for reading particle data.
Reading the Dyablo cell data
dyablo_path = '/path/to/dyablo/'
pr.dyablo.read_cell(dyablo_path, istep=0)
Reading the HaloMaker data
DM Halo and Galaxy Catalog
halomaker_path = '/path/to/halos/' # path the directory where tree_bricks* are located
halo = pr.halo_finder.read_halomaker(halomaker_path, iout=1)
galaxy = pr.halo_finder.read_halomaker(galaxymaker_path, iout=1, galaxy=True)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyramis-0.1.19.tar.gz.
File metadata
- Download URL: pyramis-0.1.19.tar.gz
- Upload date:
- Size: 61.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aab72a9ce51df4bbd4046118421744c64552a670c2ac714de6b0f7f574df7d63
|
|
| MD5 |
6742a3ab1e18da6ee1d8b559f6568da6
|
|
| BLAKE2b-256 |
a71b7cd072b3e962c2283f7cbce2565f3cf8ad057438b8d2c4f290be6e99ef1e
|
File details
Details for the file pyramis-0.1.19-py3-none-any.whl.
File metadata
- Download URL: pyramis-0.1.19-py3-none-any.whl
- Upload date:
- Size: 66.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44b96d1031164612d670d56d2f745dcb606d0f7bbba15a5a9616b1c3e93a6045
|
|
| MD5 |
4694059bb76f00412d9dd80f9070e3d8
|
|
| BLAKE2b-256 |
18ca5bdf89227213d6b10d73d3bb247a8d30a757af768fd5a326cb1d5b8a8e71
|