From 107adce165b0822c43d1993337d8ed1e2b42540f Mon Sep 17 00:00:00 2001 From: Kaarthik Sundar Date: Wed, 29 Jan 2025 11:30:55 -0700 Subject: [PATCH] adds flow bounds to transient pipes --- src/io/transient.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/io/transient.jl b/src/io/transient.jl index 1009919f..5614af39 100644 --- a/src/io/transient.jl +++ b/src/io/transient.jl @@ -260,6 +260,8 @@ function _prep_transient_data!( "is_si_units", "is_english_units", "is_per_unit", + "flow_min", + "flow_max" ] data["pipe"][key] = Dict{String,Any}() @@ -336,6 +338,8 @@ function _prep_transient_data!( "is_si_units" => data["is_si_units"], "is_english_units" => data["is_english_units"], "is_per_unit" => data["is_english_units"], + "flow_min" => pipe["flow_min"], + "flow_max" => pipe["flow_max"] ) end end