Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9e9a8b1
add size class endpoint for bess
rathod-b Jan 5, 2026
7382d1e
make migrations and add right REopt branch
rathod-b Jan 8, 2026
b71d82b
debug endpoint for storage size class
rathod-b Jan 9, 2026
53624b7
Merge branch 'develop' into bess-size-class
rathod-b Apr 16, 2026
f846a7f
Merge branch 'develop' into bess-size-class
rathod-b Sep 10, 2026
d47f7c1
Merge branch 'master' into bess-size-class
rathod-b Sep 10, 2026
9a26723
revive bess size class api branch
rathod-b Sep 10, 2026
10f05ea
address copilot comments
rathod-b Sep 10, 2026
d0ad6b2
Update GhpGhx.jl to updated julia 1.13 syntax for ccall
Bill-Becker Sep 14, 2026
abf3e44
Update Julia dependencies but still on 1.11
Bill-Becker Sep 14, 2026
421c9da
Update to Julia v1.13
Bill-Becker Sep 14, 2026
74e4f11
Temp update REopt.jl to julia-113 version
Bill-Becker Sep 14, 2026
01b4667
Unpin PROJ_jll so it works on Julia 1.13
Bill-Becker Sep 14, 2026
e823750
Adjust ElectricStorage defaults
rathod-b Sep 16, 2026
c938ab8
Update to latest REopt.jl#julia-113
Bill-Becker Sep 16, 2026
12ea53a
Add URDB_API_KEY to .env file
Bill-Becker Sep 17, 2026
f5d86a8
Update REopt.jl to master branch (unregistered)
Bill-Becker Sep 17, 2026
98b0b8c
Update CHP supplementary firing inputs/outputs for REopt.jl PR 626
Bill-Becker Sep 17, 2026
8695cf7
Merge branch 'supp-fire' into sept26-updates
Bill-Becker Sep 17, 2026
0a12bd5
Update to latest REopt#master after supplementary firing merge
Bill-Becker Sep 18, 2026
041c79a
Update default value for supplementary_firing_installed_cost_per_mmbt…
Bill-Becker Sep 18, 2026
076ca9d
Update test_job_endpoint.py
rathod-b Sep 21, 2026
d6b00f4
update wind cost defaults per ATB2025
rathod-b Sep 21, 2026
8880199
bug fix and update stale manifest
rathod-b Sep 21, 2026
1b8bf37
Merge branch 'bess-size-class' into sept26-updates
Bill-Becker Sep 22, 2026
e501017
Merge migrations after merging bess-size-class
Bill-Becker Sep 22, 2026
5ecc1d9
return all bess size class parameters
rathod-b Sep 22, 2026
c149313
Merge branch 'bess-size-class' into sept26-updates
Bill-Becker Sep 22, 2026
1266504
Update test_job_endpoint.py
rathod-b Sep 22, 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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ Classify the change according to the following categories:
##### Removed
### Patches

## Develop - 2026-09-17
### Minor Updates
##### Changed
- `reoptjl/models.py`: Renamed **CHPInputs.supplementary_firing_capital_cost_per_kw** to **CHPInputs.supplementary_firing_installed_cost_per_mmbtu_per_hour** [$/MMBtu/hr of incremental thermal capacity, default 10000.0], to match the updated REopt.jl input
- `reoptjl/models.py`: Renamed **CHPInputs.supplementary_firing_max_steam_ratio** to **CHPInputs.supplementary_firing_max_ratio**, now defined as the ratio of max fired steam capacity relative to the steam generated by the CHP system running at rated capacity
- `reoptjl/models.py`: Renamed **CHPOutputs.size_supplemental_firing_kw** to **CHPOutputs.size_supplemental_firing_mmbtu_per_hour**, which is now the incremental thermal capacity of the supplementary firing system [MMBtu/hr] instead of an electric capacity [kW]
##### Added
- `reoptjl/models.py`: Added **CHPOutputs.size_supplementary_firing_ratio**, the ratio of total fired thermal capacity (unfired + supplementary firing) to unfired CHP thermal capacity at full load
- `reoptjl/models.py`: Added **CHPOutputs.annual_supplementary_firing_thermal_production_mmbtu**, the annual supplementary firing thermal production [MMBtu]
- `reoptjl/migrations/0126_rename_supplementary_firing_chp_fields_and_more.py`: Migration for the CHP supplementary firing input/output renames and new outputs

## v3.23.0
### Minor Updates
##### Changed
Expand Down
3 changes: 2 additions & 1 deletion julia_src/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
NLR_DEVELOPER_API_KEY="gAfosXcQ9Ldfw3qXqvKVb7PxMEkYigozmC9R3mXQ"
NLR_DEVELOPER_EMAIL="reopt@nlr.gov"
NLR_DEVELOPER_EMAIL="reopt@nlr.gov"
URDB_API_KEY = "lU1FMjXuKmxIEMedkwxPIc7MsICSqecdRrTqheOJ"
2 changes: 1 addition & 1 deletion julia_src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM julia:1.11.2
FROM julia:1.13.0

# Install NLR root certs for machines running on NLR's network.
ARG NREL_ROOT_CERT_URL_ROOT=""
Expand Down
Loading
Loading