Skip to content

Commit

Permalink
adds flow bounds to transient pipes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaarthiksundar committed Jan 29, 2025
1 parent 58f73cf commit 107adce
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/io/transient.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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}()
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 107adce

Please sign in to comment.