epanet-rs 0.2.2

A fast, modern and safe re-implementation of the EPANET2 hydraulic solver, written in Rust.
Documentation
//! Data structures for representing and modifying a hydraulic network (nodes, links,
//! patterns, curves, controls and options).

pub mod control;
pub mod curve;
pub mod demand;
pub mod junction;
pub mod link;
pub mod network;
pub mod node;
pub mod options;
pub mod pattern;
pub mod pipe;
pub mod pump;
pub mod reservoir;
pub mod rule;
pub mod tank;
pub mod units;
pub mod valve;