Skip to content

Commit 05c1ef5

Browse files
GamzeUnlu95khaeru
authored andcommitted
Differentiate the scalar used for initial_capacity_new for SSPs
1 parent 75c498c commit 05c1ef5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

message_ix_models/model/material/data_util.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -1431,24 +1431,24 @@ def calculate_ini_new_cap(
14311431

14321432
if ssp in ["LED", "SSP1", "SSP2"]:
14331433
if material == "cement":
1434-
SCALER = 0.00066
1434+
SCALER = 0.001
14351435
CLINKER_RATIO = 0.72
14361436
if material == "steel":
1437-
SCALER = 0.0009
1437+
SCALER = 0.002
14381438
CLINKER_RATIO= 1
14391439
elif ssp in ["SSP4", "SSP5"]:
14401440
if material == "cement":
1441-
SCALER = 0.0014
1441+
SCALER = 0.002
14421442
CLINKER_RATIO = 0.72
14431443
if material == "steel":
1444-
SCALER = 0.002
1444+
SCALER = 0.003
14451445
CLINKER_RATIO = 1
14461446
elif ssp == "SSP3":
14471447
if material == "cement":
1448-
SCALER = 0.0005
1448+
SCALER = 0.0008
14491449
CLINKER_RATIO = 0.72
14501450
if material == "steel":
1451-
SCALER = 0.0007
1451+
SCALER = 0.001
14521452
CLINKER_RATIO = 1
14531453

14541454
df_demand["value"] *= CLINKER_RATIO * SCALER

0 commit comments

Comments
 (0)