Skip to content

Commit 3908d2e

Browse files
OFR-IIASAmacflo8
authored andcommitted
Add correction for accounting of CF4 emissions from industry
1 parent d1888a0 commit 3908d2e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

message_ix_models/model/material/data_util.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1391,11 +1391,14 @@ def add_emission_accounting(scen: message_ix.Scenario) -> None:
13911391
},
13921392
)
13931393
CF4_red_add.drop(["year_vtg", "emission"], axis=1, inplace=True)
1394-
CF4_red_add["relation"] = "CF4_alm_red"
13951394
CF4_red_add["unit"] = "???"
13961395
CF4_red_add["year_rel"] = CF4_red_add["year_act"]
13971396
CF4_red_add["node_rel"] = CF4_red_add["node_loc"]
1397+
CF4_red_add["relation"] = "CF4_Emission"
1398+
scen.add_par("relation_activity", CF4_red_add)
13981399

1400+
CF4_red_add["relation"] = "CF4_alm_red"
1401+
CF4_red_add["value"] *= 1000
13991402
scen.add_par("relation_activity", CF4_red_add)
14001403
scen.commit("CF4 relations corrected.")
14011404

0 commit comments

Comments
 (0)