JAX-based differentiable hydrological modeling framework implementing FUSE and routing
Project description
jFUSE: JAX Implementation of FUSE
A fully differentiable JAX implementation of the Framework for Understanding Structural Errors (FUSE) hydrological model from Clark et al. (2008), with Muskingum-Cunge routing.
Features
- Fully differentiable: Automatic differentiation through the entire model using JAX
- JIT-compiled: Fast execution with XLA compilation
- FUSE decision file compatible: Read standard FUSE decision files to configure model structure
- Muskingum-Cunge routing: Network-based streamflow routing with adaptive parameters
- Gradient-based calibration: Built-in calibration with optax optimizers
- GPU-ready: Seamless scaling to GPU with JAX
Requirements
- Python >= 3.9
- JAX >= 0.4.0
- equinox >= 0.11.0
- optax >= 0.1.7
- numpy
- xarray (for NetCDF I/O)
Installation
# Clone or download the package
git clone https://github.com/DarriEy/jFUSE.git
cd jfuse
# Install in development mode
pip install -e .
# Or install with all dependencies
pip install -e ".[dev]"
# Or install with PyPi
pip install jfuse # CPU
pip install jfuse[gpu] # CUDA
Command Line Interface
jFUSE provides a CLI compatible with FUSE file manager format:
# Run simulation
jfuse run fm_catch.txt bow_at_banff
# Run gradient-based calibration
jfuse run fm_catch.txt bow_at_banff --mode=calib --method=gradient
# Show file manager configuration
jfuse info fm_catch.txt
Download Example Data
We provide a ready-to-use example dataset for jFUSE (lumped and distributed setups).
Download the ZIP release asset and unzip it into a data/ folder:
wget https://github.com/DarriEy/jFUSE/releases/download/v0.1.0/jfuse-example-data-v0.1.0.zip
unzip jfuse-example-data-v0.1.0.zip
mv jfuse-example-data-v0.1.0 data
Lumped configuration example
This example calibrates a lumped jFUSE model using ERA5 forcing.
jfuse run \
data/domain_Bow_at_Banff_lumped_era5/settings/FUSE/fm_catch.txt \
Bow_at_Banff_lumped_era5 \
--mode=calib \
--method=gradient \
--loss=kge \
--lr=0.01 \
--epochs=500 \
--plot
Distributed configuration example
This example calibrates a distributed jFUSE model using a Muskingum–Cunge routing network.
jfuse run \
data/domain_Bow_at_Banff_distributed/settings/FUSE/fm_catch.txt \
Bow_at_Banff_distributed \
--mode=calib \
--method=gradient \
--network=data/domain_Bow_at_Banff_distributed/settings/mizuRoute/topology.nc \
--obs-file=data/domain_Bow_at_Banff_distributed/observations/streamflow/preprocessed/Bow_at_Banff_distributed_streamflow_processed.csv \
--loss=kge,nse \
--lr=0.01 \
--epochs=1000 \
--plot
Package Structure
jfuse/
├── src/jfuse/
│ ├── fuse/ # FUSE model implementation
│ │ ├── config.py # Model configuration & decision file parsing
│ │ ├── model.py # Main FUSE model
│ │ ├── state.py # States, parameters, forcing
│ │ └── physics/ # Physical process modules
│ ├── routing/ # Muskingum-Cunge routing
│ │ ├── muskingum.py # Routing physics
│ │ └── network.py # River network topology
│ ├── coupled.py # FUSE + routing integration
│ ├── optim/ # Calibration utilities
│ │ └── calibration.py # Gradient-based calibration
│ └── io/ # NetCDF I/O utilities
└── README.md
License
MIT License - see LICENSE file for details.
References
- Clark, M. P., et al. (2008). Framework for Understanding Structural Errors (FUSE). Water Resources Research, 44, W00B02.
- Cunge, J. A. (1969). On the subject of a flood propagation computation method (Muskingum method). Journal of Hydraulic Research, 7(2), 205-230.
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 jfuse-0.1.0.tar.gz.
File metadata
- Download URL: jfuse-0.1.0.tar.gz
- Upload date:
- Size: 58.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7f120c71f35f12b78dabcef20564c1b466d56a70fe17853e6431cd5636419b9
|
|
| MD5 |
2f156d36ebbc9933dc08ce980ed5e948
|
|
| BLAKE2b-256 |
0f15a8b86e43882abc9f32471d6ee52274d8f825fda1db15cd6613b5575d9a0a
|
File details
Details for the file jfuse-0.1.0-py3-none-any.whl.
File metadata
- Download URL: jfuse-0.1.0-py3-none-any.whl
- Upload date:
- Size: 62.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbe0ecc617094be383e4903f0096dcaad3b600167b059a5aaa0f3b43ddafd012
|
|
| MD5 |
ef8f52319d97610400a50487f68e3fbb
|
|
| BLAKE2b-256 |
ac39062a27e02aa2a326d8f80477594fcd44a9a175f3554c6e0671cb3f880c92
|