Skip to content

symfluence-org/jHECHMS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jHECHMS

PyPI version License

Dual-backend (JAX + NumPy) implementation of native HEC-HMS hydrological algorithms — usable standalone or as a SYMFLUENCE plugin.

Part of the SYMFLUENCE JAX-native model family — self-contained packages that run standalone (NumPy fallback, no JAX required) and register automatically with SYMFLUENCE when installed alongside it.

Features

  • Differentiable: automatic differentiation through the full simulation (JAX)
  • Fast: JIT compilation via lax.scan; vmap for ensembles; GPU-capable
  • Dependency-light: pure-NumPy fallback when JAX is not installed
  • Plugin architecture: auto-registers with SYMFLUENCE via entry points

Installation

pip install jhechms          # NumPy backend
pip install 'jhechms[jax]'    # with JAX (differentiable, JIT)

Quickstart

from jhechms.model import simulate

flow, state = simulate(precip, temp, pet)                    # default parameters
flow, state = simulate(precip, temp, pet, params={"CN": 75}) # override any subset

Gradient-based calibration

The JAX backend makes the full simulation differentiable end-to-end, so model parameters can be calibrated with gradient descent:

import jax
from jhechms.losses import kge_loss, get_kge_gradient_fn

grad_fn = get_kge_gradient_fn(precip, temp, pet, observed)
value, grads = grad_fn(params)          # dKGE/dparam for every parameter

nse_loss / kge_loss and their gradient factories are JIT-compatible and work with any optax optimizer. Within SYMFLUENCE the same interface powers the ADAM and L-BFGS calibration options.

Use with SYMFLUENCE

jhechms registers with SYMFLUENCE through the symfluence.plugins entry point — installation is the integration:

pip install symfluence jhechms
# config.yaml (excerpt)
model:
  hydrological_model: HECHMS

SYMFLUENCE then handles forcing preparation, calibration, evaluation, and benchmarking for the model with no further wiring.

Model structure

The implementation follows the HEC-HMS Technical Reference Manual (US Army Corps of Engineers, 2000):

  1. Snow — ATI-based temperature-index snow model
  2. Loss — SCS Curve Number continuous method
  3. Transform — Clark unit hydrograph (linear reservoir)
  4. Baseflow — linear-reservoir groundwater

14 calibration parameters (jhechms.parameters.PARAM_BOUNDS).

Testing

pip install -e '.[dev]'
pytest

How to cite

If you use jHECHMS in your research, please cite the SYMFLUENCE companion papers, which describe the design of the JAX-native model family (registry integration, differentiability, and the calibration experiments they enable):

Eythorsson, D., et al. (2026). The registry as social contract: Architectural patterns for community hydrological modeling. Water Resources Research (submitted).

Eythorsson, D., et al. (2026). From configuration to prediction: Multi-model, multi-basin experiments with SYMFLUENCE. Water Resources Research (submitted).

Citation metadata for this package is provided in CITATION.cff; a version-specific DOI is minted via Zenodo for each GitHub release.

References

  • Feldman, A. D. (2000). Hydrologic Modeling System HEC-HMS: Technical Reference Manual. Report CPD-74B, U.S. Army Corps of Engineers, Hydrologic Engineering Center, Davis, CA.

License

Apache-2.0. See LICENSE.

About

HEC-HMS hydrologic model -- symfluence plugin

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors

Languages