Skip to main content

High-speed 1-D Method of Characteristics transient hydraulic solver (C++ core, Python API)

Project description

RTHYM-MOC

Tests Coverage PyPI Launch Binder

A high-performance 1-D Method of Characteristics (MOC) transient hydraulic solver with a C++17 core and a Python API via PyBind11. Originally developed as the engine behind the R-THYM web application, it is released here as a standalone, open-source library suitable for research scripting, parametric studies, and automated validation pipelines.

Contents


Overview

RTHYM-MOC solves the 1-D water-hammer equations using the Method of Characteristics with a fixed Courant number of 1.

Key characteristics:

  • Network-capable: arbitrary topologies of pipes, junctions, reservoirs, air valves, valves, pumps, standpipe surge tanks, hydropneumatic tanks, and turbines.
  • Time-varying events: valve schedules, pump trip/start, demand changes — specified either as discrete step changes between run() calls or as continuous piecewise-linear schedules registered before run().
  • Cavitation detection: integrates a column-separation flag (pressure < vapour pressure) at each node. Note: This is a first-order head-clamping model. It does not integrate or track vapor cavity volume over time or simulate column separation collapse surges (water column collision). For severe cavitation, a Discrete Vapor Cavity Model (DVCM) is recommended.
  • Study summaries: built-in helpers tun raw time series into node/pipe envelopes, cavitation duration, and CSV/JSON exports — see Post-processing & study reports.
  • Fast: on the standard Joukowsky case, the C++ core is roughly 200–400× faster than TSNet (pure Python) on typical hardware — see Benchmarking.
  • Validated: automated regressions against R-THYM exports, EPANET/wntr steady state, and analytical checks — Joukowsky first-step error < 0.05 %, wave period error < 0.2 % — see Validation.

Installation

Install from PyPI

pip install rthym-moc

Optional extras:

pip install 'rthym-moc[inp]'   # EPANET .inp import via wntr
pip install 'rthym-moc[dev]'    # pytest, ruff, mypy, etc.

Verify:

python -c "import rthym_moc; print(rthym_moc.__version__)"

Platforms: Linux, macOS, and Windows are supported (Python 3.9–3.12; see CI). Starting with releases built by the wheel-publishing workflow, prebuilt wheels are published for the most common platforms so most users do not need a local C++ compiler:

OS Wheel architecture Python
Linux x86_64 (manylinux) CPython 3.9–3.12
macOS x86_64, arm64 CPython 3.9–3.12
Windows AMD64 CPython 3.9–3.12

If no wheel is available for your platform, pip falls back to the source distribution and compiles the C++ extension locally. Source builds require a C++17 compiler:

OS Compiler
Linux GCC 9+ or Clang 10+ (build-essential on Debian/Ubuntu)
macOS Xcode Command Line Tools (Clang)
Windows Visual Studio Build Tools with the “Desktop development with C++” workload (MSVC 2019 or newer). Use a normal x64 Command Prompt or PowerShell, not WSL, when installing into Windows Python.

On Windows, if pip install rthym-moc falls back to a source build and fails with a compiler error, install the Build Tools, open a new terminal, and retry.

Requirements

Component Minimum version Notes
Python 3.9
NumPy 1.21 Installed automatically with rthym-moc
C++ compiler C++17 (GCC 9+, Clang 10+, MSVC 2019+) Only required when installing from source or when no wheel is available
CMake 3.15 Only for the standalone C++ test binary below
pybind11 2.11 Pulled automatically when building from PyPI or source

Install from source (development)

Clone the repository, then install in editable mode:

pip install -e .
# or with extras:
pip install -e '.[dev,inp]'

This compiles the C++ extension _rthym_moc and installs the rthym_moc package from your working tree. Rebuild after changing src/:

pip install -e .

To build the standalone C++ unit-test binary:

cmake -B build -DBUILD_TESTS=ON
cmake --build build
./build/moc_test

Maintainer WASM integration (internal)

The repository includes a maintainer-only Emscripten build path for validating src/wasm_bindings.cpp. This is separate from the supported Python package API and is not part of the public release workflow:

  • bindings live in src/wasm_bindings.cpp
  • the build script is build_wasm.sh
  • CI runs a binding smoke test in .github/workflows/wasm-regression.yml

The WASM surface exposes a stepwise integration API (initGrid, stepMOC, get_step_results) rather than the Python MOCSolver.run() batch workflow. Treat it as internal maintainer tooling, not a semver-stable public contract.

Build

Maintainers with Emscripten installed can run:

./build_wasm.sh

By default this writes:

build/wasm/rthym_moc.js
build/wasm/rthym_moc.wasm

Optional environment variables:

Variable Purpose
EMSDK_DIR Path to an emsdk checkout; the script sources emsdk_env.sh if em++ is not already on PATH
RTHYM_WASM_OUT_DIR Override the output directory (default: build/wasm)

Maintainer smoke test

./build_wasm.sh
RTHYM_ENABLE_WASM_RUNTIME_TESTS=1 pytest -q tests/test_wasm_check_valve.py

This checks that CheckValve runtime fields are exposed through the WASM bindings. It validates the binding contract only, not a downstream application integration.


Quickstart

[!TIP] You can run the quickstart and visual valve-closure verification interactively in your browser via Binder: Launch Binder

import numpy as np
import rthym_moc

# ── 1. Build network topology ─────────────────────────────────────────────────
solver = rthym_moc.MOCSolver()

# Upstream constant-head reservoir
solver.add_node(rthym_moc.NodeInput(
    id="R1", type="PressureBoundary",
    elevation=0.0, head=150.0          # ft HGL
))

# Inline valve (fully open at t=0, will be slammed shut)
solver.add_node(rthym_moc.NodeInput(
    id="V1", type="Valve",
    elevation=0.0, diameter=12.0,      # inches
    current_setting=0.0                # % open (0 = slammed shut at t=0)
))

# Downstream reservoir
solver.add_node(rthym_moc.NodeInput(
    id="R2", type="PressureBoundary",
    elevation=0.0, head=0.0
))

# Pipe: 3000 ft, 12-inch diameter, Hazen-Williams C = 130
solver.add_pipe(rthym_moc.PipeInput(
    id="P1",
    from_node="R1", to_node="V1",
    length=3000.0, diameter=12.0,
    roughness=130.0, flow_gpm=500.0    # initial steady-state flow
))
solver.add_pipe(rthym_moc.PipeInput(
    id="P2",
    from_node="V1", to_node="R2",
    length=100.0, diameter=12.0,
    roughness=130.0, flow_gpm=500.0
))

# ── 2. Run transient simulation ───────────────────────────────────────────────
results = solver.run(
    total_time=4.0,    # seconds
    dt=0.01,           # time step (seconds)
    p_vapor=-14.0,     # vapour pressure threshold (psi; negative = below atm)
    usf_tau=0.5        # unsteady-friction relaxation time constant (s)
)

# ── 3. Extract results ────────────────────────────────────────────────────────
t      = np.array(results["time"])          # shape (N,)  seconds
H_V1   = np.array(results["node_head"]["V1"])      # ft
P_V1   = np.array(results["node_pressure"]["V1"])  # psi
Q_P1   = np.array(results["pipe_flow_gpm"]["P1"])  # GPM

print(f"Joukowsky peak at V1: {H_V1.max():.1f} ft  at t = {t[H_V1.argmax()]:.3f} s")

Testing

Run the automated test suite from the repository root:

pytest -q

If you have changed the C++ core under src/, rebuild the extension before rerunning tests:

pip install -e .
pytest -q

To run the CI-aligned package quality checks locally:

ruff check rthym_moc
mypy rthym_moc

If you install the development extras, you can also run the configured pre-commit hooks:

pip install -e '.[dev,inp]'
pre-commit run --all-files

Examples

The repository includes runnable scripts and a notebook under examples/:

Script / notebook Purpose
basic_example.py Minimal Joukowsky quickstart with optional plotting
quickstart_notebook.ipynb Interactive reproducibility walkthrough (Binder-ready)
load_from_inp.py EPANET .inp import and transient event
transient_study_report.py Run a transient and export study summaries (CSV/JSON)
benchmark_vs_tsnet.py Single-case TSNet timing comparison
benchmark_matrix.py Multi grid-size TSNet performance matrix
benchmark_ptsnet_vs_tsnet.py rthym_moc vs TSNet vs PTSNet on the MPI-safe TNET3 case, with optional small surge cases
test_wave_reflections.py Wave period and damping verification
test_gradual_closure.py Joukowsky criterion and K-model valve closure
test_surge_tank.py Standpipe mass oscillation and pressure mitigation
verify_rthym_webapp.py Cross-check against R-THYM web-app export artifacts

For an interactive walkthrough focused on reproducibility and deterministic solver behavior, see examples/quickstart_notebook.ipynb.

Students and first-time users can launch that notebook in a browser via Binder without installing Jupyter locally:

Launch Binder

The first Binder launch can take a few minutes while the environment builds the compiled extension. After it opens, users can run the notebook directly in JupyterLab.

Contributing

Contributions are welcome for solver behavior, validation coverage, performance benchmarks, documentation, examples, and packaging improvements.

If you want to contribute, start with CONTRIBUTING.md for local setup, validation commands, and pull request expectations. MAINTENANCE.md documents the current review/refactor cadence. Report security issues privately via SECURITY.md (GitHub private vulnerability reporting or email). Bug reports are most useful when they include a minimal reproducible network or input file plus the exact commands and environment used to reproduce the issue.


API Reference

NodeInput

Describes a single network node. All fields have defaults; only id and type are strictly required.

node = rthym_moc.NodeInput()
node.id               = "J1"          # str — unique identifier
node.type             = "Junction"    # str — see table below
node.elevation        = 0.0           # ft above datum
node.head             = 100.0         # ft HGL  (Tank, PressureBoundary)
node.level            = 100.0         # % full  (Tank, derived/legacy compatibility)
node.max_level        = 20.0          # ft depth at 100 % full (Tank)
node.demand           = 0.0           # GPM withdrawal (Junction, OutflowNode)
node.current_setting  = 100.0         # % open (Valve, Turbine; 100 = fully open)
node.diameter         = 8.0           # inches (Valve orifice / Turbine runner; <= 0 is sanitized to 0.01)
node.current_speed    = 100.0         # % rated speed (Pump)
node.ramp_time        = 0.0           # s — VFD pump speed acceleration/deceleration limit (0 = instant)
node.has_power        = True          # electrical power available (Pump/Turbine; grid sync logic)
node.design_head      = 50.0          # ft at BEP (Pump/Turbine design head; <= 0 is sanitized to 50.0)
node.design_flow      = 100.0         # GPM at BEP (Pump/Turbine design flow; <= 0 is sanitized to 100.0)
node.design_velocity  = 0.0           # ft/s (Turbine; derived from design_flow if 0)
node.inertia_wr2      = 45.0          # lb·ft² — pump runner & motor rotational inertia
node.speed_rpm        = 1750.0        # RPM — rated speed of pump or turbine
node.efficiency       = 0.80          # 0.0 to 1.0 — pump or turbine BEP efficiency
node.closure_time     = 0.03          # s — CheckValve exponential close time (default 0.03)
node.closure_damping  = 0.0           # dimensionless CheckValve damping (optional)
node.flipped          = False         # CheckValve: reverse installed direction
node.air_release_head = 0.0           # ft vent reference above elevation (AirValve)
node.air_release_diameter = 0.25      # inches (AirValve small-orifice release port; <= 0 is sanitized to 0.01)
node.tank_area        = 10.0          # ft² cross-sectional area (Standpipe; <= 0 is sanitized to 1e-4)
node.gas_volume       = 10.0          # ft³ initial trapped gas / air-pocket volume
node.tank_volume      = 30.0          # ft³ total vessel or chamber volume
node.polytropic_n     = 1.2           # polytropic exponent (1.0 = isothermal, 1.4 = adiabatic)
node.loss_coeff_in    = 0.7           # C_d orifice coefficient for inflow / air admission
node.loss_coeff_out   = 0.7           # C_d orifice coefficient for outflow / air release

Node types

type string Boundary condition Key fields
"Junction" Kirchhoff continuity (demand sink) demand
"OutflowNode" As Junction, sign convention explicit demand
"InflowNode" Injects flow (demand treated as negative) demand
"PressureBoundary" Fixed total head at all times head
"Tank" Fixed HGL; head is authoritative, level is compatibility state head, level, max_level
"CheckValve" Inline one-way valve with optional exponential slam dynamics diameter, closure_time, closure_damping, flipped
"AirValve" Air-pocket valve with large admission port and small release port elevation, head, diameter, air_release_diameter, gas_volume, tank_volume, loss_coeff_in, loss_coeff_out, air_release_head
"Valve" Quadratic loss, $K = (100/s)^2 - 1$ current_setting, diameter
"PRV" Pressure reducing — holds downstream head setpoint (ft HGL) when regulating head, diameter
"PSV" Pressure sustaining — holds upstream head setpoint (ft HGL) when regulating head, diameter
"PBV" Pressure breaker — maintains differential head head (ft) across the valve head, diameter
"Turbine" Quadratic loss (design-curve K) current_setting, design_velocity, diameter
"Pump" Three-coefficient affinity curve current_speed, has_power, design_head, design_flow
"Standpipe" Open free-surface surge tank (level tracked each step) head, tank_area
"HydropneumaticTank" Closed pressurised vessel; gas follows polytropic law head, diameter, gas_volume, tank_volume, polytropic_n, loss_coeff_in, loss_coeff_out

For "Tank", prefer setting head directly. The level field is retained for compatibility with older code paths and is derived from head and max_level when EPANET networks are imported.

A dead-end boundary — equivalent to an instantaneously closed valve — is modelled as a "Junction" with demand = 0 and no outflow pipe attached. The MOC boundary condition then enforces $Q = 0$ exactly, giving $H = C^+$.

PipeInput

Describes a single pipe segment connecting two nodes.

pipe = rthym_moc.PipeInput()
pipe.id             = "P1"     # str — unique identifier
pipe.from_node      = "R1"     # str — upstream node id
pipe.to_node        = "J1"     # str — downstream node id
pipe.length         = 3000.0   # ft
pipe.diameter       = 12.0     # inches (<= 0 is sanitized to 0.01, and initial flow is overridden to 0)
pipe.roughness      = 120.0    # Hazen-Williams C (higher = smoother)
pipe.minor_loss     = 0.0      # dimensionless local-loss coefficient K
pipe.flow_gpm       = 500.0    # GPM, initial steady-state flow (+ = from→to)
pipe.wall_thickness = 0.25     # inches (used only if youngs_modulus > 0; <= 0 is sanitized to 0.01)
pipe.youngs_modulus = 0.0      # psi (0 = rigid pipe, default wave speed ~4000 ft/s)
pipe.poissons_ratio = 0.3      # (used only if youngs_modulus > 0)

pipe.minor_loss is a dimensionless local-loss coefficient $K$ for bends, tees, fittings, entrance/exit losses, or any other concentrated resistance you want associated with that pipe. During initialisation, the solver includes this term in the steady headloss,

$$H_{f,minor} = K \frac{V^2}{2g}$$

and during the transient it is applied as an added resistance contribution distributed across the pipe segments. That distribution is a practical MOC approximation of a lumped local loss, and the test suite now includes explicit benchmarks against an equivalent lumped-loss case.

Wave speed is computed intenally from the Korteweg–Joukowsky elastic formula when youngs_modulus > 0:

$$a = \sqrt{\frac{K_f/\rho}{1 + (K_f D)/(E,e)}}$$

where $K_f$ is the bulk modulus of water, $E$ is youngs_modulus, $D$ is the pipe diameter, and $e$ is wall_thickness. When youngs_modulus = 0, a rigid-pipe wave speed of 4720 ft/s is used as the starting point before Courant adjustment.

The solver automatically adjusts the wave speed so that $a_\text{adj} = L / (N_\text{segs} \cdot dt)$ exactly (Courant = 1), where $N_\text{segs} = \text{round}(L / (a \cdot dt))$.

MOCSolver

solver = rthym_moc.MOCSolver()
Method Description
solver.add_node(node) Append a NodeInput to the network.
solver.add_pipe(pipe) Append a PipeInput to the network.
solver.clear() Remove all nodes, pipes, and schedules.
solver.add_control_rule(rule) Register a dynamic operational control rule.
solver.clear_control_rules() Clear all registered control rules.
solver.get_node_head(id) Query the current piezometric HGL head (ft) of a node.
solver.get_node_pressure(id) Query the current gauge pressure (psi) of a node.
solver.set_valve_setting(id, pct_open) Change a valve's opening immediately (used between run() calls).
solver.set_pump_speed(id, pct_speed) Change a pump speed immediately.
solver.set_pump_power(id, has_power) Set pump electrical power (PCV shutdown vs outage).
solver.set_node_demand(id, demand_gpm) Change a junction demand immediately.
solver.set_node_head(id, head_ft) Change a fixed-head boundary's stored head between run() calls.
solver.set_valve_schedule(id, schedule) Register a time-varying valve schedule (see below).
solver.set_pump_schedule(id, schedule) Register a time-varying pump-speed schedule.
solver.set_demand_schedule(id, schedule) Register a time-varying junction demand schedule.
solver.set_head_schedule(id, schedule) Register a time-varying fixed-head schedule for a PressureBoundary or Tank.
solver.run(total_time, dt, p_vapor, usf_tau, k_bru) Execute the transient and retun results.

run() parameters

results = solver.run(
    total_time = 10.0,    # float, seconds — simulation duration
    dt         = 0.01,    # float, seconds — time step
    p_vapor    = -14.0,   # float, psi     — vapour pressure (negative = subatmospheric)
    usf_tau    = 0.5,     # float, seconds — unsteady-friction IIR time constant
                          #   set to dt to disable unsteady friction entirely
    k_bru      = -1.0,    # float — Brunone USF coefficient (see below)
)

k_bru (Brunone unsteady friction).

Value Behavior
-1 (default) Dynamic Vardy–Brown: coefficient computed each step from local Reynolds number
0 Steady friction only (no unsteady-friction correction)
> 0 User-supplied static coefficient (typical turbulent range: 0.02–0.15)

Each call to run() rebuilds the MOC grid from the steady-state initial conditions stored in the NodeInput / PipeInput objects. Node and pipe inputs persist across calls; call set_valve_setting() etc. before the next run() to change initial conditions for the next segment.

ControlRuleInput

Operational control rules are configured with ControlRuleInput and registered via solver.add_control_rule(). See Operational Controls & Event Logic for worked examples.

rule = rthym_moc.ControlRuleInput()
rule.id                  = "rule_id"       # str — unique rule identifier
rule.type                = rthym_moc.ControlType.Threshold  # Threshold | Deadband | PID | PCV
rule.monitored_node      = "J1"            # node whose quantity is observed
rule.controlled_node     = "V1"            # pump or valve node to actuate
rule.monitored_quantity  = "pressure"      # "pressure" | "head" | "level" | "flow"
rule.monitored_pipe      = "P1"            # required when monitored_quantity == "flow"
rule.condition           = "gt"            # Threshold: "lt" or "gt"
rule.threshold           = 45.0            # Threshold/Deadband/PCV trigger or ramp time (s)
rule.target              = 0.0             # Threshold/PID setpoint
rule.deadband            = 15.0            # Deadband width or PCV close-ramp time (s)
rule.action              = "fill"          # Deadband: "fill" or "drain"
rule.kp                  = 2.0             # PID proportional gain
rule.ki                  = 1.0             # PID integral gain
rule.kd                  = 0.1             # PID derivative gain

Results dictionary

run() retuns a Python dict whose values are NumPy arrays (zero-copy where possible):

t           = np.array(results["time"])                     # (N,) float64, seconds
H_node      = np.array(results["node_head"]["NODE_ID"])     # (N,) float64, ft
P_node      = np.array(results["node_pressure"]["NODE_ID"]) # (N,) float64, psi
Q_pipe      = np.array(results["pipe_flow_gpm"]["PIPE_ID"]) # (N,) float64, GPM
cav_flag    = np.array(results["node_cavitation"]["NODE_ID"])# (N,) int32, 0 or 1
valve_pct   = np.array(results["valve_setting"]["V1"])      # (N,) float64, % open (Valve/Turbine)
valve_pos   = np.array(results["valve_position"]["CV1"])    # (N,) float64, 0–1 (CheckValve position)
valve_vel   = np.array(results["valve_velocity"]["CV1"])   # (N,) float64, ft/s (CheckValve disc velocity)
pump_speed  = np.array(results["pump_speed"]["P1"])         # (N,) float64, % rated speed (Pump)
turbine_speed = np.array(results["turbine_speed"]["T1"])    # (N,) float64, % rated speed (Turbine)

Every node and every pipe that was added to the solver has a corresponding key in the respective sub-dictionary. node_head records the hydraulic grade line (HGL) at each node. node_cavitation is 1 for any time step at which the computed pressure fell below p_vapor.

valve_setting is recorded for Valve and Turbine nodes. valve_position and valve_velocity are recorded for CheckValve nodes during slam dynamics. pump_speed is recorded for Pump nodes. turbine_speed is recorded for Turbine nodes.

Post-processing & study reports

After run(), use the helpers in rthym_moc.report (re-exported at package root) to build engineering summaries without custom analysis code:

summary = rthym_moc.summarize_study(results)
print(rthym_moc.format_study_table(summary))

rthym_moc.export_study_json("study_summary.json", summary)
rthym_moc.export_study_csv("study_output", summary)  # node_envelopes.csv, pipe_flow_envelopes.csv, study_meta.json
Function Description
summarize_study(results, dt_s=None) Build a StudySummary dict with node head/pressure envelopes, pipe flow envelopes, cavitation duration, and run metadata
series_extrema(time_s, values) Min/max of any scalar series plus the times at which they occur
cavitation_summary(time_s, flags, dt_s=None) First occurrence, step count, and estimated duration from cavitation flags
format_study_table(summary) Plain-text table for logs or reports
export_study_json(path, summary) Write the full summary dict to JSON
export_study_csv(directory, summary) Write node and pipe envelope CSVs plus metadata JSON
head_to_pressure_psi(head_ft, elevation_ft) Convert piezometric head to gauge pressure (psi)
run_acceptance_checks(results, max_pressure_limit, min_pressure_limit, cavitation_time_threshold) Evaluate overpressure, subatmospheric, and cavitation duration limits
format_acceptance_report(checks) Format acceptance check results into a clean, human-readable text report
summarize_study_si(results, dt_s=None) Same as summarize_study, with head_m, pressure_kpa, and flow_m3s keys
study_summary_to_si(summary) Convert an existing US-customary StudySummary to SI
format_study_table_si(summary) Plain-text SI table for logs or reports
export_study_csv_si(directory, summary) Write SI envelope CSVs plus metadata JSON
head_to_pressure_kpa(head_m, elevation_m) Convert piezometric head to gauge pressure (kPa)

A StudySummary has three top-level keys:

  • metaduration_s, num_steps, dt_s
  • nodes[id]head_ft, pressure_psi (each an extrema dict with min, min_time_s, max, max_time_s), and optional cavitation (occurred, first_time_s, steps, duration_s)
  • pipes[id]flow_gpm extrema and times

For SI summaries, use summarize_study_si(results) — the structure is the same but node keys are head_m / pressure_kpa and pipe keys are flow_m3s. With run_si(), you can skip the separate results_to_si() step:

results_si = rthym_moc.run_si(solver, total_time=10.0, dt=0.01)
summary_si = rthym_moc.summarize_study_si(results_si)
rthym_moc.export_study_csv_si("study_output", summary_si)

See examples/transient_study_report.py for a complete CLI workflow:

python examples/transient_study_report.py --out study_output

Unit conventions

The solver's native API boundary uses US customary units:

Quantity Unit
Heads, elevations, lengths ft
Pressures psi
Flows GPM (US gallons per minute)
Pipe diameter, wall thickness inches
Wave speed ft/s
Time s
Valve / pump settings % (0 – 100)

These native units remain the internal solver contract for backward compatibility and for existing EPANET-derived workflows. SI projects can use the convenience helpers in rthym_moc.units (re-exported at package root) to build models and read results in metric units without changing the C++ core.

import rthym_moc as m

solver = m.MOCSolver()
solver.add_node(m.node_si("R1", "PressureBoundary", head_m=45.72))
solver.add_node(m.node_si("J1", "Junction", elevation_m=0.0, head_m=30.48))
solver.add_pipe(
    m.pipe_si(
        "P1",
        "R1",
        "J1",
        length_m=914.4,
        diameter_mm=304.8,
        roughness=130.0,
        flow_m3s=0.0315,
    )
)

results_si = m.results_to_si(solver.run(total_time=1.0, dt=0.01))
head_m = results_si["node_head_m"]["J1"]
flow_m3s = results_si["pipe_flow_m3s"]["P1"]

SI helper inputs use:

Quantity Helper unit
Heads, elevations, lengths m
Pressures retuned by results_to_si() kPa
Flows m^3/s
Pipe diameter, wall thickness mm
Wave speed / valve velocity outputs m/s
Young's modulus in pipe_si() Pa
Time and valve / pump settings unchanged (s, %)
Head / demand schedules m and m³/s via set_head_schedule_si() / set_demand_schedule_si()
Mid-simulation head / demand m and m³/s via set_node_head_si() / set_node_demand_si()
Cavitation threshold in run_si() kPa (DEFAULT_P_VAPOR_KPA ≈ −14 psi)
Live node queries m / kPa via get_node_head_si() / get_node_pressure_si()
EPANET override kwargs m / m³/s via load_inp_si()
[RTHYM] surge parameters follow EPANET Units (m², m³, mm when LPS, etc.)

SI API quick reference (all exported from rthym_moc):

Function Purpose
node_si, pipe_si Build NodeInput / PipeInput from SI kwargs
results_to_si Post-process a US run() results dict
run_si Run transient and return SI results dict
control_rule_si Build ControlRuleInput from SI thresholds/setpoints
set_head_schedule_si, set_demand_schedule_si Time-varying head (m) / demand (m³/s)
set_node_head_si, set_node_demand_si Point updates between runs
get_node_head_si, get_node_pressure_si Query current head / pressure
load_inp_si EPANET import with SI override kwargs
summarize_study_si, export_study_csv_si, … SI study reports
convert_head_schedule_si, convert_demand_schedule_si Convert schedule lists without calling the solver
length_m_to_ft, flow_m3s_to_gpm, … Scalar conversion helpers

Common conversion constants and helpers are exported for convenience:

rthym_moc.GPM_TO_CFS   # = 0.002228  (multiply GPM to get ft³/s)
rthym_moc.G_FT_S2      # = 32.2      (ft/s²)
rthym_moc.PSI_TO_FT    # = 2.307692… (multiply psi to get ft of head)
rthym_moc.M_TO_FT
rthym_moc.GPM_TO_M3S
rthym_moc.PSI_TO_KPA
rthym_moc.length_m_to_ft(10.0)
rthym_moc.flow_gpm_to_m3s(500.0)

See examples/si_quickstart.py for a complete SI-first example.

SI control rules use control_rule_si() with quantity-specific keywords (threshold_kpa, threshold_m, threshold_m3s, threshold_pct, setpoint_kpa, …). For ControlType.Threshold, pass the controlled device setting as target_pct (0–100). For ControlType.PCV, use threshold_s and deadband_s for valve ramp times. PID gains (kp, ki, kd) are passed through unchanged — retune when switching from US-customary rules.

SI time-varying boundaries:

m.set_head_schedule_si(solver, "R1", [(0.0, 30.48), (0.4, 45.72)])      # head m
m.set_demand_schedule_si(solver, "J1", [(0.0, 0.0), (1.0, 0.0315)])    # demand m³/s
m.set_node_head_si(solver, "R1", 36.576)
m.set_node_demand_si(solver, "J1", 0.0126)

Valve and pump schedules remain dimensionless (time_s, pct) — use set_valve_schedule() and set_pump_schedule() directly.

Run, query, and EPANET overrides:

results_si = m.run_si(solver, total_time=1.0, dt=0.01, p_vapor_kpa=-96.5)
head_m = m.get_node_head_si(solver, "J1")
pressure_kpa = m.get_node_pressure_si(solver, "J1")

solver = m.load_inp_si(
    "network.inp",
    initial_flows_m3s={"P1": 0.0315},
    initial_heads_m={"J1": 30.48},
    stub_length_m=12.192,
)

run_si() defaults p_vapor_kpa to the same full-vacuum threshold as run(..., p_vapor_psi=-14.0) (see DEFAULT_P_VAPOR_KPA).


Valve model

The solver uses a quadratic loss model:

$$K(s) = \left(\frac{100}{s}\right)^2 - 1, \qquad s \in (0, 100]$$

where $s$ is the valve opening in percent. This is consistent with a generic butterfly/globe valve where the discharge coefficient scales as $C_d \propto s/100$. The minimum clamp is $s = 10^{-6}$%, giving $K \approx 10^{16}$ (effectively zero flow).

Important implication for gradual-closure studies. Because $K$ grows as $1/s^2$, the valve does not significantly restrict flow until $s$ approaches a critical value

$$s_\text{crit} = \frac{100}{\sqrt{K_\text{pipe}+1}}$$

where $K_\text{pipe} = H_f / (V_0^2/2g)$ is the pipe's equivalent loss coefficient at the initial steady-state flow. The effective closure time

$$T_\text{eff} \approx \frac{T_c}{\sqrt{K_\text{pipe}+1}}$$

is the interval during which most of the flow stoppage actually occurs. A linear setting schedule satisfies the Joukowsky criterion ($\Delta H = aV_0/g$) whenever $T_\text{eff} < 2L/a$, regardless of the nominal stroke time $T_c$.


Valve closure types

Four closure profiles are supported. All are passed to the solver via set_valve_schedule() as a list[tuple[float, float]] of (time_s, pct_open) pairs. The solver linearly interpolates between breakpoints at each time step; any time beyond the last point holds the final value.

Type Description Required parameters
Linear Constant-rate closure over a stroke time stroke_time
Equal-Percentage Geometric-series decay; each step removes a fixed fraction of remaining opening stroke_time, step_interval
Two-Stage Fast stage to a transition point, then slow stage to zero transition_pct, stage1_time, stage2_time
Custom Arbitrary piecewise-linear profile from a user-supplied (t_offset, pct_open) table user-supplied table

Linear

Valve closes at a constant rate from the initial opening to fully closed over the stroke time. Models motor-operated gate valves and ball valves driven at constant actuator speed.

import numpy as np

s0, T_c, dt = 100.0, 3.0, 0.01
t_vals   = np.arange(0.0, T_c + dt, dt)
pct_open = np.clip(s0 * (1.0 - t_vals / T_c), 0.0, s0)
solver.set_valve_schedule("V1", list(zip(t_vals.tolist(), pct_open.tolist())))

Equal-Percentage

Each closure step removes a fixed fraction of the remaining opening (geometric series). Models equal-percentage trim control valves running at constant actuator speed.

s0, stroke_time, step_interval = 100.0, 2.0, 0.05
N     = round(stroke_time / step_interval)
ratio = (0.05 / s0) ** (1.0 / (N - 1))      # geometric decay toward near-zero
steps     = [s0 * ratio**i for i in range(N)] + [0.0]
t_offsets = [i * step_interval for i in range(N + 1)]
solver.set_valve_schedule("V1", list(zip(t_offsets, steps)))

Two-Stage

A programmed actuator changes its closure rate at a pre-set transition opening. Stage 1 closes quickly from the initial opening to the transition point; Stage 2 closes slowly from the transition point to fully closed.

Key design rule: Stage 2 time should satisfy $T_{\text{stage2}} \geq 2L/a$ so that the Joukowsky wave retuns before closure completes, reducing the peak pressure rise.

s0, trans_pct = 100.0, 15.0
stage1_time, stage2_time = 3.0, 30.0        # stage2 >= 2L/a recommended
schedule = [
    (0.0,                           s0),
    (stage1_time,                   trans_pct),
    (stage1_time + stage2_time,     0.0),
]
solver.set_valve_schedule("V1", schedule)

Custom

User-supplied arbitrary piecewise-linear closure profile. Intended for importing actuator data sheets or field-measured closure curves. Time values are absolute simulation times.

schedule = [
    (0.00, 100.0),
    (0.20,  50.0),
    (0.80,  10.0),
    (1.50,   0.0),
]
solver.set_valve_schedule("V1", schedule)
results = solver.run(total_time=5.0, dt=0.01)

Operational Controls & Event Logic

In addition to static time-varying schedules, the solver supports active, state-based operational controls evaluated at each time step ($dt$) inside the core engine. This allows simulating realistic system responses to dynamic transient events (e.g., pressure-relief valve opening, tank level control, variable speed pump modulation).

Control rules are registered using ControlRuleInput and added via solver.add_control_rule(). For SI thresholds and setpoints, use control_rule_si() instead — see Unit conventions.

Control Types

The solver supports four control strategies (rthym_moc.ControlType):

  1. Threshold: Switches a pump's speed or a valve's opening to a target value when a monitored quantity (pressure, head, level, or flow) crosses a threshold (with "lt" or "gt" conditions). Use monitored_pipe when monitored_quantity == "flow".
  2. Deadband: Maintains a level or pressure within a range ([threshold, threshold + deadband]) using "fill" or "drain" logic, switching a controlled pump/valve ON ($100%$) or OFF ($0%$).
  3. PID: Continuously modulates a pump's speed or valve's open percentage using a proportional-integral-derivative feedback loop. Includes bumpless transfer initialization and anti-windup clamping.
  4. PCV (Pump Control Valve): Interlocks a pump and its discharge control valve (ramping the valve open over threshold seconds when the pump starts and has power; ramping the valve closed over deadband seconds when the pump command stops. With has_power=True (default), the pump stays at command speed until the valve is closed; with has_power=False, physical speed drops to 0 immediately for a power-outage trip).

Example Configurations

1. Threshold Control (Slam Valve Closed on High Pressure)

rule = rthym_moc.ControlRuleInput()
rule.id = "valve_safety"
rule.type = rthym_moc.ControlType.Threshold
rule.monitored_node = "J1"
rule.controlled_node = "V1"
rule.monitored_quantity = "pressure"
rule.condition = "gt"
rule.threshold = 45.0  # psi
rule.target = 0.0      # slam shut (0% open)

solver.add_control_rule(rule)

2. Deadband Control (Pump Fill Cycle on Tank Level)

rule = rthym_moc.ControlRuleInput()
rule.id = "tank_fill"
rule.type = rthym_moc.ControlType.Deadband
rule.monitored_node = "T1"
rule.controlled_node = "Pmp1"
rule.monitored_quantity = "level"
rule.threshold = 40.0  # low limit (40% full)
rule.deadband = 20.0   # range (high limit = 40 + 20 = 60% full)
rule.action = "fill"   # start pump on low limit, stop on high limit

solver.add_control_rule(rule)

3. PID Control (Variable Speed Pump Regulating Pressure)

rule = rthym_moc.ControlRuleInput()
rule.id = "pressure_reg"
rule.type = rthym_moc.ControlType.PID
rule.monitored_node = "J2"
rule.controlled_node = "Pmp2"
rule.monitored_quantity = "pressure"
rule.target = 30.0     # target setpoint (30.0 psi)
rule.kp = 2.0
rule.ki = 1.0
rule.kd = 0.1

solver.add_control_rule(rule)

4. PCV Sequencing (Pump & Valve Interlock)

rule = rthym_moc.ControlRuleInput()
rule.id = "pump_valve_seq"
rule.type = rthym_moc.ControlType.PCV
rule.monitored_node = "Pmp1"   # pump to monitor
rule.controlled_node = "V1"    # control valve to sequence
rule.threshold = 10.0          # open ramp time (seconds)
rule.deadband = 15.0           # close ramp time (seconds)

solver.add_control_rule(rule)

# Powered shutdown: pump keeps running until the valve finishes closing (default has_power=True).
# Power outage: drop pump speed immediately while the valve still ramps closed on backup power.
solver.set_pump_power("Pmp1", False)

VFD Pump Speed Ramping

When a pump is controlled via an operational control rule (Threshold, Deadband, or PID) or a schedule, the computed target is written to the pump's command_speed rather than immediately altering its physical speed. The core solver then ramps current_speed toward command_speed at every timestep using the pump's VFD ramp_time (in seconds):

  • If the pump has power (has_power == True) and current_speed differs from command_speed, the maximum speed change per timestep is: $$\Delta s_{\text{max}} = \left( \frac{100.0}{\text{ramp_time}} \right) \cdot dt$$
  • If ramp_time <= 0.0 (default), the speed changes instantly.
  • If has_power == False (e.g., power lost), the pump's rotational inertia ($WR^2$) decay calculation takes precedence, and the pump spins down naturally under hydraulic loads.

Surge control components

Three passive devices are available for transient pressure protection.

AirValve (air-admission / air-release valve)

An AirValve behaves like a normal closed vent while the local piezometric head stays positive and no trapped pocket is present. If a transient pulls the node toward subatmospheric pressure, the valve admits air through a large orifice, creating an air pocket. When the system repressurises, that pocket compresses and is released gradually through a smaller discharge port, which lets the model capture delayed venting and restart overshoot from trapped air.

This is not a binary atmospheric clamp. The current model tracks:

  • a finite admission port using diameter
  • a finite release port using air_release_diameter
  • a local air-pocket / chamber volume using gas_volume and tank_volume
  • asymmetric admission and release coefficients using loss_coeff_in and loss_coeff_out
  • an optional vent datum offset using air_release_head

That makes the AirValve suitable for cases where vacuum protection, trapped-air compression, and delayed re-venting materially affect the transient response.

av = rthym_moc.NodeInput()
av.id               = "AV1"
av.type             = "AirValve"
av.elevation        = 0.0
av.head             = 160.0   # ft — steady-state pipeline head at the vent node
av.diameter         = 6.0     # inches — large admission port
av.air_release_diameter = 0.25  # inches — small release port
av.gas_volume       = 0.05    # ft³ — initial trapped air pocket (usually small)
av.tank_volume      = 2.0     # ft³ — local valve-body / riser chamber volume
av.loss_coeff_in    = 0.8     # admission discharge coefficient
av.loss_coeff_out   = 0.7     # release discharge coefficient
av.air_release_head = 0.0     # ft vent reference above elevation
solver.add_node(av)

The model simulates compressible air dynamics using isentropic nozzle flow equations:

  • Ideal Gas Law: The air pocket pressure $P_g$ is determined by the ideal gas equation of state: $$P_g V_g = M R T_g$$ where $M$ is the air mass inside the pocket, and the air temperature $T_g$ is assumed constant at atmospheric temperature ($T_{\text{atm}} = 518.67 \text{ °R}$).
  • Compressible Airflow: Air mass flow rate $\dot{m}$ through the admission or release orifice is determined using standard compressible flow relations (with specific heat ratio $k = 1.4$):
    • If the pressure ratio $p_r = p_{\text{outlet}} / p_{\text{inlet}} \le 0.528$ (critical ratio), the flow is sonic/choked: $$\dot{m} = C_d A \frac{p_{\text{inlet}}}{\sqrt{T_{\text{inlet}}}} \sqrt{\frac{k}{R} \left(\frac{2}{k+1}\right)^{\frac{k+1}{k-1}}}$$
    • If $p_r > 0.528$, the flow is subsonic: $$\dot{m} = C_d A \frac{p_{\text{inlet}}}{\sqrt{T_{\text{inlet}}}} \sqrt{\frac{2k}{R(k-1)} \left( p_r^{\frac{2}{k}} - p_r^{\frac{k+1}{k}} \right)}$$ For air admission (inflow), $p_{\text{inlet}} = P_{\text{atm}}$ and $p_r = P_g / P_{\text{atm}}$. For air release (outflow), $p_{\text{inlet}} = P_g$ and $p_r = P_{\text{atm}} / P_g$.
  • Vessel Limits: To prevent physically impossible states, the pocket volume is capped at the local chamber/vent body volume (tank_volume).

Standpipe (open surge tank)

An open-topped standpipe connected to the pipeline. When a pressure wave arrives, water rises or falls inside the standpipe rather than propagating as a waterhammer spike, limiting peak pressures.

st = rthym_moc.NodeInput()
st.id        = "ST1"
st.type      = "Standpipe"
st.elevation = 0.0
st.head      = 100.0         # ft — initial water-surface elevation (ft HGL)
st.tank_area = 5.0           # ft² — cross-sectional area of the standpipe
solver.add_node(st)

The water level is updated each time step using the standpipe continuity equation:

$$z^{n+1} = z^n + \frac{Q_\text{in} , \Delta t}{A_s}$$

where $Q_\text{in}$ is the net inflow from the attached pipe and $A_s$ is tank_area.

Design guidance: larger tank_area produces a smaller maximum water-level swing ($z_\text{max} = V_0 \sqrt{A_p L / (g A_s)}$). Place the standpipe at or near the pump discharge to protect against pump-trip low-pressure transients.

HydropneumaticTank (closed pressurised vessel)

A sealed vessel containing a cushion of compressed air above the water column. As the pipeline pressure fluctuates, water enters or leaves through an orifice and the gas volume changes according to the polytropic law:

$$P_g V_g^n = C \quad (n = 1.0 \text{ isothermal} \cdots 1.4 \text{ adiabatic; default } 1.2)$$

The gas constant $C$ is computed automatically at startup from head and gas_volume:

$$C = (H_0 - z_\text{elev} + 33.9) \cdot V_{g,0}^n$$

where 33.9 ft corresponds to 1 atm of absolute pressure head.

hpt = rthym_moc.NodeInput()
hpt.id             = "HPT1"
hpt.type           = "HydropneumaticTank"
hpt.elevation      = 0.0
hpt.head           = 120.0    # ft — steady-state pipeline head at connection
hpt.diameter       = 4.0      # inches — connection orifice diameter
hpt.gas_volume     = 10.0     # ft³ — initial trapped gas volume
hpt.tank_volume    = 30.0     # ft³ — total vessel volume (gas + water)
hpt.polytropic_n   = 1.2      # 1.0 = isothermal, 1.4 = adiabatic (default 1.2)
hpt.loss_coeff_in  = 0.7      # C_d for inflow (water entering, gas compresses)
hpt.loss_coeff_out = 0.7      # C_d for outflow (water leaving, gas expands)
solver.add_node(hpt)

Vessel Limits (Option C Clamping): To prevent physically impossible states (such as a negative gas volume or a gas pocket exceeding the total vessel size), the solver automatically clamps the net flow to zero when the tank becomes completely flooded ($V_g \le 0$) or completely dry ($V_g \ge V_{tank}$). The connection node head is dynamically calculated based on the clamped flow.

Design guidance: pre-charge the vessel so that gas_volume / tank_volume ≈ 0.33–0.50 at the steady-state operating pressure. Separate loss_coeff_in and loss_coeff_out values allow modelling of a throttle or riser dip tube that damps re-filling surges more aggressively than the initial discharge.


Pump & Turbine Rotational Inertia

For transient cases such as pump power failure (trip) or turbine grid disconnection, the solver models the dynamic change in rotational speed integrated over time based on the polar moment of inertia ($I = WR^2 / g$, where $WR^2$ is the rotational inertia inertia_wr2).

Grid Synchronization States

  • Grid Synchronized (has_power = True): The node speed is locked at 100% of rated speed (speed_rpm). For pumps, this represents normal operation. For turbines, this represents synchronization to the electrical grid under load.
  • Tripped / Disconnected (has_power = False): The node is disconnected from the electrical source/sink. The runner is free to accelerate or decelerate based on the balance of torque.
    • If inertia_wr2 <= 0.0, the speed changes instantly. A tripped pump instantly stops ($s = 0$), while a tripped turbine instantly reaches runaway speed ($N = N_{\text{runaway}}$).
    • If inertia_wr2 > 0.0, the speed is integrated step-by-step.

Pump Deceleration

When power is lost on a pump with inertia, the deceleration rate is governed by the torque-speed dynamics:

$$\Delta s = \frac{-T_h}{I \cdot \omega_0} \cdot \Delta t$$ $$s_{\text{new}} = \text{clamp}(s + \Delta s, 0.0, 1.0)$$

where:

  • $s$ is the speed ratio ($N / N_{\text{rated}}$)
  • $T_h$ is the hydraulic resistance torque (ft·lb), modeled as: $$T_h = T_{\text{rated}} \cdot (0.5 \cdot s^2 + 0.5 \cdot s \cdot q_{\text{ratio}})$$
  • $q_{\text{ratio}} = Q_{\text{gpm}} / Q_{\text{design}}$
  • $\omega_0 = 2\pi \cdot N_{\text{rated}} / 60$ is the rated angular velocity (rad/s)
  • $I = WR^2 / g$ is the moment of inertia (slug·ft²), with $WR^2$ being the rotational inertia inertia_wr2 (lb·ft²)

Turbine Startup & Runaway Dynamics

When a turbine is disconnected from the grid under load, it accelerates or decelerates under the action of the hydraulic torque:

$$\Delta N_{\text{rpm}} = \frac{307.486 \cdot T_{\text{hydraulic}}}{WR^2} \cdot \Delta t$$ $$N_{\text{new}} = \max(0.0, N_{\text{current}} + \Delta N_{\text{rpm}})$$

where:

  • $T_{\text{hydraulic}}$ is computed using a linear torque-speed simplification based on design head ($H_{\text{design}}$) and wicket gate opening ratio ($G = Y / 100.0$, where $Y$ is the wicket gate opening percentage current_setting): $$T_{\text{stall}} = 1.5 \cdot T_{\text{rated}} \cdot G \cdot \left(\frac{\Delta H}{H_{\text{design}}}\right)$$ $$N_{\text{runaway}} = 1.8 \cdot N_{\text{rated}} \cdot \sqrt{\frac{\Delta H}{H_{\text{design}}}}$$ $$T_{\text{hydraulic}} = T_{\text{stall}} \cdot \left(1.0 - \frac{N_{\text{current}}}{N_{\text{runaway}}}\right)$$
  • $T_{\text{rated}}$ is the rated shaft torque at best efficiency point (BEP):

$$T_{\text{rated}} = \frac{5252.0 \cdot \text{BHP}d}{N{\text{rated}}}$$

$$\text{BHP}_d = \frac{Q_d \cdot H_d \cdot \eta}{3960.0}$$

with $Q_d$ = design_flow (GPM), $H_d$ = design_head (ft), and $\eta$ = efficiency (BEP fractional efficiency).


Scripted multi-event transients

run() resets the MOC grid to the steady-state initial conditions each call, so multi-event sequences are best handled with schedules covering the full duration, or by rebuilding NodeInput objects between calls:

# Example: valve closes at t=1 s while a downstream demand increases at t=2 s
import numpy as np

# Build schedules covering the full 5-second window
t_close  = np.array([0.0, 1.0, 1.01, 5.0])
s_close  = np.array([100.0, 100.0, 0.0, 0.0])
solver.set_valve_schedule("V1", list(zip(t_close, s_close)))

demand_times = np.array([0.0, 2.0, 2.01, 5.0])
demand_vals  = np.array([500.0, 500.0, 700.0, 700.0])
solver.set_demand_schedule("J1", list(zip(demand_times, demand_vals)))

results = solver.run(total_time=5.0, dt=0.01)

To step a pump, boundary head, or demand between separate run() calls, use set_pump_speed(), set_node_head(), set_node_demand(), or direct NodeInput.head changes before the next run(). Each new run() call re-initialises from the stored steady-state values rather than the final state of the previous transient.


Loading from EPANET (.inp)

Existing EPANET network files can be imported directly with rthym_moc.load_inp(). The function parses the network topology and — when wntr is installed — runs a single-period hydraulic simulation to populate steady-state pipe flows automatically.

Install the optional dependency

pip install wntr          # standalone
# or
pip install 'rthym-moc[inp]'   # together with rthym-moc

Usage

import rthym_moc

# Load topology and steady-state flows from an EPANET file
solver = rthym_moc.load_inp("network.inp")

# Apply a transient event (valve closure, pump trip, etc.) then run
solver.set_valve_schedule("_VALVE_V1", schedule)
results = solver.run(total_time=10.0, dt=0.01)

If wntr is not installed, or for a known operating condition, supply initial flows explicitly:

solver = rthym_moc.load_inp(
    "network.inp",
    use_wntr=False,
    initial_flows={"P1": 500.0, "P2": 250.0},   # GPM, + = from_node → to_node
)

For SI override kwargs, use load_inp_si() with initial_flows_m3s, initial_heads_m, and stub_length_m — see Unit conventions.

load_inp() parameters

Parameter Type Default Description
path str Path to the EPANET .inp file
use_wntr bool True Run wntr hydraulics for initial flows and junction heads
initial_flows dict[str, float] None Explicit {link_id: GPM} overrides (applied after wntr, if any)
initial_heads dict[str, float] None Explicit {node_id: head_ft} overrides for junction and inline element heads
stub_length_ft float 40.0 Length (ft) of fictitious stub pipes on each side of pumps and valves; must satisfy the Courant grid constraint

load_inp_si() parameters

Same as load_inp(), except override kwargs use SI units:

Parameter Type Default Description
initial_flows_m3s dict[str, float] None Explicit {link_id: m³/s} overrides
initial_heads_m dict[str, float] None Explicit {node_id: head_m} overrides
stub_length_m float None Stub pipe length in metres (default 40 ft when omitted)

For initial_flows, use the original EPANET link ID for pumps and valves (e.g. "V1"), not the generated stub pipe IDs. For initial_heads, use EPANET junction IDs and generated _VALVE_<id> / _PUMP_<id> IDs for inline elements.

Supported EPANET sections

Section Mapped to
[JUNCTIONS] Junction nodes
[RESERVOIRS] PressureBoundary nodes
[TANKS] Tank nodes
[PIPES] PipeInput (H-W, D-W, and C-M roughness converted to H-W C; CV pipes become generated CheckValve nodes plus split pipes)
[PUMPS] Pump node + two stub pipes; design point read from [CURVES]
[VALVES] Valve node + two stub pipes (TCV, PRV, PSV, PBV)
[PATTERNS] Demand multipliers (see limitations)
[DEMANDS] Junction demand with patten multiplier at index 0
[CONTROLS] Simple LINK … STATUS OPEN|CLOSED AT TIME … rows → pump/valve schedules
[TIMES] Patten timestep (hours → seconds)
[CURVES] Pump design points
[OPTIONS] Units, Headloss formula
[RTHYM] Surge-device overrides (Standpipe, HydropneumaticTank, AirValve, CheckValve); units follow [OPTIONS] Units

All US customary unit variants (GPM, CFS, MGD, IMGD, AFD) and SI metric variants (LPS, LPM, MLD, CMH, CMD) are supported.

The custom [RTHYM] section uses the same Units setting: with UNITS LPS (or other SI variants), write standpipe areas in m², vessel volumes in m³, diameters in mm, and vent offsets in m. With UNITS GPM (or other US variants), use ft², ft³, inches, and ft. No separate flag is required.

Pump, valve, and check-valve generated IDs

Because EPANET treats pumps and valves as links (not nodes), load_inp() injects an intermediate node and two stub pipes (default 40 ft each; override with stub_length_ft) for each one. The generated IDs follow a predictable patten:

EPANET link V1 Generated node Generated pipes
Pump _PUMP_V1 _P_V1_up, _P_V1_dn
Valve _VALVE_V1 _P_V1_up, _P_V1_dn
CV pipe _CHECKVALVE_V1 _CV_V1_up, _CV_V1_dn

Use these IDs when calling set_valve_schedule(), set_pump_speed(), or accessing results.

Limitations

  • PRV / PSV / PBV are modeled as active pressure-control valves during transients (NodeInput.head stores the setpoint in ft HGL, or differential ft for PBV). Imported EPANET settings are converted from pressure units to head. This is a simplified regulating model, not a full EPANET steady-state valve solve each step.
  • FCV / GPV valve types are not supported and are treated as fully-open valves.
  • Minor losses ([PIPES] column 7) are imported as a dimensionless local-loss coefficient K, included in the initial steady headloss, and then applied as distributed resistance across the pipe during the transient. This is an approximation of a truly lumped fitting loss, but dedicated regression benchmarks are included to quantify the mismatch.
  • Demand pattens[PATTERNS] with [JUNCTIONS] / [DEMANDS] apply multiplier at index 0 to initial demand; multi-point pattens become set_demand_schedule(). Patten timestep comes from [TIMES] (hours → seconds). See docs/import_fidelity.md.
  • Simple controls[CONTROLS] rows of the form LINK <id> STATUS OPEN|CLOSED AT TIME <hours> map to pump/valve schedules on _PUMP_<id> / _VALVE_<id>. [RULES] and NODE-based controls are not imported.
  • Check valves (CV status on a pipe) are imported as generated inline CheckValve nodes with split pipes. The model supports exponential slam dynamics via closure_time (default 0.03 s) and optional flipped orientation.

See examples/load_from_inp.py for a complete worked example. Import fidelity details and roadmap status: docs/import_fidelity.md.


Numerical method

The solver implements the fixed-grid, elastic Method of Characteristics (Wylie & Streeter 1993; Chaudhry 2014).

Grid setup. For each pipe of length $L$, the number of spatial segments is

$$N = \text{round}!\left(\frac{L}{a \cdot \Delta t}\right)$$

and the wave speed is adjusted to $a_\text{adj} = L / (N \cdot \Delta t)$ to enforce Courant number $= 1$ exactly.

Interior nodes. At each interior node $j$ the $C^+$ and $C^-$ characteristics give:

$$C^+ = H_{j-1}^n + B,V_{j-1}^n - R,V_{j-1}^n |V_{j-1}^n|$$ $$C^- = H_{j+1}^n - B,V_{j+1}^n + R,V_{j+1}^n |V_{j+1}^n|$$ $$H_j^{n+1} = \tfrac{1}{2}(C^+ + C^-), \qquad V_j^{n+1} = \frac{C^+ - C^-}{2B}$$

where $B = a/g$ (ft·s²/ft = s²) is the pipe impedance and $R = f \Delta x / (2g D)$ is the friction term (Darcy-Weisbach $f$ derived from Hazen-Williams $C$ via the Swamee-Jain approximation).

Boundary nodes. Each node type implements its own BC:

  • PressureBoundary / Tank: $H$ fixed; $V$ solved from the appropriate $C^\pm$.
  • Junction: Kirchhoff continuity; $H$ solved from the combined $C^\pm$ of all incident pipes.
  • Dead-end (Junction, demand = 0, no outflow pipe): $H = C^+$ (zero-flow reflection).
  • Valve / Turbine: $K = (100/s)^2 - 1$ loss; combined with $C^\pm$ to solve $H$ and $V$. For turbines, when has_power = False, speed is integrated dynamically using its rotational inertia.
  • CheckValve: one-way flow with optional exponential disc closure; position and velocity are recorded in results.
  • PRV / PSV / PBV: simplified regulating pressure-control valves using the setpoint stored in NodeInput.head.
  • Pump: affinity-curve head-flow relationship combined with $C^\pm$; has_power and inertia_wr2 determine the speed decay behavior following power failure.
  • AirValve: finite admission/release orifices with trapped-air compression and delayed venting.
  • Standpipe: $H$ updated from the standpipe continuity equation each step.
  • HydropneumaticTank: $H$ updated from the polytropic gas law combined with the orifice flow equation each step.

Unsteady friction. An optional IIR low-pass filter on pipe velocity (time constant usf_tau) approximates the Brunone–Vítkovský unsteady friction correction, with k_bru selecting dynamic Vardy–Brown (default), steady-only, or a user coefficient. Set usf_tau = dt to disable the filter entirely (quasi-steady friction only).


Validation

Validation answers: is the MOC solver producing the right physics? The automated suite under tests/ uses explicit numeric tolerances, checked-in reference artifacts, and module docstrings — not visual inspection.

Run the full regression suite:

pytest -q

Run the headline cross-engine checks:

pytest tests/test_joukowsky_rthym.py tests/test_long_pipe_valve.py -q

The quickstart notebook overlays the checked-in R-THYM Joukowsky trace with the same RMS/peak tolerances used in CI.

Validation at a glance

Category What it proves Key tests
Cross-engine (R-THYM) Heads, peaks, and traces match the production web-app engine test_joukowsky_rthym.py, test_long_pipe_valve.py
Cross-engine (EPANET) Imported steady state and trip directionality test_complex_topology_from_inp.py
Analytical / regime Joukowsky and slow-closure behavior test_gradual_closure_benchmark.py
Surge-device physics Sizing, placement, and mixed-device trends test_tank_size_benchmark.py, test_hydropneumatic_size_benchmark.py, test_device_placement_benchmark.py, test_air_valve_dominant_*.py, and related modules
Broader regression Cavitation, controls, INP import, materials, losses remaining modules under tests/

Headline automated results:

  • Joukowsky first-step surge vs analytical: < 0.05 % (test_joukowsky_rthym.py)
  • R-THYM pressure trace RMS (early post-closure window): ≤ 4 psi (test_joukowsky_rthym.py)
  • Wave oscillation period vs $T_0 = 4L/a$: < 0.2 % (see examples/test_wave_reflections.py)

Full test map, tolerance policy, and reference-artifact inventory: docs/validation.md.

Long-form cross-engine narratives: docs/appendix_b_verification.md.


Benchmarking

Benchmarking answers: how much faster is the C++ core than TSNet and PTSNet? TSNet is the pure-Python MOC reference this project was built to outperform, and PTSNet is the MPI-capable parallel reference.

Reproduce timing on your hardware:

pip install tsnet==0.3.1
pip install ptsnet==0.1.10 mpi4py h5py tqdm numba "numpy<2" "setuptools<81"
python examples/benchmark_vs_tsnet.py      # single standard case
python examples/benchmark_matrix.py        # grid-size performance matrix
mpiexec -n 4 python examples/benchmark_ptsnet_vs_tsnet.py --warmup 0 --repeat 1
# Optional rthym_moc throughput check:
mpiexec -n 4 python examples/benchmark_ptsnet_vs_tsnet.py --warmup 0 --repeat 1 --rthym-concurrency 4

Install ptsnet==0.1.10, mpi4py, h5py, tqdm, numba, numpy<2, and setuptools<81 before running benchmark_ptsnet_vs_tsnet.py.

benchmark_vs_tsnet.py reports wall-clock time on the same 300-step instant-closure case for RTHYM-MOC vs TSNet, plus an RMS physics cross-check. Typical developer hardware: under 1 ms for RTHYM-MOC vs about 50–70 ms for TSNet (order of 200–400× faster). Re-run before citing ratios.

benchmark_ptsnet_vs_tsnet.py adds PTSNet and prints one table: median ms for each tool to complete a full run from a fresh model. The default is PTSNet's TNET3 valve-closure network because it completes reliably under mpiexec -n 4; the Joukowsky and standpipe microbenchmarks remain available with --models 1,2 or --models all. Add --rthym-concurrency 4 to show batch throughput for four independent rthym_moc runs in separate Python processes. See docs/benchmarking.md.

Topic Documentation
How to run / interpret RTHYM vs TSNet docs/benchmarking.md, examples/benchmark_matrix.py
All three tools (time to complete the full run) examples/benchmark_ptsnet_vs_tsnet.py
Tabulated physics + timing results docs/appendix_b_verification.md §B.6
Automated correctness regressions Validation (TSNet is not a default pytest dependency)

Versioning

The project tracks its package version from a single source of truth in rthym_moc/_version.py. The Python API exposes that value as rthym_moc.__version__, and both the Python packaging metadata and CMake project version read from the same source.

Release-level changes are tracked in CHANGELOG.md.


Repository layout

RTHYM-MOC/
├── build_wasm.sh          # Maintainer/internal Emscripten build script
├── src/
│   ├── moc_solver.hpp     # Type definitions, NodeInput, PipeInput, MOCSolver declaration
│   ├── moc_solver.cpp     # Full MOC physics implementation (C++17)
│   ├── bindings.cpp       # PyBind11 bindings → _rthym_moc extension module
│   └── wasm_bindings.cpp  # Emscripten bindings for maintainer WASM integration tests
├── build/
│   └── wasm/              # Generated rthym_moc.js / rthym_moc.wasm (not committed)
├── rthym_moc/
│   ├── __init__.py        # Public API re-exports
│   ├── _version.py        # Single source of truth for project version
│   ├── epanet.py          # load_inp() EPANET importer
│   ├── report.py          # Study summaries and CSV/JSON export
│   └── _rthym_moc*.so     # Compiled extension (generated by build)
├── examples/
│   ├── basic_example.py            # Minimal Joukowsky quickstart
│   ├── benchmark_vs_tsnet.py       # Single-case TSNet timing comparison
│   ├── benchmark_matrix.py         # Multi grid-size TSNet performance matrix
│   ├── benchmark_ptsnet_vs_tsnet.py # rthym vs TSNet vs PTSNet surge timing
│   ├── transient_study_report.py   # Post-processing export workflow
│   ├── test_wave_reflections.py    # Wave period & damping verification
│   ├── test_gradual_closure.py     # Joukowsky criterion, K-model valve
│   ├── test_surge_tank.py          # Standpipe mass-oscillation & pressure mitigation
│   ├── load_from_inp.py            # EPANET .inp import example
│   └── verify_rthym_webapp.py      # R-THYM web-app cross-check
├── tests/
│   ├── test_joukowsky_rthym.py                 # R-THYM web-app vs solver benchmark
│   ├── test_long_pipe_valve.py                 # Cross-engine valve-closure benchmark
│   ├── test_complex_topology_from_inp.py       # EPANET/wntr import benchmark
│   ├── test_inp_import_fidelity.py             # Pattens, demands, simple controls
│   ├── test_report.py                          # Study summary and export helpers
│   ├── test_gradual_closure_benchmark.py       # Parameterized closure-time benchmark
│   ├── test_tank_size_benchmark.py             # Parameterized standpipe-size benchmark
│   ├── test_hydropneumatic_size_benchmark.py   # Fixed-ratio vessel-size benchmark
│   ├── test_device_placement_benchmark.py      # Hydropneumatic placement benchmark
│   ├── test_pipe_length_benchmark.py           # Protected pipe-length benchmark
│   ├── test_multi_device_placement_benchmark.py # Split-vessel placement benchmark
│   ├── test_mixed_device_interaction_benchmark.py # Surge-vessel + air-valve benchmark
│   ├── test_air_valve_dominant_mixed_layout_benchmark.py # Air-valve-dominant mixed layout
│   ├── test_air_valve_dominant_layout_sensitivity_benchmark.py # Air-dominant distance sweep
│   ├── test_air_valve_dominant_size_sweep_benchmark.py # Air-dominant size sweep
│   ├── test_column_separation_and_stability.py # Cavitation and long-run stability
│   ├── networks/                               # Benchmark INP fixtures
│   └── test_waterhammer.cpp                    # Standalone C++ unit test (BUILD_TESTS=ON)
├── docs/
│   ├── appendix_b_verification.md  # Long-form cross-engine verification appendix
│   ├── validation.md               # Correctness test map, tolerances, reference assets
│   ├── benchmarking.md             # TSNet performance comparison guide
│   ├── import_fidelity.md          # EPANET import scope and limitations
│   └── appendix_hydraulic_reference.md
├── CMakeLists.txt
└── pyproject.toml

Dependencies

Runtime

Package Minimum Purpose
Python 3.9
NumPy 1.21 Result arrays

Build only

Package Minimum Purpose
pybind11 2.11 C++/Python bridge
CMake 3.15 Build system
C++17 compiler GCC 9 / Clang 10 / MSVC 2019

Optional (examples only)

Package Purpose
matplotlib Plotting in basic_example.py
TSNet 0.3.1 Cross-validation in example benchmark scripts
wntr ≥ 0.4 Steady-state initial flows for load_inp() (pip install 'rthym-moc[inp]')

References

  • Chaudhry, M. H. (2014). Applied Hydraulic Transients, 3rd ed. Springer.
  • Wylie, E. B., & Streeter, V. L. (1993). Fluid Transients in Systems. Prentice Hall.
  • Joukowsky, N. (1898). Über den hydraulischen Stoss in Wasserleitungsröhren. Mémoires de l'Académie Impériale des Sciences de St.-Pétersbourg, 9(5).

License

RTHYM-MOC (this repository) is released under the MIT License and is free to use, modify, and distribute for any purpose, including commercial and academic work. See pyproject.toml for the full license text.

R-THYM (the web application at r-thym.com) is a separate, proprietary product and is not covered by this license. The R-THYM application, its user interface, and its hosted infrastructure remain the intellectual property of Lillywhite Water Solutions LLC and are not open source.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rthym_moc-0.3.1.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rthym_moc-0.3.1-cp312-cp312-win_amd64.whl (211.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rthym_moc-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (280.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rthym_moc-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (205.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rthym_moc-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl (216.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

rthym_moc-0.3.1-cp311-cp311-win_amd64.whl (209.8 kB view details)

Uploaded CPython 3.11Windows x86-64

rthym_moc-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (275.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rthym_moc-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (204.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rthym_moc-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl (213.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rthym_moc-0.3.1-cp310-cp310-win_amd64.whl (209.2 kB view details)

Uploaded CPython 3.10Windows x86-64

rthym_moc-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (273.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rthym_moc-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (203.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rthym_moc-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl (212.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rthym_moc-0.3.1-cp39-cp39-win_amd64.whl (216.2 kB view details)

Uploaded CPython 3.9Windows x86-64

rthym_moc-0.3.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (273.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

rthym_moc-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (203.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rthym_moc-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl (212.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file rthym_moc-0.3.1.tar.gz.

File metadata

  • Download URL: rthym_moc-0.3.1.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rthym_moc-0.3.1.tar.gz
Algorithm Hash digest
SHA256 d6d3fc93d8ec1206f69792e94b8cbb57a653cee86904984a07634b55e0fa5177
MD5 e594a0b925c581c25753b72adfb3b518
BLAKE2b-256 4f52fd35f61b2b7d783380468a8ae0a75494bd454071e6191ee32673b6d0ee5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1.tar.gz:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rthym_moc-0.3.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 211.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rthym_moc-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50ce8a81a89279b80175bee7339373aaeac6737ce7de183ae6b9885788f427d6
MD5 ba20981b8259d4251a216692ba7026df
BLAKE2b-256 e61bad4019eb73d790f626a73567667d241dbd158197a71602a68b8dfdfd73b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dbe1d96ebad8c280a8b1cbd1177a977e10cb5c98e37b3ac8a8ba17e7e691f8be
MD5 8535d7b579d1fb07407dbfbafbbc404f
BLAKE2b-256 14000721801baab3f7b25ee145bba4b6b3475c6564d4ee12c36f32d075c818cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65089d09babc89f89ebe93cd262c8e91da3914b38ec98aa8622205518c8c6a39
MD5 35e9f2d4c1bce2496a32a30bbf0f6cd9
BLAKE2b-256 c10a77d3593c08d12bea96498225422fdbd98397503e624141f8d0b97080b55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4e754088ea5b18281894c5a15c42256c20cf359c2f61bd9acbd33d0b15f39ef1
MD5 23d13ea845310ec4baf4efe94ae6232d
BLAKE2b-256 cd44983aaa325dd1534fa882d8cb2d10aeff9791f37df13600827b5d3713f8d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rthym_moc-0.3.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 209.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rthym_moc-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d6e85d75ed00b6e14a297ec7a7d3c5692195cb601b178e0524f02dff97eed4ad
MD5 a5c46664bef47dfd455c3271127c19bd
BLAKE2b-256 2f40d79c4c80abe806a9722b60cca267e57afd0807d02d50a527792984e39e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cb97025046225e38a2811060026add4745c619f429b44987fd47dbee5b0aa24
MD5 a0e90b9df54df9103165947ee1522528
BLAKE2b-256 be317d3088d50a575e7ed8745644d6e2bb20e7900f8d888714703ca2a05af1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 433d2949fc7a5460cc8262eb02d21fb82c1b0ccabe4cfb36b002ea786c55031e
MD5 91f9296ebb3db24fe0368711f1ad0a56
BLAKE2b-256 0136b488c21f6fe9f695bb29c1f3908a9e9a8b4a0645d29f44f463e1f6826d73

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b9acc87b946c7d5e4b0f542debac1150c139227d2cc51dadee7e776914396fcd
MD5 50c5f85524286c952774156c4ae024c9
BLAKE2b-256 bc8db5624a6766ecc964b54a0f672edc525547c528c5bd1a759a835ff09bad7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rthym_moc-0.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 209.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rthym_moc-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4883166bc5c501ad658cf69ea3f173d69ad1b8f791905142da0c56e6686d3b44
MD5 9146765ef6f897f049d0b544295dafac
BLAKE2b-256 4663c335c0e96261b69da40f7166553f5645806174d227204d96cb08060f95f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f67cfca1487f4413c39906b45596a3b5a6a38cba0b4de0fae93b92016b53e711
MD5 72e52997a21d7284b3ad47c60a9ce1cf
BLAKE2b-256 4ccc6fc1f637bade88f6f7437fe876a876a7892873c1757fb3a59b29662247b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93cdedcbc7fc53654f97a4b6ba85df27983d22ec2131da0974e305055542a84c
MD5 6250873b6d2992128a7632347d200c63
BLAKE2b-256 74507eef24780272c4c7e0a635d079d5c1c8834def6a8ed22a57380e357ba8bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d52a3a18cf6f1548dfda7caf0585834ada98cfea194b67da8c9ed78e4a200bc7
MD5 a161de3adbbf8053c7f14c4f006eb42d
BLAKE2b-256 3bca1baa47a08e6e42767cc126d05b4f262104c516a809d0b123a0abad59d838

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rthym_moc-0.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 216.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rthym_moc-0.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2b39834b435d5549c37e116007c2b18685a262b0cc0eeec3391e377b90d237a8
MD5 22ca99194f8990925c3b516ef16bc1ba
BLAKE2b-256 ffe5b1c33a4a11321cb26605f9580cf1e8c790d55d51a1c96b9c43411976b94e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50de030fef826b2d156a00a5854e710dd64f1146f3458a4b41da3ca02340be8b
MD5 e4faac177f966304cf825346d819002f
BLAKE2b-256 4970f6ae8a742f904bb7e0b48e2e7e3c07bca5bf9de952f270a3d2ee6fc41eaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e29811b4b53344fded84684464dc3f15b96a613488130de767f1f47272a4a481
MD5 783816ae1fbd48c24d38a53ddb31bfa8
BLAKE2b-256 1b28384811e23724113b23e287379f2b02df27deb08417b22dfcb0b39065cea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rthym_moc-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rthym_moc-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 41f9345f4af1e402eec1d67af3a4b00b2630ea25d0b25e6b1502f2c3a97b12f9
MD5 93855f676832dc789856c96e04843b24
BLAKE2b-256 3a9fd76987fba949daaf01c0d906deaf3d0326f67d88026da6c8411ec93b16fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rthym_moc-0.3.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on jlillywh/RTHYM-MOC

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page