mirror of
https://github.com/JHUAPL/SIMoN.git
synced 2026-01-09 14:57:56 -05:00
style fix
Former-commit-id: 217d3ec0992873f9a2a6eb5ea181db82b051ab2f
This commit is contained in:
@@ -54,7 +54,11 @@ def gen_nerc(demand, profile_rates):
|
||||
h2o = {}
|
||||
|
||||
for nerc in demand:
|
||||
co2[nerc] = demand[nerc] * profile_rates.get(nerc, {}).get("co2 (tons/MWh)", 0)
|
||||
h2o[nerc] = demand[nerc] * profile_rates.get(nerc, {}).get("water (Mgal/MWh)", 0)
|
||||
co2[nerc] = demand[nerc] * profile_rates.get(nerc, {}).get(
|
||||
"co2 (tons/MWh)", 0
|
||||
)
|
||||
h2o[nerc] = demand[nerc] * profile_rates.get(nerc, {}).get(
|
||||
"water (Mgal/MWh)", 0
|
||||
)
|
||||
|
||||
return co2, h2o
|
||||
|
||||
Reference in New Issue
Block a user