Skip to content

Commit

Permalink
Allow user to specify if the auxiliary unit is heating or cooling for…
Browse files Browse the repository at this point in the history
… hybrid GHP
  • Loading branch information
lixiangk1 committed Dec 2, 2024
1 parent 0d81ee8 commit b584149
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/core/scenario.jl
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,12 @@ function Scenario(d::Dict; flex_hvac_from_json=false)
end
ghpghx_inputs["hybrid_auto_ghx_sizing_flag"] = false

elseif hybrid_ghx_sizing_method == "Auxiliary Heating"
is_ghx_hybrid = true
hybrid_sizing_flag = -2.0 #heating
elseif hybrid_ghx_sizing_method == "Auxiliary Cooling"
is_ghx_hybrid = true
hybrid_sizing_flag = -1.0 #cooling
elseif hybrid_ghx_sizing_method == "Fractional"
is_ghx_hybrid = true
hybrid_sizing_flag = get(ghpghx_inputs, "hybrid_ghx_sizing_fraction", 0.6)
Expand Down

0 comments on commit b584149

Please sign in to comment.