pub struct ResultRanges {
pub pressure_min: f64,
pub pressure_max: f64,
pub head_min: f64,
pub head_max: f64,
pub demand_min: f64,
pub demand_max: f64,
pub flow_min: f64,
pub flow_max: f64,
pub velocity_min: f64,
pub velocity_max: f64,
}Expand description
Global min/max across all timesteps for each display variable.
All values are in the internal SI unit system: pressure in metres of head, head in metres, demand and flow in m³/s, velocity in m/s.
Fields§
§pressure_min: f64Minimum gauge pressure observed at any node across all timesteps (m).
pressure_max: f64Maximum gauge pressure observed at any node across all timesteps (m).
head_min: f64Minimum hydraulic head observed at any node across all timesteps (m).
head_max: f64Maximum hydraulic head observed at any node across all timesteps (m).
demand_min: f64Minimum demand observed at any node across all timesteps (m³/s).
demand_max: f64Maximum demand observed at any node across all timesteps (m³/s).
flow_min: f64Minimum flow observed at any link across all timesteps (m³/s).
flow_max: f64Maximum flow observed at any link across all timesteps (m³/s).
velocity_min: f64Minimum velocity observed at any link across all timesteps (m/s).
velocity_max: f64Maximum velocity observed at any link across all timesteps (m/s).
Trait Implementations§
Source§impl Clone for ResultRanges
impl Clone for ResultRanges
Source§fn clone(&self) -> ResultRanges
fn clone(&self) -> ResultRanges
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more