Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
gashp "heating plant using gas"
gash2 "gas to hydrogen"
gash2c "gas to hydrogen with carbon capture"
gasftrec "gas based fischer-tropsch recycle"
gasftcrec "gas based fischer-tropsch with capture recycle"
refliq "refinery oil to SE liquids"
dot "diesel oil turbine"
igcc "integrated coal gasification combined cycle"
igccc "integrated coal gasification combined cycle with carbon capture"
pc "pulverised coal power plant"
$ifthen setGlobal cm_ccsfosall
pcc "pulverised coal power plant with capture"
pco "pulverised coal power plant with oxyfuel capture"
$endif
coalchp "combined heat powercoal"
coalhp "heating plant coal"
coaltr "tranformation of coal"
coalgas "coal gasification"
coalftrec "coal based fischer-tropsch recycle"
coalftcrec "coal based fischer-tropsch with capture recycle"
coalh2 "coal to hydrogen"
coalh2c "coal to hydrogen with capture"
biotr "transformation of biomass"
biotrmod "modern solids from biomass"
biochp "biomass combined heat and power"
biohp "biomass heating plant"
bioigcc "integrated biomass gasification combined cycle"
bioigccc "integrated biomass gasification combined cycle with CCS"
biogas "gasification of biomass"
bioftrec "biomass based fischer-tropsch recycle"
bioftcrec "biomass based fischer-tropsch with capture recycle"
bioh2 "biomass to hydrogen"
bioh2c "biomass to hydrogen with capture"
bioethl "biomass to ethanol"
bioeths "sugar and starch biomass to ethanol"
biodiesel "oil biomass to biodiesel"
geohdr "geothermal electric hot dry rock"
geohe "geothermal heat"
hydro "hydro electric"
wind "wind power converters"
spv "solar photovoltaic"
csp "concentrating solar power"
solhe "solar thermal heat generation"
tnrs "thermal nuclear reactor (simple structure)"
fnrs "fast nuclear reactor (simple structure)"
elh2 "hydrogen elecrolysis"
h2turb "hydrogen turbine for electricity production"
elh2VRE "dummy technology: hydrogen electrolysis; to demonstrate the capacities and SE flows inside the storXXX technologies"
h2turbVRE "dummy technology: hydrogen turbine for electricity production; to demonstrate the capacities and SE flows inside the storXXX technologies"
h2curt "hydrogen production from curtailment"
tdels "transmission and distribution for electricity to stationary users"
tdelt "transmission and distribution for electricity to transport"
tdbiogas "transmission and distribution for gas from biomass origin to stationary users"
tdfosgas "transmission and distribution for gas from fossil origin to stationary users"
tdbiohos "transmission and distribution for heating oil from biomass origin to transportation"
tdfoshos "transmission and distribution for heating oil from fossil origin to transportation"
tdh2s "transmission and distribution for hydrogen to stationary users"
tdh2t "transmission and distribution for hydrogen to transportation"
tdbiodie "transmission and distribution for diesel from biomass origin to stationary users"
tdfosdie "transmission and distribution for diesel from fossil origin to stationary users"
tdbiopet "transmission and distribution for petrol from biomass origin to stationary users"
tdfospet "transmission and distribution for petrol from fossil origin to stationary users"
tdbiosos "transmission and distribution for solids from biomass origin to stationary users"
tdfossos "transmission and distribution for solids from fossil origin to stationary users"
tdhes "transmission and distribution for heat to stationary users"
* ccscomp "compression of co2, CCS related"
* ccspipe "transportation of co2, CCS related"
ccsinje "injection of co2, CCS related"
* ccsmoni "monitoring of co2, CCS related"
storspv "storage technology for photo voltaic"
storwind "storage technology for wind"
storcsp "storage technology for concentrating solar power"
gridspv "grid between areas with high pv production and the rest"
gridcsp "grid between areas with high csp production and the rest"
gridwind "grid between areas with high wind production and the rest"
/
teAdj(all_te) "technologies with adjustment costs on capacity additions"
/
ngcc "natural gas combined cycle"
ngccc "natural gas combined cycle with capture"
ngt "natural gas turbine"
gastr "transformation of gases"
gaschp "combined heat and power plant using gas"
gashp "heating plant using gas"
gash2 "gas to hydrogen"
gash2c "gas to hydrogen with capture"
gasftrec "gas based fischer-tropsch recycle"
gasftcrec "gas based fischer-tropsch with capture recycle"
dot "diesel oil turbine"
igcc "integrated coal gasification combined cycle"
igccc "integrated coal gasification combined cycle with capture"
pc "pulverised coal power plant"
$ifthen setGlobal cm_ccsfosall
pcc "pulverised coal power plant with capture"
pco "pulverised coal power plant with oxyfuel capture"
$endif
coalchp "combined heat powercoal"
coalhp "heating plant coal"
coaltr "tranformation of coal"
coalgas "coal gasification"
coalftrec "coal based fischer-tropsch recycle"
coalftcrec "coal based fischer-tropsch with capture recycle"
coalh2 "coal to hydrogen"
coalh2c "coal to hydrogen with capture"
biotr "transformation of biomass"
biotrmod "modern solids from biomass"
biochp "heating plant bio"
biohp "heating plant bio"
bioigcc "integrated biomass gasification combined cycle"
bioigccc "integrated biomass gasification combined cycle with CCS"
biogas "gasification of biomass"
bioftrec "biomass based fischer-tropsch recycle"
bioftcrec "biomass based fischer-tropsch with capture recycle"
bioh2 "biomass to hydrogen"
bioh2c "biomass to hydrogen with capture"
bioethl "biomass to ethanol"
bioeths "sugar and starch biomass to ethanol"
biodiesel "oil biomass to biodiesel"
geohdr "geothermal electric hot dry rock"
geohe "geothermal heat"
hydro "hydro electric"
wind "wind power converters"
spv "solar photovoltaic"
csp "concentrating solar power"
solhe "solar thermal heat generation"
tnrs "thermal nuclear reactor (simple structure)"
fnrs "fast nuclear reactor (simple structure)"
elh2 "hydrogen elecrolysis"
h2turb "hydrogen turbine for electricity production"
h2curt "hydrogen production from curtailment"
*** ccscomp "compression of co2, CCS related"
*** ccspipe "transportation of co2, CCS related"
ccsinje "injection of co2, CCS related"
*** ccsmoni "monitoring of co2, CCS related"
storspv "storage technology for PV"
storwind "storage technology for wind"
storcsp "storage technology for CSP"
refliq "refinery oil to SE liquids"
gridspv "grid between areas with high pv production and the rest"
gridcsp "grid between areas with high csp production and the rest"
gridwind "grid between areas with high wind production and the rest"
/
***-----------------------------------------------------------------------------
*** Definition of subsets of 'te':
***-----------------------------------------------------------------------------
teRLDCDisp(all_te) "RLDC Dispatchable technologies that produce seel"
/
/
teLearn(all_te) "Learning technologies (investment costs can be reduced)"
/
wind "wind power converters"
spv "solar photovoltaic"
csp "concentrating solar power"
storspv "storage technology for spv"
storwind "storage technology for wind"
storcsp "storage technology for csp"
/
teNoLearn(all_te) "Technologies without learning effect"
teEtaIncr(all_te) "Technologies with time variable efficiency parameter eta"
*RP* computationally the explicit build-time tracking for teEtaIncr is expensive. Therefore, I removed the heating plants, because there the efficiency is anyway high and doesn't have such a large influence
/
pc
igcc
igccc
ngcc
ngccc
ngt
bioigcc
bioigccc
/
teEtaConst(all_te) "Technologies with constant eta"
teCCS(all_te) "Technologies with CCS"
/
ngccc "natural gas combined cycle with carbon capture"
gash2c "gas to hydrogen with capture"
igccc "integrated coal gasification combined cycle with carbon capture"
$ifthen setGlobal cm_ccsfosall
pcc "pulverized coal power plant with capture"
pco "pulverized coal power plant with oxyfuel capture"
$endif
coalftcrec "coal based fischer-tropsch with capture recycle"
coalh2c "coal to hydrogen with capture"
bioftcrec "biomass based fischer-tropsch with capture recycle"
bioh2c "biomass to hydrogen with capture"
bioigccc "integrated biomass gasification combined cycle with CCS"
/
teNoCCS(all_te) "Technologies without CCS"
teChp(all_te) "Technologies that produce seel as main output und sehe as secondary output - dynamically defined"
teBio(all_te) "biomass energy systems technologies"
/
biotr "transformation of biomass"
biotrmod "modern solids from biomass"
biochp "biomass combined heat and power"
biohp "biomass heating plant"
bioigcc "integrated biomass gasification combined cycle"
bioigccc "integrated biomass gasification combined cycle with CCS"
biogas "gasification of biomass"
bioftrec "biomass based fischer-tropsch recycle"
bioftcrec "biomass based fischer-tropsch with capture recycle"
bioh2 "biomass to hydrogen"
bioh2c "biomass to hydrogen with capture"
bioethl "biomass to ethanol"
bioeths "sugar and starch biomass to ethanol"
biodiesel "oil biomass to biodiesel"
/
teRe(all_te) "renewable technologies including biomass"
/
biotr "transformation of biomass"
biotrmod "modern solids from biomass"
biochp "biomass combined heat and power"
biohp "biomass heating plant"
bioigcc "integrated biomass gasification combined cycle"
bioigccc "integrated biomass gasification combined cycle with CCS"
biogas "gasification of biomass"
bioftrec "biomass based fischer-tropsch recycle"
bioftcrec "biomass based fischer-tropsch with capture recycle"
bioh2 "biomass to hydrogen"
bioh2c "biomass to hydrogen with capture"
bioethl "biomass to ethanol"
bioeths "sugar and starch biomass to ethanol"
biodiesel "oil biomass to biodiesel"
geohdr "geothermal electric hot dry rock"
geohe "geothermal heat"
hydro "hydro electric"
wind "wind power converters"
spv "solar photovoltaic"
csp "concentrating solar power"
solhe "solar thermal heat generation"
/
teReNoBio(all_te) "renewable technologies except for biomass"
/
geohdr "geothermal electric hot dry rock"
geohe "geothermal heat"
hydro "hydro electric"
wind "wind power converters"
spv "solar photovoltaic"
csp "concentrating solar power"
*** solhe "solar thermal heat generation"
/
teNoRe(all_te) "Non renewable energy technologies"
teVRE(all_te) "technologies requiring storage"
/
wind "wind power converters"
spv "solar photovoltaic"
csp "concentrating solar power"
/
teStor(all_te) "storage technologies"
/
storspv "storage technology for spv"
storwind "storage technology for wind"
storcsp "storage technology for csp"
/
teLoc(all_te) "centralized technologies which require grid"
/
wind "wind power converters"
spv "solar photovoltaic"
csp "concentrating solar power"
/
teGrid(all_te) "grid between areas"
/
gridspv "grid between areas with high pv production and the rest"
gridcsp "grid between areas with high csp production and the rest"
gridwind "grid between areas with high wind production and the rest"
/
teFosCCS(all_te) "fossil technologies with CCS"
/
ngccc "natural gas combined cycle with carbon capture"
gash2c "gas to hydrogen with capture"
gasftcrec "gas based fischer-tropsch with capture recycle"
igccc "integrated coal gasification combined cycle with carbon capture"
$ifthen setGlobal cm_ccsfosall
pcc "pulverized coal power plant with capture"
pco "pulverized coal power plant with oxyfuel capture"
$endif
coalftcrec "coal based fischer-tropsch with capture recycle"
coalh2c "coal to hydrogen with capture"
/
teFosNoCCS(all_te) "fossil technologies without CCS"
/
ngcc "natural gas combined cycle"
gash2 "gas to hydrogen"
igcc "integrated coal gasification combined cycle"
pc "pulverized coal power plant"
coalftrec "coal based Fisher-Tropsch recycle"
coalh2 "coal to hydrogen"
ngt "natural gas turbine"
gastr "transformation of gases"
gaschp "gas combined heat and power"
gashp "gas heating plant"
dot "diesel oil turbine"
coalchp "coal combined heat and power"
coalhp "coal heating plant"
coalgas "coal gasification"
coaltr "transformation of coal"
$IF %cm_OILRETIRE% == "on" refliq
/
teBioPebiolc(all_te) "biomass technologies using pebiolc"
/
biotr
biotrmod
biochp
biohp
bioigcc
bioigccc
biogas
bioftrec
bioftcrec
bioh2
bioh2c
bioethl
/
teNoTransform(all_te) "all technologies that do not transform energy but still have investment and O&M costs (like storage or grid)"
/
storspv "storage technology for photo voltaic (PV)"
storwind "storage technology for wind"
storcsp "storage technology for concentrating solar power (CSP)"
gridspv "grid between areas with high pv production and the rest"
gridcsp "grid between areas with high csp production and the rest"
gridwind "grid between areas with high wind production and the rest"
/
teRegTechCosts(all_te) "all technologies for which we differantiate tech costs"
/
pc
igcc
ngcc
ngt
gaschp
pcc
pco
igccc
ngccc
tnrs
bioigcc
biogas
biochp
geohdr
hydro
spv
csp
wind
/
feForUe(all_enty) "final energy types that are transformed into useful energys - is filled automatically from the content of fe2ue"
ppfenFromUe(all_in) "all ppfEn that are equivalent to UE - is filled automatically from the content of fe2ue"
feForEs(all_enty) "final energy types that are transformed into final energys - is filled automatically from the content of fe2es"
ppfenFromEs(all_in) "all ppfEn that are equivalent to ES - is filled automatically from the content of fe2ue"
feViaEs2ppfen(all_enty,all_in,all_teEs) "map final energies to the primar production factor - is filled automatically from the content of fe2es and es2ppfen"
fe2ppfEn(all_enty,all_in) "mapping between CES FE variables and ESM FE variables" / /
***-----------------------------------------------------------------------------
*** Definition of the main set of quantities 'enty':
***-----------------------------------------------------------------------------
enty(all_enty) "all types of quantities"
/
peoil "primary energy oil"
pegas "primary energy gas"
pecoal "primary energy coal"
peur "primary energy uranium"
pegeo "primary energy geothermal"
pehyd "primary energy hydropower"
pewin "primary energy wind"
pesol "primary energy solar"
pebiolc "primary energy biomass lignocellulosic"
pebios "primary energy biomass sugar nd starch"
pebioil "primary energy biomass sunflowers, palm oil, etc"
seliqbio "secondary energy liquids from biomass (ex. ethanol)"
seliqfos "secondary energy liquids from fossil primary energy (ex. petrol and diesel)"
sesobio "secondary energy solids from biomass"
sesofos "secondary energy solids from fossil primary energy"
seel "secondary energy electricity"
seh2 "secondary energy hydrogen"
segabio "secondary energy gas from biomass"
segafos "secondary energy gas from fossil primary energy"
sehe "secondary energy district heating nd heat pumps"
fegas "final energy gas stationary"
fehos "final energy heating oil stationary"
fesos "final energy solids stationary"
feels "final energy electricity stationary"
fehes "final energy district heating (including combined heat nd power), nd heat pumps stationary"
feh2s "final energy hydrogen stationary"
fepet "final energy petrol transport"
fedie "final energy diesel transport"
feelt "final energy electricity for transport"
fetf "final energy transport fuels"
feh2t "final energy hydrogen transport"
co2 "carbon dioxide emissions"
ch4 "methane emissions"
n2o "n2o emissions from the energy system"
so2 "sulfur dioxide emissions"
ch4coal "fugitive emissions from coal mining"
ch4gas "fugitive emissions from gas production"
ch4oil "fugitive emissions from oil production"
ch4wstl "ch4 emissions from solid waste disposal on land"
ch4wsts "ch4 emissions from waste water"
ch4rice "ch4 emissions from rice cultivation (rice_ch4)"
ch4animals "ch4 emissions from enteric fermentation of ruminants (ent_ferm_ch4)"
ch4anmlwst "ch4 emissions from animal waste management(awms_ch4)"
ch4agwaste "ch4 emissions from agricultural waste burning (no MAC available)"
ch4forest "ch4 emissions from forest burning"
ch4savan "ch4 emissions from savannah burnging"
n2oforest "n2o emissions from forest burning"
n2osavan "n2o emissions from savannah burnging"
n2otrans "n2o emissions from transport"
n2oacid "n2o emissions from acid production (only 2005 EDGAR data for calibration of n2oadac and n2onitac baselines)"
n2oadac "n2o emissions from adipic acid production"
n2onitac "n2o emissions from nitric acid production"
n2ofert "MAC for n2o emissions from fertilizer (starting with n2ofert)"
n2ofertin "n2o emissions from Inorganic fertilizers (inorg_fert_n2o)"
n2ofertcr "n2o emissions from decay of crop residues (resid_n2o)"
n2ofertsom "n2o emissions from soil organic matter loss (som_n2o)"
n2oanwst "MAC for n2o emissions from animal waste (starting with n2oanwst)"
n2oanwstc "n2o emissions from manure applied to croplands (man_crop_n2o)"
n2oanwstm "n2o emissions from animal waste management (awms_n2o)"
n2oanwstp "n2o emissions from manure excreted on pasture (man_past_n2o)"
n2oagwaste "n2o emissions from agricultural waste burning (no MAC available)"
n2owaste "n2o emissions from waste (domestic sewage)"
co2luc "co2 emissions from land use change"
co2cement_process "co2 from cement production (only process emissions)"
n2obio "N2O emissions from pebiolc"
bc "black carbon from fossil fuel combustion"
oc "organic carbon from fossil fuel combustion"
NOx
CO
VOC
NH3
cco2 "captured CO2"
* pco2 "CCS related parameter during compression of CO2"
* tco2 "CCS related parameter during transportation of CO2"
ico2 "CCS related parameter during injection of CO2"
* sco2 "CCS related parameter during storage of CO2 - monitoring ???"
good "Generic good"
perm "Carbon permit"
!! emissions from industry sub-sectors
co2cement "CO2 emissions from clinker and cement production"
co2chemicals "CO2 emissions from chemicals production"
co2steel "CO2 emissions from steel production"
/
***-----------------------------------------------------------------------------
*** Definition of subsets of 'enty':
***-----------------------------------------------------------------------------
entyPe(all_enty) "Primary energy types (PE)"
/
peoil "PE oil"
pegas "PE gas"
pecoal "PE coal"
peur "PE uranium"
pegeo "PE geothermal"
pehyd "PE hydropower"
pewin "PE wind"
pesol "PE solar"
pebiolc "PE biomass lignocellulosic"
pebios "PE biomass sugar and starch"
pebioil "PE biomass sunflowers, palm oil, etc"
/
peBio(all_enty) "biomass primary energy types"
/
pebiolc "PE biomass lignocellulosic"
pebios "PE biomass sugar and starch"
pebioil "PE biomass sunflowers, palm oil, etc"
/
peRe(all_enty) "Renewable primary energy sources"
/
pegeo "PE geothermal"
pehyd "PE hydropower"
pewin "PE wind"
pesol "PE solar"
pebiolc "PE biomass lignocellulosic"
pebios "PE biomass sugar and starch"
pebioil "PE biomass sunflowers, palm oil, etc"
/
peFos(all_enty) "primary energy fossil fuels"
/
peoil "PE oil"
pegas "PE gas"
pecoal "PE coal"
/
peEx(all_enty) "exhaustible primary energy carriers"
/
peoil "PE oil"
pegas "PE gas"
pecoal "PE coal"
peur "PE uranium"
/
peExPol(all_enty) "primary energy fuels with polynomial"
/
peur "PE uranium"
/
peExGrade(all_enty) "exhaustible pe with step as entyPe ex-peExPol - s.b."
peRicardian(all_enty) "Ricardian PE"
peReComp(all_enty) "Renewable PE used by several technologies, thus the competition between te is modeled by q_limitGeopot equation"
/
pesol "PE solar"
/
entySe(all_enty) "secondary energy types"
/
seliqbio "secondary energy liquids from biomass"
seliqfos "secondary energy liquids from fossil primary energy"
sesobio "secondary energy solids from biomass"
sesofos "secondary energy solids from fossil primary energy"
seel "SE electricity"
seh2 "SE hydrogen"
segabio "secondary energy gas from biomass"
segafos "secondary energy gas from fossil primary energy"
sehe "SE district heating nd heat pumps"
/
entyFe(all_enty) "final energy types. Calculated in sets_calculations"
esty(all_esty) "energy service types. Have to be added by modules."
//
buildMoBio(all_esty) "modern biomass in buildings"
//
entyUe(all_enty) "Useful energy types"
//
entyFeStat(all_enty) "final energy types from stationary sector"
/
fegas "FE gas stationary"
fehos "FE heating oil stationary"
fesos "FE solids stationary"
feels "FE electricity stationary"
fehes "FE district heating (including combined heat and power), and heat pumps stationary"
feh2s "FE hydrogen stationary"
/
entyFeTrans(all_enty) "final energy types from transport sector"
/
fepet "FE petrol transport"
fedie "FE diesel transport"
feh2t "FE hydrogen transport"
feelt "FE electricity for transport"
/
feForCes(all_enty) "limit q_balFeForCes to entyFe in fe2ppfEn"
emi(all_enty) "types of emissions, these emissions are given to the climate module"
emiTe(all_enty) "types of climate-relevant energy emissions for climate coupling and reporting"
/
co2 "energy system co2"
so2 "energy system so2"
bc "black carbon from fossil fuel combustion"
oc "organic carbon from fossil fuel combustion"
ch4 "energy system ch4"
n2o "energy system n2o"
/
emiExog(all_enty) "exogenous emissions"
/
so2
bc
oc
/
emiAP(all_enty) "Used for allocation of emission factors"
/
bc
oc
/
emiMac(all_enty) "sum over sub-emissions from emiMacSector"
/
co2
n2o
ch4
/
emiMacSector(all_enty) "types of climate-relevant non-energy emissions with mac curve. Emissions in this set HAVE to be in emiMac2mac as well - if no MAC is available it will be set to zero automatically."
/
ch4coal "fugitive emissions from coal mining"
ch4gas "fugitive emissions from gas production"
ch4oil "fugitive emissions from oil production"
ch4wstl "ch4 emissions from solid waste disposal on land"
ch4wsts "ch4 emissions from waste water"
ch4rice "ch4 emissions from rice cultivation (rice_ch4)"
ch4animals "ch4 emissions from enteric fermentation of ruminants (ent_ferm_ch4)"
ch4anmlwst "ch4 emissions from animal waste management(awms_ch4)"
ch4agwaste "ch4 emissions from agricultural waste burning (no MAC available)"
ch4forest "ch4 emissions from forest burning (no MAC available)"
ch4savan "ch4 emissions from savannah burning (no MAC available)"
n2oforest "n2o emissions from forest burning (no MAC available)"
n2osavan "n2o emissions from savannah burning (no MAC available)"
n2otrans "n2o emissions from transport"
n2oadac "n2o emissions from adipic acid production"
n2onitac "n2o emissions from nitric acid production"
n2ofertin "n2o emissions from Inorganic fertilizers (inorg_fert_n2o)"
n2ofertcr "n2o emissions from decay of crop residues (resid_n2o)"
n2ofertsom "n2o emissions from soil organic matter loss (som_n2o)"
n2oanwstc "n2o emissions from manure applied to croplands (man_crop_n2o)"
n2oanwstm "n2o emissions from animal waste management (awms_n2o)"
n2oanwstp "n2o emissions from manure excreted on pasture (man_past_n2o)"
n2oagwaste "n2o emissions from agricultural waste burning (no MAC available)"
n2owaste "n2o emissions from waste (domestic sewage)"
co2luc "co2 emissions from land use change"
co2cement_process "co2 from cement production (only process emissions)"
/
MacSector(all_enty) "sectors for which mac curves exist. Some MACs are used for several emission sectors in emiMacSector."
/
ch4coal "coal mining"
ch4gas "gas production"
ch4oil "oil production"
ch4wstl "solid waste disposal on land"
ch4wsts "waste water"
ch4rice "rice cultivation"
ch4animals "enteric fermentation of ruminants"
ch4anmlwst "animal waste management"
n2otrans "transport"
n2oadac "adipic acid production"
n2onitac "nitric acid production"
n2ofert "Inorganic fertilizers"
n2oanwst "manure applied to croplands"
n2owaste "waste (domestic sewage)"
co2luc "land use change"
co2cement "cement production (only process emissions)"
co2chemicals
co2steel
/
MacSectorMagpie(all_enty) "land-use sectors for which mac curves exist in REMIND and in MAgPIE"
/
ch4rice "rice cultivation"
ch4animals "enteric fermentation of ruminants"
ch4anmlwst "animal waste management"
n2ofert "Inorganic fertilizers"
n2oanwst "manure applied to croplands"
co2luc "land use change"
/
emiMacMagpie(all_enty) "types of climate-relevant non-energy emissions with mac curve where baseline emissions come from MAgPIE only"
emiMacMagpieN2O(all_enty) "types of climate-relevant non-energy N2O emissions with mac curve where baseline emissions come from MAgPIE only"
/
n2ofertin "n2o emissions from Inorganic fertilizers (inorg_fert_n2o)"
n2ofertcr "n2o emissions from decay of crop residues (resid_n2o)"
n2ofertsom "n2o emissions from soil organic matter loss (som_n2o)"
n2oanwstc "n2o emissions from manure applied to croplands (man_crop_n2o)"
n2oanwstm "n2o emissions from animal waste management (awms_n2o)"
n2oanwstp "n2o emissions from manure excreted on pasture (man_past_n2o)"
/
emiMacMagpieCH4(all_enty) "types of climate-relevant non-energy CH4 emissions with mac curve where baseline emissions come from MAgPIE only"
/
ch4rice "ch4 emissions from rice cultivation (rice_ch4)"
ch4animals "ch4 emissions from enteric fermentation of ruminants (ent_ferm_ch4)"
ch4anmlwst "ch4 emissions from animal waste management(awms_ch4)"
/
emiMacMagpieCO2(all_enty) "types of climate-relevant non-energy CH4 emissions with mac curve where baseline emissions come from MAgPIE only"
/
co2luc "co2 emissions from land use change"
/
emiMacExo(all_enty) "types of climate-relevant non-energy emissions with mac curve where baseline emissions are exogenous"
emiMacExoN2O(all_enty) "types of climate-relevant non-energy N2O emissions with mac curve where baseline emissions are exogenous"
/
n2oforest "n2o emissions from forest burning (no MAC available)"
n2osavan "n2o emissions from savannah burning (no MAC available)"
n2oagwaste "n2o emissions from agricultural waste burning (no MAC available)"
/
emiMacExoCH4(all_enty) "types of climate-relevant non-energy CH4 emissions with mac curve where baseline emissions are exogenous"
/
ch4agwaste "ch4 emissions from agricultural waste burning (no MAC available)"
ch4forest "ch4 emissions from forest burning (no MAC available)"
ch4savan "ch4 emissions from savannah burning (no MAC available)"
/
emiFuEx(all_enty) "fugitive emissions"
/
ch4coal "fugitive emissions from coal mining"
ch4gas "fugitive emissions from gas production"
ch4oil "fugitive emissions from oil production"
/
sectorEndoEmi(all_sectorEmi) "sectors with endogenous emissions"
/
indst "industry"
res "residential"
trans "transport"
power "power"
/
sectorExogEmi(all_sectorEmi) "sectors with exogenous emissions"
/
solvents
extraction
indprocess
/
ccsCo2(all_enty) "only cco2 (???)"
/
cco2
/
rlf "cost levels of fossil fuels"
/
1*12
/
integ "set of integers for looping etc"
/
1*100
/
xirog "parameters decribing exhaustible extraction coss including long-run marginal costs and short term adjustment costs"
/
xi1, xi2, xi3, xi4, xi5, xi6, xi7, xi8
/
*** emissions exported to MAGICC
emiRCP "emission types exported to MAGICC"
/
FossilCO2
OtherCO2
CH4
N2O
SOx
CO
NMVOC
NOx
BC
OC
NH3
CF4
C2F6
C6F14
HFC23
HFC32
HFC43-10
HFC125
HFC134a
HFC143a
HFC227ea
HFC245fa
SF6
/
p "parameter for ch4 and n2o waste emissions and co2 cement emissions"
/
p1
p2
p3
p4
/
*** This is a work-around to ensure emissions are printed in correct order.
numberEmiRCP "number of emission types" / 1 * 23 /
unitsMagicc "units used for MAGICC"
/
GtC
kt
Mt
MtCH4
MtCO
MtN
MtN2O-N
MtS
/
***-----------------------------------------------------------------------------
*** Definition of the main characteristics set 'char':
***-----------------------------------------------------------------------------
char "characteristics of technologies"
/
mix0 "share in the production of v*_INIdemEn0, which is the energy demand in t0 minus the energy produced by couple production"
ccap0 "cumulated installed capacity in t0. Unit: TW"
inco0 "investment costs in t0. Unit: $/kW"
incolearn "Investment costs that can be reduced through learning. Unit: $/kW"
floorcost "Floor investment costs for learning technologies. Unit: $/kW"
eta "conversion efficiency"
omf "fixed o&m"
omv "variable o&m"
tlt "techical life time"
delta "depreciation rate"
learn "learning rate"
learnMult_woFC "multiplicative parameter in learning equation (without taking into account floor costs)"
learnExp_woFC "exponent in learning equation (without taking into account floor costs)"
learnMult_wFC "multiplicative parameter in learning equation, adjusted to take floor costs into account"
learnExp_wFC "exponent in learning equation, adjusted to take Floor Costs into account"
bgrl "lower bound on growth rate"
bgru "upper bound on growth rate"
bcal "lower bound on capacity"
bcau "upper bound on capacity"
bmil "lower bound on contribution to energy mix"
bmiu "upper bound on contribution to energy mix"
bscu "upper bound on combined heat power contribution to electricity production"
nur "multiplicator for nu"
maxprod "maximum annual production"
cost "marginal costs of extraction"
quan "quantity of fuel class"
leak "leakage rate of CCS sequestration"
omeg "NOT USED ANYMORE. New parameter: pm_omeg. Weight factor of still available capacities."
seed "initial value for control variable constraint"
lingro "linear growth of control variable additions p.a."
linconstela "elastaticity of investment costs for linear growth constraint"
limitGeopot "geographical annual solar potential"
luse "land use factor of solar technologies"
capacity "capacity of solar technologies"
constrTme "Construction time in years, needed to calculate turn-key cost premium compared to overnight costs"
tkpremused "turn-key cost premium used in the model (with a discount rate of 3+ pure rate of time preference); in comparison to overnight costs)"
lifetime "average lifetime of a technology (integral under the omeg-curve). Unit: years"
flexibility "representing ramping constraints or additional costs for partial load of technologies in power sector"
tech_stat "technology status: how close a technology is to market readiness. Scale: 0-3, with 0 'I can go out and build a GW plant today' to 3 'Still some research necessary'"
Xport "imports"
Mport "exports"
use "financial trade costs for PE use [trl$US per TWa]"
XportElasticity "PE trade adjustment cost parameter that influences the export supply elasticity"
tradeFloor "PE trade adjustment cost parameter that allows for smallest trade increase without adjustment cost"
min "minimum"
max "maximum"
usehr "number of hours in a year when the technology is used"
elh2VREcapRatio "ratio of elh2VRE capacity to storage technology capacity"
h2turbVREcapRatio "ratio of h2turbVRE capacity to storage technology capacity"
batteryVREcapRatio "ratio of battery capacity to storage technology capacity"
/
***-----------------------------------------------------------------------------
*** Definition of subsets of 'char':
***-----------------------------------------------------------------------------
charPeRe(char) "characteristics of renewables"
/
cost "marginal costs of production"
maxprod "maximum annual production"
/
s_statusTe "technology status: how close a technology is to market readiness. Scale: 0-3, with 0 'I can go out and build a GW plant today' to 3 'Still some research necessary'"
/
0 * 3
/
;
***-----------------------------------------------------------------------------
***-----------------------------------------------------------------------------
*** Definition of SETS of MACRO
***-----------------------------------------------------------------------------
***-----------------------------------------------------------------------------
Sets
in(all_in) "all inputs and outputs of the CES function"
/
inco "macroeconomic output"
lab "labour input"
kap "capital input"
en "energy input"
/
ppf(all_in) "all primary production factors"
ipf(all_in) "all intermediate production factors"
ppfKap(all_in) "primary production factors capital" / kap /
ppfEn(all_in) "primary production factors energy" / /
in_putty(all_in) "production factors subject to putty-clay dynamics"
ppf_putty(all_in) "all putty-clay primary production factors"
ipf_putty(all_in) "all putty-clay intermediate production factors"
ppfIO_putty(all_in) "factors treated in the normal CES as ppf and in putty-clay as output"
nests_putty(all_in,all_in) "defines factors which are in the same putty subnest. The first all_in gives the higher factors of the subnest"
in_complements(all_in) "factors which are perfect complements"
//
in_enerSerAdj(all_in) "energy services factors which should be constrained by adjustment costs"
//
complements_ref(all_in,all_in) "correspondence between complementary factors. Necessary to have a reference factor for the constraints equations"
fe_tax_sub_sbi(all_in,all_in) "correspondence between tax and subsidy input data resolution and model sectoral resolution. For FE which takes the pathway I to the CES "
//
fe_tax_subEs(all_in,all_esty) "correspondence between tax and subsidy input data resolution and model sectoral resolution. For FE which takes the pathway III to the CES "
//
cesParameter "parameters of the CES functions and for calibration"
/
quantity "quantity of CES function input/output"
price "price of CES function input/output"
eff "baseyear efficiency of CES function input/output"
effgr "multiplicative efficiency growth of CES function input/output"
rho "CES function elasticity parameter rho = 1 - (1 / sigma)"
xi "baseyear income share of CES function input/output"
offset_quantity "quantity offset for the CES tree if the quantity is null"
compl_coef "coefficients for the perfectly complementary factors"
/
trade(all_enty) "all traded commodities"
//
tradeMacro(all_enty) "traded macro-economic commodities"
/good, perm/
tradePe(all_enty) "traded primary energy commodities"
/
peoil, pecoal, pegas, peur, pebiolc
/
tradeSe(all_enty) "traded secondary energy commodities"
/
null
/
***-------------------------------------------------------------------------------
*** SETS for fragmented policy regimes
***-------------------------------------------------------------------------------
period1(tall) "first commitment period"
/
2010,2015,2020
/
period2(tall) "second commitment period"
/
2025,2030,2035,2040,2045,2050
/
period3(tall)"rest of century"
/
2055,2060,2065,2070,2075,2080,2085,2090,2095,2100
/
period4(tall) "period 4"
period12(tall) "period 1 and 2"
period123(tall) "period 1,2, and 3"
period1234(tall) "period 1,2,3,and 4"
***-------------------------------------------------------------------------------
*** HYBRID-SETS
***-------------------------------------------------------------------------------
sol_itr "iterator for inner solution process within one Negishi iteration"
/
1*10
/
iteration "iterator for main (Negishi/Nash) iterations"
/
1*200
/
steps "iterator for MAC steps"
/
1*801
/
;
***-----------------------------------------------------------------------------
***-----------------------------------------------------------------------------
*** Helpful constructs: alias
***-----------------------------------------------------------------------------
***-----------------------------------------------------------------------------
alias(t,t2);
alias(t,t3);
alias(tall,tall2);
alias(tall,tall3);
alias(ttot,ttot2);
alias(opTimeYr,opTimeYr2);
alias(teVRE,teVRE2);
alias(teLoc,teLoc2);
alias(all_te,all_te2);
alias(te,te2);
alias(all_enty,all_enty2);
alias(enty,enty2);
alias(enty,enty3);
alias(enty,enty4);
alias(enty,enty5);
alias(enty,enty6);
alias(enty,enty7);
alias(entyPE,entyPE2);
alias(entySe,entySe2);
alias(entyFe,entyFe2);
alias(teEs,teEs2);
alias(esty,esty2);
alias(rlf,rlf2);
alias(regi,regi2);
alias(in,out);
alias(steps,steps2);
alias(in,in2,in3);
alias(ipf,ipf2);
***-----------------------------------------------------------------------------
***-----------------------------------------------------------------------------
*** Definition of MAPPINGS
***-----------------------------------------------------------------------------
***-----------------------------------------------------------------------------
Sets
*NB* mappings resulting from set opertations
en2en(all_enty,all_enty,all_te) "all energy conversion mappings"
en2en2(all_enty,all_enty,all_te) "alias of en2en: all energy conversion mappings"
en2se(all_enty,all_enty,all_te) "all energy conversion mappings producing SE"
te2rlf(all_te,rlf) "all technologies to grades"
pe2se(all_enty,all_enty,all_te) "map primary energy carriers to secondary"
/
pegas.seel.ngcc
pegas.seel.ngccc
pegas.seel.ngt
pegas.seel.gaschp
pegas.segafos.gastr
pegas.seh2.gash2
pegas.seh2.gash2c
pegas.sehe.gashp
pegas.seliqfos.gasftrec