An intuitive, object-oriented and user-friendly Python implementation of a lumped conceptual HBV hydrological model for educational and research purposes.
Project description
HBV_Lab (Python implementation of a lumped conceptual HBV model)
HBV is a simple conceptual hydrological model that simulates the main hydrological processes related to snow, soil, groundwater, and routing [1]. There are many software packages and off-the-shelf products that implement different versions of it [2] [3].
I've been experimenting with the model lately and—in an endeavour to better understand the logic behind it—I decided to implement my own version—in Python, following an intuitive object-oriented programming approach.
This version implements the snow, soil, response and routing routines—controlled by 14 calibratable parameters as shown below—in addition to calibration and uncertainty analysis modules. See the documentation for one step of the model.
Conceptually the parameters belong to four routines:
parameters = {
'snow': ['TT', 'CFMAX', 'SFCF', 'CFR', 'CWH'],
'soil': ['FC', 'LP', 'BETA'],
'response': ['K0', 'K1', 'K2', 'UZL', 'PERC'],
'routing': ['MAXBAS'],
}
In the model object the parameters are stored in three groups—snow, soil, and
response—and the routing parameter MAXBAS lives inside the response group.
Each parameter is a dict with min / max / default values, so a custom update
passed to set_parameters looks like:
model.set_parameters({
'soil': {'FC': {'min': 50, 'max': 500, 'default': 250}},
'response': {'MAXBAS': {'default': 4}},
})
This can be flexibly used for different modelling tasks, but can also be used in a classroom setup—to explain hydrological concepts (processes, calibration, uncertainty analysis, etc.).
Get Started
Install the Package
From PyPI:
pip install HBV_Lab
Or, inside a notebook:
!pip install HBV_Lab
To work from the source / latest version:
git clone https://github.com/abdallaox/HBV_python_implementation.git
cd HBV_python_implementation
pip install -e .
How to Use
It is very intuitive—you create a model like an object which has attributes (data, parameters, initial conditions, etc.) that you can assign and access. The object also performs functions (calibration, uncertainty estimation, save, load, etc.)
import pandas as pd
from HBV_Lab import HBVModel
# 1. Load forcing data (a DataFrame with date, precipitation, temperature,
# potential ET and—optionally—observed discharge columns)
df = pd.read_excel("data/test_data_2.xlsx")
model = HBVModel()
model.load_data(
data=df,
date_column="Date", precip_column="P", temp_column="T",
pet_column="PET", obs_q_column="Q",
date_format="%Y%m%d", warmup_end="19811231",
)
# 2. (Optional) override default parameter ranges/values
# model.set_parameters({'soil': {'FC': {'default': 250}}})
# 3. Run, calibrate and analyse
model.run()
model.calibrate() # gradient-free optimisation by default
model.evaluate_uncertainty() # Monte-Carlo uncertainty analysis
model.plot_results()
# 4. Persist results and the model itself
model.save_results("results/run.csv")
model.save_model("models/my_model")
model = HBVModel.load_model("models/my_model")
Tutorial
Start by following a simple case study in the notebook: quick_start_guide.ipynb
Play with HBV
Get a feeling of how the model works and the role of the different parameters in HBVLAB—a playground that uses a model developed with this implementation.
References
[1] Bergström, S., & Forsman, A. (1973). Development of a conceptual deterministic rainfall-runoff model. Hydrology Research, 4, 147-170.
[2] Seibert, J., & Vis, M. J. P. (2012). Teaching hydrological modeling with a user-friendly catchment-runoff-model software package. Hydrology and Earth System Sciences, 16(9), 3315-3325. doi:10.5194/hess-16-3315-2012
[3] AghaKouchak, A., Nakhjiri, N., & Habib, E. (2013). An educational model for ensemble streamflow simulation and uncertainty analysis. Hydrology and Earth System Sciences, 17(2), 445-452. doi:10.5194/hess-17-445-2013
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 hbv_lab-1.1.0.tar.gz.
File metadata
- Download URL: hbv_lab-1.1.0.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cac55add91706ad3de25523845ed7a2de8dfafd60babff65e273bacf43f82fda
|
|
| MD5 |
9bb3f353c970d932f6dce5bf19d9eec9
|
|
| BLAKE2b-256 |
3011628f5f3f40f280b53fac3f2ea6df3a224eefe8503ff4b7e36ec1fad66e56
|
File details
Details for the file hbv_lab-1.1.0-py3-none-any.whl.
File metadata
- Download URL: hbv_lab-1.1.0-py3-none-any.whl
- Upload date:
- Size: 25.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff4cf3e187a0f5f5ac1e29a80e61ec99c6a830266ff20ce3342a83229ef9373e
|
|
| MD5 |
d6ac265d2d67a918a03b4a5e8f451806
|
|
| BLAKE2b-256 |
93eac5bbd417500e73c54a74e596953d6b65bbef13feb8cdf7909c0237a65013
|