Skip to content

Commit

Permalink
Differentiate the scalar used for initial_capacity_new for SSPs
Browse files Browse the repository at this point in the history
  • Loading branch information
GamzeUnlu95 authored and khaeru committed Dec 3, 2024
1 parent 299bc98 commit e0f6afa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions message_ix_models/model/material/data_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1431,24 +1431,24 @@ def calculate_ini_new_cap(

if ssp in ["LED", "SSP1", "SSP2"]:
if material == "cement":
SCALER = 0.00066
SCALER = 0.001
CLINKER_RATIO = 0.72
if material == "steel":
SCALER = 0.0009
SCALER = 0.002
CLINKER_RATIO= 1
elif ssp in ["SSP4", "SSP5"]:
if material == "cement":
SCALER = 0.0014
SCALER = 0.002
CLINKER_RATIO = 0.72
if material == "steel":
SCALER = 0.002
SCALER = 0.003
CLINKER_RATIO = 1
elif ssp == "SSP3":
if material == "cement":
SCALER = 0.0005
SCALER = 0.0008
CLINKER_RATIO = 0.72
if material == "steel":
SCALER = 0.0007
SCALER = 0.001
CLINKER_RATIO = 1

df_demand["value"] *= CLINKER_RATIO * SCALER
Expand Down

0 comments on commit e0f6afa

Please sign in to comment.