Skip to content

Commit

Permalink
Add missing SUM function to hydrogen queries
Browse files Browse the repository at this point in the history
  • Loading branch information
mabijkerk committed Oct 18, 2024
1 parent f716613 commit b6ec730
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Direct conversion input of natural gas for steam methane reforming without CCS


- query =
DIVIDE(
V(
energy_hydrogen_autothermal_reformer_must_run,
energy_hydrogen_autothermal_reformer_dispatchable,
input_of_natural_gas
SUM(
V(
energy_hydrogen_autothermal_reformer_must_run,
energy_hydrogen_autothermal_reformer_dispatchable,
input_of_natural_gas
),
),
BILLIONS
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Direct conversion input of natural gas for steam methane reforming without CCS


- query =
DIVIDE(
V(
energy_hydrogen_steam_methane_reformer_must_run,
energy_hydrogen_steam_methane_reformer_dispatchable,
input_of_natural_gas
SUM(
V(
energy_hydrogen_steam_methane_reformer_must_run,
energy_hydrogen_steam_methane_reformer_dispatchable,
input_of_natural_gas
),
),
BILLIONS
)
Expand Down

0 comments on commit b6ec730

Please sign in to comment.