Skip to main content

Pyharp: Python-first High-performance Atmosphere Radiation Package

build License

Pyharp is the one-stop tool for calculating the radiation flux of planetary atmospheres, from terrestrial to giant planets. Detailed documentation and examples are available at https://pyharp.readthedocs.io.

Installation

Pyharp can be installed via pip:

pip install pyharp

We support Linux and Mac operation systems with Python version 3.10+.


Spectroscopy workflow

Pyharp also includes pyharp.spectra, a pure-Python spectroscopy workflow for HITRAN line data, HITRAN CIA data, single-state absorption spectra, transmittance products, diagnostic plots, and gas-mixture overview figures. The former standalone spectra library now lives under the pyharp.spectra namespace.

The main library entry points are available from pyharp.spectra:

from pathlib import Path

from pyharp.spectra import (
    AbsorptionSpectrum,
    SpectroscopyConfig,
    SpectralBandConfig,
    compute_absorption_spectrum,
)

band = SpectralBandConfig(
    name="single_state",
    wavenumber_min_cm1=20.0,
    wavenumber_max_cm1=2500.0,
    resolution_cm1=1.0,
)
config = SpectroscopyConfig(
    output_path=Path("output/h2o_absorption_300K_1bar.nc"),
    hitran_cache_dir=Path("hitran"),
    species_name="H2O",
)
spectrum: AbsorptionSpectrum = compute_absorption_spectrum(
    config=config,
    band=band,
    temperature_k=300.0,
    pressure_pa=1.0e5,
)

SpectroscopyConfig.hitran_cache_dir stores downloaded HITRAN line and CIA files. SpectroscopyConfig.output_path controls where NetCDF products are written by CLI helpers and is also used to create parent output directories.

H2O continuum calculations use the MT_CKD_H2O coefficient file at external/MT_CKD_H2O/data/absco-ref_wv-mt-ckd.nc relative to the Pyharp repository root. It is tracked as a Git submodule. Clone Pyharp with submodules to fetch it immediately:

git clone --recurse-submodules https://github.com/chengcli/pyharp

If you already cloned Pyharp, initialize the submodule from the repository root:

git submodule update --init --recursive external/MT_CKD_H2O

If you are using command line argument outside of pyharp, clone MT_CKD directly:

mkdir -p external && cd external && git clone https://github.com/AER-RC/MT_CKD_H2O

The pyharp-dump CLI writes NetCDF spectroscopy products for single species, CIA pairs, and gas mixtures:

pyharp-dump xsection --species H2O --temperature-k 300 --pressure-bar 1 --wn-range=20,2500
pyharp-dump xsection --pair H2-H2 --temperature-k 300 --pressure-bar 1 --wn-range=20,10000
pyharp-dump xsection --pair H2-H2 --cia-model xiz --h2-state eq --temperature-k 300 --pressure-bar 1 --wn-range=20,10000
pyharp-dump transmission --species H2O --path-length-km 1 --wn-range=20,2500

Use repeated --wn-range=min,max values to write one NetCDF file per band. When you also pass --output, pyharp appends _<wnmin>_<wnmax> to the requested stem for each generated file. Use --output-dir to place auto-generated filenames under a different directory without overriding the filename pattern. For state-grid dumps, the auto-generated state section is written as <min_temp>_<max_temp>K_<min_pres>_<max_pres>bar, where temperature bounds come from the full (temperature + del_temperature) grid. Use --temperature-k and --pressure-bar as paired comma-separated vectors, for example --temperature-k 300,400 --pressure-bar 1,10. Add --del-temperature-k to evaluate temperature anomalies around each base state, for example --del-temperature-k -10,-5,0,5,10. Dump outputs are written on (del_temperature, pressure, wavenumber), include a temperature(pressure) variable for the base temperatures, store the pressure coordinate in Pa, and still retain degenerate del_temperature and pressure dimensions when only one state is requested. Across pyharp.spectra, wavenumber ranges are interpreted as inclusive at both ends: --wn-range=20,22 with 1 cm^-1 resolution samples 20, 21, and 22. See the pyharp-dump CLI documentation for the full command reference, output naming conventions, and NetCDF schema.

Plotting diagnostics are available from one entry point, pyharp-plot. It provides CIA binary coefficient, molecular cross-section, attenuation, transmission, and overview plot subcommands:

pyharp-plot binary --pair H2-H2 --temperature-k 300 --wn-range=20,10000
pyharp-plot binary --pair H2-H2 --cia-model 2018 --h2-state eq --temperature-k 300 --wn-range=20,10000
pyharp-plot binary --pair H2-H2 --cia-model xiz --h2-state eq --temperature-k 300 --wn-range=20,10000
pyharp-plot xsection --species CO2 --temperature-k 300 --pressure-bar 1 --wn-range=20,2500
pyharp-plot attenuation --species CO2 --temperature-k 300 --pressure-bar 1 --wn-range=20,2500
pyharp-plot transmission --composition H2O:0.1,H2:0.9 --temperature-k 300 --pressure-bar 1 --path-length-km 1 --wn-range=25,2500
pyharp-plot overview --species H2O CO2 --temperature-k 300 --pressure-bar 1 --wn-range=20,2500 --wn-range=2500,10000

Use --pair for CIA pairs, --species for molecules, and --composition for gas mixtures such as H2O:0.1,H2:0.9. All plot commands accept --wn-range=min,max; overview accepts multiple --wn-range values for multi-page PDFs. These ranges include both endpoints, so adjacent repeated ranges such as 20,2500 and 2500,10000 both include 2500. Use --output to choose the output path. Without --output, plots are written under --output-dir (default output/) with names derived from the target, plot type, temperature, pressure, and wavenumber range. For plot commands that use pressure, --temperature-k and --pressure-bar also accept matched comma-separated vectors such as --temperature-k 300,400 --pressure-bar 1,10. pyharp-plot then runs one plot per (T,P) pair in parallel. For xsection, attenuation, and transmission, one explicit --output path reused across multiple state pairs is expanded with _<temperature>K_<pressure>bar suffixes. For overview, all state/range pages are combined into one PDF.

Molecular line calculations also accept --broadening-composition BROADENER:FRACTION,..., for example air:0.8,self:0.2 or H2:0.85,He:0.15. If a requested foreign broadener is unavailable in the HITRAN table for the active absorber, Pyharp falls back to air for that fraction.

CIA pair workflows now derive the backend directly from --cia-model:

  • --cia-model auto keeps the built-in HITRAN default filename mapping under hitran/
  • --cia-model 2011 resolves H2-H2_2011.cia or H2-He_2011.cia from HITRAN
  • --cia-model 2018 --h2-state eq|nm resolves H2-H2_eq_2018.cia or H2-H2_nm_2018.cia from HITRAN
  • --cia-model xiz|orton --h2-state eq|nm selects one of the legacy H2-H2 or H2-He tables under orton_xiz_cia/

If a requested HITRAN pair/model/state combination does not have a configured file, pyharp raises an error rather than silently falling back to another CIA dataset. HITRAN 2011 does not distinguish eq vs nm, while xiz and orton require an explicit H2 spin-state choice through --h2-state.

See the pyharp-plot CLI documentation for command-specific options and more examples.

Supported built-in HITRAN line species are CH4, CO2, H2, H2O, H2S, N2, and NH3. Built-in CIA pair resolution includes the self pairs for these species where HITRAN CIA data is configured, plus CO2-CH4, CO2-H2, H2-He, and N2-CH4.

pyharp.spectra does not provide a fixed reference-column radiative-transfer experiment. Use the core Pyharp radiative-transfer APIs for column RT calculations, and use pyharp.spectra for spectroscopy inputs, diagnostics, single-state products, and overview plots.


Development

If you want to further develop Pyharp, you will need to install it locally, which allows you to modify the source code and test. Open a Linux or Mac terminal and clone this repo using the following command:

git clone https://github.com/chengcli/pyharp

This will copy all source files into your local computer. You will need to install a few system libraries before installing Pyharp. All following instructions are executed under the pyharp/ directory.

System required for building locally

  • Python 3.10+
  • Linux or macOS
  • netCDF
  • python virtual environment (venv)

MacOS installation

brew install netcdf

RedHat installation

sudo yum install netcdf

Ubuntu installation

sudo apt-get install libnetcdf-dev

Build C++ library

After you completed the installation steps, you can build the pyharp library. We will build the package in-place, meaning that the build (binary files) are located under pyharp/build/bin. To do so, make a new directory named build

mkdir build

All build files will be generated and placed under this directory. It is completely safe to delete the whole directory if you want another build. cd to build and cmake

cd build
cmake ..

This command tells the cmake command to look for CMakeFiles.txt in the parent directory, and start configuring the compile environment. Then compile the code by

make -j4

This comman will use 4 cores to compile the code in parallel. Once complete, all executable files will be placed in build/bin.

Build python package locally (dev mode)

The python library can be installed by running the following command in the root directory:

pip install -e .

Test the installation

To test the installation, import pyharp in a python shell:

import pyharp

The build is successful if you do not see any error messages.


Contributing

Contributions are welcome! Please open an issue or PR if you’d like to:

  • Find a bug
  • Suggest new functions
  • Add examples
  • Improve documentation
  • Expand test coverage

Contact

Maintained by @chengcli — feel free to reach out with ideas, feedback, or collaboration proposals.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyharp-2.5.4-cp313-cp313-manylinux_2_27_x86_64.whl (32.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64

pyharp-2.5.4-cp313-cp313-macosx_15_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

pyharp-2.5.4-cp312-cp312-manylinux_2_27_x86_64.whl (32.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64

pyharp-2.5.4-cp312-cp312-macosx_15_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

pyharp-2.5.4-cp311-cp311-manylinux_2_27_x86_64.whl (32.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64

pyharp-2.5.4-cp311-cp311-macosx_15_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

pyharp-2.5.4-cp310-cp310-manylinux_2_27_x86_64.whl (31.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64

pyharp-2.5.4-cp310-cp310-macosx_15_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file pyharp-2.5.4-cp313-cp313-manylinux_2_27_x86_64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp313-cp313-manylinux_2_27_x86_64.whl
Algorithm Hash digest
SHA256 127e08765fdccded38b7142830b7e7753ba83bb316b713500c2fab4ca2ee9ec1
MD5 59b5b2517f1676d4c9b34b219b046bba
BLAKE2b-256 4c82094a4b2b8ddad13ee1f3437515e71073654609703eacc10912b47e940144

See more details on using hashes here.

File details

Details for the file pyharp-2.5.4-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c7ed735f743d53ab96bb5b6329d69ad4d4ba4c7200709601fa00d906fde62213
MD5 4e922bf9bcdbf0d3059b08d1b205b09f
BLAKE2b-256 3487fbde3796e55c22a0b9584b49d17cbc2725c288217d4bcf04a63f718a0d09

See more details on using hashes here.

File details

Details for the file pyharp-2.5.4-cp312-cp312-manylinux_2_27_x86_64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp312-cp312-manylinux_2_27_x86_64.whl
Algorithm Hash digest
SHA256 6c41f1c9d02f1ce523ee081031f0a7a32c55a917b9a07c787414ace1d7bdef49
MD5 144e975427336b12cd3536515d1e0fae
BLAKE2b-256 775b998ce5b90fa616ac916c7f4d311dca0de982264e8af62177a7f0cbc2ca49

See more details on using hashes here.

File details

Details for the file pyharp-2.5.4-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5808d4d064b19a0f6ac56980ac5c268e6efd4e645d9de84c5532f3662a43883e
MD5 c385cb76fb33b62e00291a9e113a2f32
BLAKE2b-256 9ca19c26f531c6717890ffa8e2586029f45dd82e5dde78af1a9823a4b5ba02d2

See more details on using hashes here.

File details

Details for the file pyharp-2.5.4-cp311-cp311-manylinux_2_27_x86_64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp311-cp311-manylinux_2_27_x86_64.whl
Algorithm Hash digest
SHA256 2d6a7d83b9a227185f03d3037acfedcf9682853d891e5172390d4e9061adcf47
MD5 cee59b94535798cfc68dd5dd854b0961
BLAKE2b-256 b8d779b6655278de2d309dd7efd8bcff61c1161e6d5d8748e17d72f74d41ddca

See more details on using hashes here.

File details

Details for the file pyharp-2.5.4-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f550a13e5bd3317ed70839d348a4b85462e8d799d53855bebdc1a96672b7c2ee
MD5 cb390ff1d32e567e57e3807bcebc1261
BLAKE2b-256 d8cdb20c6be0187c57427c7f2d9075f39b2b8e06fd4049f5a85160c8f08c4e72

See more details on using hashes here.

File details

Details for the file pyharp-2.5.4-cp310-cp310-manylinux_2_27_x86_64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp310-cp310-manylinux_2_27_x86_64.whl
Algorithm Hash digest
SHA256 a47d8efb8a1008e41ec52b97145c612a6e6b8c82f5b6a4517d38f0b58d0effcb
MD5 bfac6f5b1f1e9dd775a5db9832832154
BLAKE2b-256 d80598b782c7f8b88fd3cc493636b7bcfe1bc9e5b925062799804fc8cf49efdc

See more details on using hashes here.

File details

Details for the file pyharp-2.5.4-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyharp-2.5.4-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 97a3615a5323eba4bed14371f7dfa498cd22d52dd858f864a9d51835d6362fbd
MD5 8540b9f697f7f689af9a73b73f3e8fc6
BLAKE2b-256 d6f0f477b86524cfdca08c03e14d3eaa321058f92b020af01ed63ee899b2171c

See more details on using hashes here.

Release history Release notifications | RSS feed

2.5.7

8 files

This release

2.5.4 This release

8 files

2.5.2

8 files

2.5.0

8 files

2.4.8

8 files

2.4.6

8 files

2.4.5

8 files

2.4.4

8 files

2.4.0

8 files

2.3.9

8 files

2.3.8

8 files

2.3.7

8 files

2.3.6

4 files

2.3.5

8 files

2.3.4

8 files

2.3.2

4 files

2.3.1

8 files

2.3.0

8 files

2.2.0

8 files

2.0.5

8 files

2.0.4

8 files

2.0.2

10 files

2.0.1

10 files

2.0.0

10 files

1.10.1

8 files

1.9.5

5 files

1.9.3

10 files

1.9.0

10 files

1.8.8

10 files

1.8.7

10 files

1.8.6

10 files

1.8.5

10 files

1.8.1

10 files

1.7.8

10 files

1.7.7

10 files

1.7.6

10 files

1.7.4

10 files

1.7.2

10 files

1.7.1

10 files

1.7.0

5 files

1.6.8

10 files

1.6.7

10 files

1.6.6

10 files

1.6.4

10 files

1.6.3

10 files

1.6.2

10 files

1.6.1

10 files

1.5.2

10 files

1.5.1

10 files

1.5.0

5 files

1.4.3

5 files

1.4.2

10 files

1.3.15

10 files

1.3.14

1 file

1.3.13

2 files

1.3.12

5 files

1.3.11

5 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page