Skip to content

Commit

Permalink
Change min value of external input for waste CHP electrical efficiency
Browse files Browse the repository at this point in the history
An electrical efficiency of 0 breaks the model.
  • Loading branch information
mabijkerk committed Sep 6, 2024
1 parent 00c9dd4 commit 70d74f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- query = UPDATE(OUTPUT_SLOTS(V(energy_chp_supercritical_ccs_ht_waste_mix), electricity), conversion, DIVIDE(USER_INPUT(), 100.0))
- priority = 2
- max_value = 100.0
- min_value = 0.0
- min_value = 1.0
- start_value_gql = present:V(energy_chp_supercritical_ccs_ht_waste_mix, electricity_output_conversion) * 100.0
- step_value = 1.0
- unit = %
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- query = UPDATE(OUTPUT_SLOTS(V(energy_chp_supercritical_ht_waste_mix), electricity), conversion, DIVIDE(USER_INPUT(), 100.0))
- priority = 2
- max_value = 100.0
- min_value = 0.0
- min_value = 1.0
- start_value_gql = present:V(energy_chp_supercritical_ht_waste_mix, electricity_output_conversion) * 100.0
- step_value = 1.0
- unit = %
Expand Down

0 comments on commit 70d74f4

Please sign in to comment.