Skip to main content
Pre-release

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

KalmanFlow

Status
Testing Tests
Package PyPI Python versions
License License

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)

Optional inflow uncertainty

Inflow uncertainty is opt-in. The default include_uncertainty=False keeps the existing six-column batch result, and streaming estimates expose standard_deviation=None. Set include_uncertainty=True on a batch adapter or stream constructor to include the inflow standard deviation calculated from the filter covariance:

from datetime import UTC, datetime, timedelta

import pandas as pd

from kalmanflow import (
    Observation,
    OnlineReservoirInflow,
    add_inflow_uncertainty_intervals,
    get_reservoir_inflow,
)

stream = OnlineReservoirInflow(
    q_storage=1.0,
    q_inflow=1.0,
    q_outflow=1.0,
    r_storage=100.0,
    r_outflow=25.0,
    smoothing_lag=timedelta(minutes=15),
    include_uncertainty=True,
)
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.value, estimate.standard_deviation)
    print(estimate.uncertainty_interval(level=0.95))

index = pd.date_range("2026-01-01", periods=3, freq="15min", tz="UTC")
storage = pd.Series([10_000.0, 10_001.0, 10_003.0], index=index)
discharge = pd.Series([25.0, 25.5, 26.0], index=index)
result = get_reservoir_inflow(
    storage,
    discharge,
    q_storage=1.0,
    q_inflow=1.0,
    q_outflow=1.0,
    r_storage=100.0,
    r_outflow=25.0,
    smoothing_lag=timedelta(minutes=15),
    include_uncertainty=True,
)
result_with_intervals = add_inflow_uncertainty_intervals(result, level=0.95)

The opt-in batch result appends estimated_inflow_standard_deviation and revised_inflow_standard_deviation. add_inflow_uncertainty_intervals returns a copy with lower and upper columns for both estimates. These are pointwise, model-based intervals for the net inflow contribution, in the same flow units as the estimate. Bounds are not clipped at zero. A revised record replaces both the earlier causal value and its standard deviation; unreleased revisions, including the trailing row, remain NaN.

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.
add_inflow_uncertainty_intervals You want normal-theory lower and upper interval columns for an opt-in batch result.
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.0a2

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.0a2
File Size Uploaded
kalmanflow-0.1.0a2.tar.gz 75.1 kB Details

Built distribution (wheel)

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

Total release size: 145.4 kB

Release files / kalmanflow-0.1.0a2.tar.gz

Download URL kalmanflow-0.1.0a2.tar.gz
Size 75.1 kB
Tags Source
SHA-256 checksum
How to use checksums
d9ed003423f4be26fbfd7f9a497d080d212fef04668f61e6b068c7aef78b77dd
BLAKE2b-256 checksum
How to use checksums
9c1a6bd26478d093831878b9bc868f0ea507ddf2e5b5d1f08bfe6e4c87d039f7
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.0a2-py3-none-any.whl

Download URL kalmanflow-0.1.0a2-py3-none-any.whl
Size 70.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
3c556884311deefc08507161d51efaae662d9a6ab1d3e1fbce277b2259929d1c
BLAKE2b-256 checksum
How to use checksums
68524a1fdbb3d991d95c650f7a66d8b2c83939a1a0ca85367c0e47cf48abe8ae
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