Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

KalmanFlow

KalmanFlow estimates an inflow contribution from noisy storage and measured discharge. It provides a three-state physical water-balance model, causal Kalman filtering, and fixed-lag Rauch–Tung–Striebel (RTS) smoothing for delayed inflow revisions.

The package is intentionally data-source agnostic: applications are responsible for parsing, cleaning, aligning, and persisting reservoir data.

Overview

Reservoir inflow is important for water-supply planning and flood-response operations, but it is often difficult to measure directly. A reservoir may receive water from many tributaries, drainage areas, or stormwater inputs, so installing and maintaining flow sensors at every inflow point is not practical.

Timestamped reservoir storage and outflow data can be used to infer a net balance contribution with reverse level-pool routing: if storage and accounted outflow are known, the residual contribution can be recovered from the water balance. Direct back-calculation, however, is sensitive to sensor noise and timing differences. Small storage or outflow errors can yield unrealistic inflow spikes or negative values.

KalmanFlow estimates a more stable inflow time series from those noisy observations. After the two-observation startup phase, a causal inflow is published as observations arrive; a later observation can provide an absolute, fixed-lag-smoothed replacement for that same timestamp. It also provides documented assumptions and reviewed noise parameters for a measurable, defensible deployment.

The reported inflow is the residual term in the supplied storage and outflow balance. It is a net balance contribution, not automatically gross watershed inflow. Measured outflow should cover outlet releases, spills, and outward diversions or withdrawals as applicable. Precipitation, evaporation, seepage, and other water exchanges are not separate model terms; account for them with separate justified inputs or treat them as model mismatch. Sensor bias, storage-datum changes, and rating-curve changes are also possible mismatch sources. The linear-Gaussian model has no nonnegativity constraint, so negative estimates remain possible.

Install

KalmanFlow requires Python 3.12 or newer.

pip install kalmanflow

For experimental Bayesian noise tuning, install the optional extra:

pip install "kalmanflow[tuning]"

The base installation supports filtering, smoothing, and frozen-configuration evaluation without SciPy or scikit-learn. Bayesian tuning is experimental: its API, selection rules, and result schema may change between releases.

For development in this repository:

uv sync --all-groups --extra tuning

The source distribution includes the library and its Documentation pages. The full test suite, application workflows, notebooks, and reservoir data remain in the GitHub development checkout; run the test commands there.

Quick start

Use OnlineReservoirInflow when observations arrive one at a time. Timestamps must be timezone-aware and no finer than microsecond precision; the first completed initialization emits estimates for its first finite-storage/discharge anchor and the next finite storage observation. The anchor estimate uses a steady-state inflow prior based only on its own outflow, so it never looks ahead to the second storage value.

from datetime import UTC, datetime, timedelta
from kalmanflow import Observation, OnlineReservoirInflow

stream = OnlineReservoirInflow(
    # Parameters are for demonstration only. (See Configuration docs)
    q_storage=1.0,
    q_inflow=1.0,
    q_outflow=1.0,
    r_storage=100.0,
    r_outflow=25.0,
    smoothing_lag=timedelta(hours=12),
)

stream.process(
    Observation(datetime(2026, 1, 1, tzinfo=UTC), storage=10_000.0, discharge=25.0)
)
update = stream.process(
    Observation(
        datetime(2026, 1, 1, 0, 15, tzinfo=UTC),
        storage=10_001.0,
        discharge=25.5,
    )
)

for estimate in update.filtered_inflows:
    print(estimate.timestamp, estimate.value, estimate.prediction_flag)

for revision in update.revised_inflows:
    # Replace the causal value at revision.timestamp; do not add a delta.
    print(revision.timestamp, revision.value, revision.smoothing_flag)

Primary APIs

API Use it when
get_reservoir_inflow You have aligned pandas storage and discharge series and use the default acre-ft/cfs model.
get_reservoir_inflow_from_config You have batch data and a validated ReservoirConfig.
OnlineReservoirInflow You process one reservoir’s observations as they arrive.
OnlineReservoirInflow.from_config You need a configured, checkpoint-capable streaming estimator.
OnlineInflowPipeline You are integrating a custom backend or smoother.
tune_inflow_noise_bayesian (experimental) You want to propose five diagonal q/r noise terms from causal innovation scores; requires kalmanflow[tuning].
evaluate_configuration You want to assess one frozen configuration on an untouched period without searching.
Notebook-local validation.py You want hourly proxy-agreement, lag, and storage-closure validation tables and plots.

Documentation

  • Architecture: modules, state-space model, units, and library boundaries.
  • Model behavior: input contract, initialization, missing values, and batch/streaming outputs.
  • Online pipeline: lifecycle, checkpoints, and failure behavior.
  • Configuration: complete configuration example, unit conventions, and parameter selection.
  • Validation: regular comparison frames, upstream-proxy metrics, lag selection, and storage closure.
  • Bayesian innovation noise tuning: five-parameter causal covariance search without true inflow labels.
  • API reference: every package-level export, plus the advanced module interfaces.

Requirements and units

Inputs must be pre-cleaned and indexed by unique, timezone-aware, strictly increasing timestamps with at most microsecond precision. Batch storage and discharge series must have exactly matching indexes. The default model uses acre-feet for storage and cfs for flow rates. Missing storage or discharge is represented by NaN; available components still participate in a partial update.

The default state is [storage, inflow_rate, true_outflow_rate]. Storage and measured outflow are model inputs, and true outflow is an internal state. The public API returns causal inflow followed by absolute revised inflow values; it never returns outflow estimates.

Development

uv run --extra tuning pytest
uv run ruff check .

Release files for kalmanflow 0.1.0a1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for kalmanflow 0.1.0a1
File Size Uploaded
kalmanflow-0.1.0a1.tar.gz 69.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for kalmanflow 0.1.0a1
File Interpreter ABI Platform
kalmanflow-0.1.0a1-py3-none-any.whl Python 3 none any Details

Total release size: 137.1 kB

Release files / kalmanflow-0.1.0a1.tar.gz

Download URL kalmanflow-0.1.0a1.tar.gz
Size 69.6 kB
Tags Source
SHA-256 checksum
How to use checksums
785b17f92e034892ce23ed9be15559dbe5a2de448e67dc4be0b84c77088f38e5
BLAKE2b-256 checksum
How to use checksums
f62c504bb1cdcd5e80232d4cba905d73a0229f3c4828ffade7f3cd4cac08149b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.12

Release files / kalmanflow-0.1.0a1-py3-none-any.whl

Download URL kalmanflow-0.1.0a1-py3-none-any.whl
Size 67.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
776d76c34f6402d86cd4381e02e633dda905184842730e3e647c90960a1e079c
BLAKE2b-256 checksum
How to use checksums
1aa2d844613ff54b096dc9477e995dc7c8ea27033c690f8fafc4a44079d7df15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.12
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page