Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
47905cd
Add initial stubbing for modelica post processing
tanushree04 Jun 11, 2024
3eb7dba
add cli call for reopt
tanushree04 Jun 11, 2024
51dfc66
Merge branch 'develop' into ghp_lcca
tanushree04 Jul 19, 2024
2c3ef75
add ghp lcca commands
tanushree04 Jul 29, 2024
ce84c14
update cli for reopt ghp lcca
tanushree04 Sep 18, 2024
33c57ce
Edit cli commands for reopt
tanushree04 Sep 20, 2024
fb1478b
update test for reopt, add cli commands for modelia runtime
tanushree04 Sep 23, 2024
e5559dc
update ghe assumptions
tanushree04 Sep 23, 2024
a0a2391
update gmt dependency
tanushree04 Oct 28, 2024
dda5bdf
Merge branch 'develop' into ghp_lcca
tanushree04 Dec 17, 2024
ad68e0f
Merge branch 'develop' into ghp_lcca
tanushree04 Dec 16, 2025
93e4beb
update gemfile reopt branch, ghp_assumption
tanushree04 Dec 16, 2025
8bfd97f
update test
tanushree04 Dec 16, 2025
828f0f1
update test
tanushree04 Jan 15, 2026
eb01397
Merge branch 'develop' into ghp_lcca
tanushree04 Jan 20, 2026
87c3f56
Merge branch 'develop' into ghp_lcca
kflemin Jan 23, 2026
656d7eb
remove district type argument in test
tanushree04 Jan 23, 2026
5e2ce40
update dependencies
kflemin Jan 28, 2026
d5a36cd
fix gemfile
kflemin Jan 28, 2026
47cd1aa
Merge branch 'develop' into ghp_lcca
kflemin Jan 28, 2026
6a66a55
Merge branch 'develop' into ghp_lcca
kflemin Jan 28, 2026
038efc5
update short symbol for uo process
kflemin Jan 29, 2026
30ab87a
update natural gas code
tanushree04 Jan 29, 2026
c4a2e0b
update nat gas fuel cost code
tanushree04 Jan 29, 2026
5d512e1
update assumption hash code
tanushree04 Jan 30, 2026
50309db
update dependencies
kflemin Jan 30, 2026
2f08eee
update dependencies
kflemin Jan 30, 2026
32f8bc0
update code for reopt to take in updated assumption file
tanushree04 Jan 30, 2026
9a55076
Merge branch 'develop' into ghp_lcca
kflemin Jan 30, 2026
13610ec
update code so that the erp runs w the uo cost changes
tanushree04 Jan 30, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# rspec test folder
spec/test_directory*

spec/reopt_ghp
Gemfile.lock
.rubocop*

Expand All @@ -33,4 +33,4 @@ example_files/python_deps/python
example_files/python_deps/python-3.10


reopt_project
reopt_project
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ allow_local = ENV['FAVOR_LOCAL_GEMS']
# if allow_local && File.exist?('../OpenStudio-extension-gem')
# gem 'openstudio-extension', path: '../OpenStudio-extension-gem'
# elsif allow_local
# gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
# gem 'openstudio-extension', github: 'NatLabRockies/OpenStudio-extension-gem', branch: 'develop'
# end
# gem 'openstudio-extension', '0.9.3'

Expand Down
2 changes: 1 addition & 1 deletion example_files/reopt/base_assumptions.json
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,6 @@
"om_cost_per_kw": 0.0
},
"ExistingBoiler": {
"fuel_cost_per_mmbtu": 4.5
"fuel_cost_per_mmbtu": 11.5
}
}
2 changes: 1 addition & 1 deletion example_files/reopt/multiPV_assumptions.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,6 @@
"om_cost_per_kw": 0.0
},
"ExistingBoiler": {
"fuel_cost_per_mmbtu": 4.5
"fuel_cost_per_mmbtu": 11.5
}
}
27 changes: 27 additions & 0 deletions example_files/reopt_ghp/ghp_assumptions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"Site": {
"latitude": 39.99153232,
"longitude": -105.2648427
},
"SpaceHeatingLoad": {
},
"DomesticHotWaterLoad": {
},
"ElectricLoad": {
},
"ElectricTariff": {
"urdb_label": "594976725457a37b1175d089"
},
"GHP":{
"installed_cost_heatpump_per_ton": 1904,
"installed_cost_ghx_per_ft": 17,
"installed_cost_building_hydronic_loop_per_sqft": 0,
"om_cost_per_sqft_year": 0,
"macrs_bonus_fraction": 0.6,
"macrs_itc_reduction": 0.5,
"federal_itc_fraction": 0.3
},
"ExistingBoiler": {
"fuel_cost_per_mmbtu": 11.5
}
}
231 changes: 197 additions & 34 deletions lib/uo_cli.rb

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions spec/spec_files/reopt_ghp/_loop_order.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[
{
"list_bldg_ids_in_group": [
"4",
"5"
],
"list_ghe_ids_in_group": [
"7932a208-dcb6-4d23-a46f-288896eaa1bc"
]
}
]
Loading
Loading