-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathenergy_node_positions.yml
3520 lines (3520 loc) · 77 KB
/
energy_node_positions.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
agriculture_burner_crude_oil:
x: 1520
"y": 6020
agriculture_burner_hydrogen:
x: 1520
"y": 6500
agriculture_burner_network_gas:
x: 1520
"y": 6380
agriculture_burner_wood_pellets:
x: 1520
"y": 6080
agriculture_chp_engine_biogas:
x: 3920
"y": 6320
agriculture_chp_engine_network_gas_dispatchable:
x: 3920
"y": 6200
agriculture_chp_engine_network_gas_must_run:
x: 3920
"y": 6260
agriculture_chp_wood_pellets:
x: 3920
"y": 6380
agriculture_final_demand_bio_kerosene:
x: 3480
"y": 6020
agriculture_final_demand_biodiesel:
x: 3480
"y": 5960
agriculture_final_demand_crude_oil:
x: 3120
"y": 6020
agriculture_final_demand_diesel:
x: 3480
"y": 5720
agriculture_final_demand_electricity:
x: 3120
"y": 6140
agriculture_final_demand_ht_central_steam_hot_water:
x: 3480
"y": 6260
agriculture_final_demand_ht_steam_hot_water:
x: 3120
"y": 6260
agriculture_final_demand_hydrogen:
x: 3120
"y": 6380
agriculture_final_demand_kerosene:
x: 3480
"y": 5780
agriculture_final_demand_local_steam_hot_water:
x: 3480
"y": 6320
agriculture_final_demand_lpg:
x: 3480
"y": 5840
agriculture_final_demand_mt_steam_hot_water:
x: 3120
"y": 6200
agriculture_final_demand_network_gas:
x: 3120
"y": 6320
agriculture_final_demand_other_bio_oil:
x: 3480
"y": 5900
agriculture_final_demand_other_oil:
x: 3480
"y": 5660
agriculture_final_demand_wood_pellets:
x: 3120
"y": 6080
agriculture_flexibility_p2h_hydrogen_electricity:
x: 1520
"y": 6440
agriculture_flexibility_p2h_network_gas_electricity:
x: 1520
"y": 6320
agriculture_geothermal:
x: 1520
"y": 6260
agriculture_heat_backup_burner_network_gas:
x: 3920
"y": 6440
agriculture_heat_unused_steam_hot_water:
x: 3580
"y": 6440
agriculture_heatpump_water_water_electricity:
x: 1520
"y": 6200
agriculture_heatpump_water_water_ts_electricity:
x: 1520
"y": 6140
agriculture_hydrogen_hybrid_heat:
x: 1280
"y": 6480
agriculture_locally_available_electricity:
x: 3700
"y": 6200
agriculture_locally_available_steam_hot_water:
x: 3700
"y": 6320
agriculture_network_gas_hybrid_heat:
x: 1280
"y": 6360
agriculture_useful_demand_electricity:
x: 720
"y": 6500
agriculture_useful_demand_useable_heat:
x: 720
"y": 6260
buildings_appliances_coal:
x: 1520
"y": 8120
buildings_appliances_crude_oil:
x: 1520
"y": 8180
buildings_appliances_electricity:
x: 1520
"y": 8360
buildings_appliances_network_gas:
x: 1520
"y": 8240
buildings_appliances_wood_pellets:
x: 1520
"y": 8300
buildings_cooling_airconditioning_electricity:
x: 1520
"y": 7700
buildings_cooling_collective_heatpump_water_water_ts_electricity:
x: 1520
"y": 7760
buildings_cooling_heatpump_air_water_electricity:
x: 1520
"y": 7820
buildings_cooling_heatpump_air_water_network_gas:
x: 1520
"y": 7640
buildings_cooling_heatpump_surface_water_water_ts_electricity:
x: 1520
"y": 7880
buildings_cooling_savings_insulation_cooling:
x: 200
"y": 7720
buildings_final_demand_bio_kerosene:
x: 3480
"y": 7100
buildings_final_demand_biodiesel:
x: 3480
"y": 7040
buildings_final_demand_coal:
x: 3120
"y": 7000
buildings_final_demand_crude_oil:
x: 3120
"y": 6940
buildings_final_demand_diesel:
x: 3480
"y": 6800
buildings_final_demand_electricity:
x: 3120
"y": 7240
buildings_final_demand_for_appliances_coal:
x: 2320
"y": 8040
buildings_final_demand_for_appliances_crude_oil:
x: 2320
"y": 8100
buildings_final_demand_for_appliances_electricity:
x: 2320
"y": 8280
buildings_final_demand_for_appliances_network_gas:
x: 2320
"y": 8160
buildings_final_demand_for_appliances_wood_pellets:
x: 2320
"y": 8220
buildings_final_demand_for_cooling_electricity:
x: 2320
"y": 7680
buildings_final_demand_for_cooling_network_gas:
x: 2320
"y": 7620
buildings_final_demand_for_lighting_electricity:
x: 2320
"y": 7920
buildings_final_demand_for_space_heating_coal:
x: 2320
"y": 6600
buildings_final_demand_for_space_heating_crude_oil:
x: 2320
"y": 6660
buildings_final_demand_for_space_heating_electricity:
x: 2320
"y": 7140
buildings_final_demand_for_space_heating_ht_steam_hot_water:
x: 2320
"y": 7020
buildings_final_demand_for_space_heating_hydrogen:
x: 2320
"y": 7080
buildings_final_demand_for_space_heating_lt_steam_hot_water:
x: 2320
"y": 6900
buildings_final_demand_for_space_heating_mt_steam_hot_water:
x: 2320
"y": 6960
buildings_final_demand_for_space_heating_network_gas:
x: 2320
"y": 6720
buildings_final_demand_for_space_heating_wood_pellets:
x: 2320
"y": 6780
buildings_final_demand_ht_steam_hot_water:
x: 3120
"y": 7420
buildings_final_demand_hydrogen:
x: 3120
"y": 6880
buildings_final_demand_kerosene:
x: 3480
"y": 6860
buildings_final_demand_lpg:
x: 3480
"y": 6920
buildings_final_demand_lt_steam_hot_water:
x: 3120
"y": 7300
buildings_final_demand_mt_steam_hot_water:
x: 3120
"y": 7360
buildings_final_demand_network_gas:
x: 3120
"y": 7060
buildings_final_demand_other_bio_oil:
x: 3480
"y": 6980
buildings_final_demand_other_oil:
x: 3480
"y": 6740
buildings_final_demand_solar_thermal:
x: 3120
"y": 7180
buildings_final_demand_wood_pellets:
x: 3120
"y": 7120
buildings_lighting_efficient_fluorescent_electricity:
x: 1520
"y": 7940
buildings_lighting_led_electricity:
x: 1520
"y": 8000
buildings_lighting_savings_from_daylight_control_light:
x: 580
"y": 8020
buildings_lighting_savings_from_motion_detection_light:
x: 200
"y": 8020
buildings_lighting_standard_fluorescent_electricity:
x: 1520
"y": 8060
buildings_local_production_electricity:
x: 3520
"y": 7240
buildings_solar_pv_solar_radiation:
x: 3920
"y": 7240
buildings_space_heater_coal:
x: 1520
"y": 6600
buildings_space_heater_coal_aggregator:
x: 1060
"y": 6600
buildings_space_heater_collective_heatpump_water_water_ts_electricity:
x: 1520
"y": 7200
buildings_space_heater_collective_heatpump_water_water_ts_electricity_aggregator:
x: 1060
"y": 7200
buildings_space_heater_combined_hydrogen:
x: 1520
"y": 7080
buildings_space_heater_combined_hydrogen_aggregator:
x: 1060
"y": 7080
buildings_space_heater_crude_oil:
x: 1520
"y": 6660
buildings_space_heater_crude_oil_aggregator:
x: 1060
"y": 6660
buildings_space_heater_deficit:
x: 1240
"y": 7560
buildings_space_heater_district_heating_ht_steam_hot_water:
x: 1520
"y": 7020
buildings_space_heater_district_heating_ht_steam_hot_water_aggregator:
x: 1060
"y": 7020
buildings_space_heater_district_heating_lt_steam_hot_water:
x: 1520
"y": 6900
buildings_space_heater_district_heating_lt_steam_hot_water_aggregator:
x: 1060
"y": 6900
buildings_space_heater_district_heating_mt_steam_hot_water:
x: 1520
"y": 6960
buildings_space_heater_district_heating_mt_steam_hot_water_aggregator:
x: 1060
"y": 6960
buildings_space_heater_electricity:
x: 1520
"y": 6840
buildings_space_heater_electricity_aggregator:
x: 1060
"y": 6840
buildings_space_heater_heatpump_air_water_electricity:
x: 1520
"y": 7320
buildings_space_heater_heatpump_air_water_electricity_aggregator:
x: 1060
"y": 7320
buildings_space_heater_heatpump_air_water_network_gas:
x: 1520
"y": 7140
buildings_space_heater_heatpump_air_water_network_gas_aggregator:
x: 1060
"y": 7140
buildings_space_heater_heatpump_surface_water_water_ts_electricity:
x: 1520
"y": 7260
buildings_space_heater_heatpump_surface_water_water_ts_electricity_aggregator:
x: 1060
"y": 7260
buildings_space_heater_hybrid_crude_oil_heatpump_air_water_electricity:
x: 1520
"y": 7560
buildings_space_heater_hybrid_crude_oil_heatpump_air_water_electricity_aggregator:
x: 1060
"y": 7500
buildings_space_heater_hybrid_heatpump_air_water_electricity:
x: 1520
"y": 7380
buildings_space_heater_hybrid_heatpump_air_water_electricity_aggregator:
x: 1060
"y": 7380
buildings_space_heater_hybrid_hydrogen_heatpump_air_water_electricity:
x: 1520
"y": 7440
buildings_space_heater_hybrid_hydrogen_heatpump_air_water_electricity_aggregator:
x: 1060
"y": 7440
buildings_space_heater_network_gas:
x: 1520
"y": 6720
buildings_space_heater_network_gas_aggregator:
x: 1060
"y": 6720
buildings_space_heater_solar_thermal:
x: 1520
"y": 7500
buildings_space_heater_wood_pellets:
x: 1520
"y": 6780
buildings_space_heater_wood_pellets_aggregator:
x: 1060
"y": 6780
buildings_useful_demand_after_insulation_cooling:
x: 740
"y": 7620
buildings_useful_demand_after_motion_detection_daylight_control_light:
x: 740
"y": 7920
buildings_useful_demand_after_motion_detection_light:
x: 380
"y": 7920
buildings_useful_demand_cooling:
x: 40
"y": 7620
buildings_useful_demand_for_appliances:
x: 740
"y": 8060
buildings_useful_demand_for_space_heating_buildings_future:
x: 60
"y": 6960
buildings_useful_demand_for_space_heating_buildings_future_after_solar_thermal:
x: 500
"y": 6960
buildings_useful_demand_for_space_heating_buildings_present:
x: 60
"y": 6900
buildings_useful_demand_for_space_heating_buildings_present_after_solar_thermal:
x: 500
"y": 6900
buildings_useful_demand_light:
x: 40
"y": 7920
bunkers_aviation_mixer_kerosene:
x: 2040
"y": 16120
bunkers_final_demand_ammonia:
x: 3120
"y": 15920
bunkers_final_demand_bio_kerosene:
x: 3120
"y": 15680
bunkers_final_demand_electricity:
x: 3120
"y": 15980
bunkers_final_demand_for_aviation_bio_kerosene:
x: 2320
"y": 16140
bunkers_final_demand_for_aviation_electricity:
x: 2320
"y": 16260
bunkers_final_demand_for_aviation_hydrogen:
x: 2320
"y": 16200
bunkers_final_demand_for_aviation_kerosene:
x: 2320
"y": 16060
bunkers_final_demand_for_shipping_ammonia:
x: 2320
"y": 15920
bunkers_final_demand_for_shipping_electricity:
x: 2320
"y": 15980
bunkers_final_demand_for_shipping_heavy_fuel_oil:
x: 2320
"y": 15740
bunkers_final_demand_for_shipping_hydrogen:
x: 2320
"y": 15860
bunkers_final_demand_for_shipping_lng:
x: 2320
"y": 15800
bunkers_final_demand_heavy_fuel_oil:
x: 3120
"y": 15740
bunkers_final_demand_hydrogen:
x: 3120
"y": 15860
bunkers_final_demand_kerosene:
x: 3120
"y": 15620
bunkers_final_demand_lng:
x: 3120
"y": 15800
bunkers_plane_using_electricity:
x: 1500
"y": 16260
bunkers_plane_using_hydrogen:
x: 1500
"y": 16200
bunkers_plane_using_kerosene_mix:
x: 1500
"y": 16120
bunkers_ship_using_ammonia:
x: 1520
"y": 15920
bunkers_ship_using_electricity:
x: 1520
"y": 15980
bunkers_ship_using_heavy_fuel_oil:
x: 1520
"y": 15700
bunkers_ship_using_hydrogen:
x: 1520
"y": 15840
bunkers_ship_using_lng:
x: 1520
"y": 15780
bunkers_total_useful_demand_planes:
x: 720
"y": 16200
bunkers_total_useful_demand_ships:
x: 720
"y": 15880
bunkers_useful_demand_planes:
x: 720
"y": 16140
bunkers_useful_demand_ships:
x: 720
"y": 15820
energy_battery_curtailed_solar_electricity:
x: 6780
"y": 1720
energy_battery_curtailed_wind_electricity:
x: 6780
"y": 2020
energy_battery_solar_electricity:
x: 6240
"y": 1840
energy_battery_solar_pv_solar_radiation:
x: 6980
"y": 1840
energy_battery_unused_electricity:
x: 6580
"y": 1720
energy_battery_wind_electricity:
x: 6240
"y": 1900
energy_battery_wind_turbine_inland:
x: 6980
"y": 1900
energy_biogas_fermentation_wet_biomass:
x: 7480
"y": 3000
energy_blastfurnace_transformation_cokes:
x: 4240
"y": 9840
energy_chemical_fertilizers_transformation_external_coupling_node:
x: 4560
"y": 9600
energy_chemical_other_transformation_external_coupling_node:
x: 4560
"y": 9540
energy_chemical_refineries_transformation_external_coupling_node:
x: 4560
"y": 9660
energy_chp_coal_gas:
x: 3920
"y": 9400
energy_chp_combined_cycle_ht_network_gas:
x: 6360
"y": 5760
energy_chp_combined_cycle_mt_network_gas:
x: 6360
"y": 4440
energy_chp_local_engine_ht_biogas:
x: 6060
"y": 6000
energy_chp_local_engine_ht_network_gas:
x: 6060
"y": 6060
energy_chp_local_engine_mt_biogas:
x: 6060
"y": 4740
energy_chp_local_engine_mt_network_gas:
x: 6060
"y": 4680
energy_chp_local_ht_wood_pellets_ccs_dispatchable:
x: 6060
"y": 5940
energy_chp_local_ht_wood_pellets_ccs_must_run:
x: 6060
"y": 5880
energy_chp_local_ht_wood_pellets_dispatchable:
x: 6060
"y": 5820
energy_chp_local_ht_wood_pellets_must_run:
x: 6060
"y": 5760
energy_chp_local_mt_wood_pellets_ccs_dispatchable:
x: 6060
"y": 4620
energy_chp_local_mt_wood_pellets_ccs_must_run:
x: 6060
"y": 4560
energy_chp_local_mt_wood_pellets_dispatchable:
x: 6060
"y": 4500
energy_chp_local_mt_wood_pellets_must_run:
x: 6060
"y": 4440
energy_chp_supercritical_ccs_ht_waste_mix:
x: 6360
"y": 5820
energy_chp_supercritical_ccs_mt_waste_mix:
x: 6360
"y": 4500
energy_chp_supercritical_ht_waste_mix:
x: 6360
"y": 5880
energy_chp_supercritical_mt_waste_mix:
x: 6360
"y": 4560
energy_chp_ultra_supercritical_cofiring_ht_coal:
x: 6360
"y": 5940
energy_chp_ultra_supercritical_cofiring_mt_coal:
x: 6360
"y": 4620
energy_chp_ultra_supercritical_ht_coal:
x: 6360
"y": 5700
energy_chp_ultra_supercritical_ht_lignite:
x: 6360
"y": 6060
energy_chp_ultra_supercritical_mt_coal:
x: 6360
"y": 4680
energy_chp_ultra_supercritical_mt_lignite:
x: 6360
"y": 4740
energy_cokesoven_transformation_coal:
x: 4560
"y": 9780
energy_compressor_network_gas:
x: 3400
"y": 4300
energy_direct_air_capture_co2_electricity:
x: 6620
"y": 7800
energy_distribution_ammonia:
x: 5720
"y": 8280
energy_distribution_bio_ethanol:
x: 6240
"y": 740
energy_distribution_bio_kerosene:
x: 6240
"y": 920
energy_distribution_bio_lng:
x: 6240
"y": 860
energy_distribution_bio_oil:
x: 6240
"y": 680
energy_distribution_biodiesel:
x: 6240
"y": 800
energy_distribution_biogas:
x: 7340
"y": 3000
energy_distribution_biogenic_waste:
x: 7420
"y": 4900
energy_distribution_coal:
x: 7340
"y": 3380
energy_distribution_coal_gas:
x: 4100
"y": 9780
energy_distribution_cokes:
x: 4400
"y": 9920
energy_distribution_crude_oil:
x: 7340
"y": 3320
energy_distribution_crude_oil_loss:
x: 7180
"y": 3260
energy_distribution_diesel:
x: 6060
"y": 8680
energy_distribution_dry_biomass:
x: 7520
"y": 2340
energy_distribution_gasoline:
x: 6060
"y": 8560
energy_distribution_greengas:
x: 6060
"y": 6980
energy_distribution_heavy_fuel_oil:
x: 6060
"y": 8740
energy_distribution_ht_steam_hot_water:
x: 5600
"y": 6120
energy_distribution_kerosene:
x: 6060
"y": 8500
energy_distribution_lignite:
x: 7340
"y": 3440
energy_distribution_liquid_hydrogen:
x: 6620
"y": 7320
energy_distribution_lng:
x: 7500
"y": 4520
energy_distribution_lohc:
x: 6620
"y": 7380
energy_distribution_lpg:
x: 6060
"y": 8620
energy_distribution_lt_steam_hot_water:
x: 5580
"y": 3840
energy_distribution_methanol:
x: 6060
"y": 8400
energy_distribution_mt_steam_hot_water:
x: 5600
"y": 4800
energy_distribution_network_gas_loss:
x: 5500
"y": 6920
energy_distribution_non_biogenic_waste:
x: 7420
"y": 4800
energy_distribution_oily_biomass:
x: 7520
"y": 2780
energy_distribution_propane:
x: 6060
"y": 7040
energy_distribution_torrefied_biomass_pellets:
x: 7180
"y": 2300
energy_distribution_uranium_oxide:
x: 7020
"y": 3680
energy_distribution_waste_mix:
x: 7020
"y": 3740
energy_distribution_wet_biomass:
x: 7520
"y": 2560
energy_distribution_wood_pellets:
x: 7180
"y": 2360
energy_export_ammonia_backup:
x: 3200
"y": 10840
energy_export_ammonia_baseload:
x: 3200
"y": 10900
energy_export_bio_kerosene_backup:
x: 3200
"y": 12760
energy_export_bio_oil_products_backup:
x: 3200
"y": 12880
energy_export_biodiesel_backup:
x: 3200
"y": 12820
energy_export_coal_backup:
x: 3200
"y": 12160
energy_export_coal_baseload:
x: 3200
"y": 12220
energy_export_cokes_backup:
x: 3200
"y": 12400
energy_export_cokes_baseload:
x: 3200
"y": 12460
energy_export_crude_oil_backup:
x: 3200
"y": 12040
energy_export_crude_oil_baseload:
x: 3200
"y": 12100
energy_export_diesel_backup:
x: 3200
"y": 11560
energy_export_diesel_baseload:
x: 3200
"y": 11620
energy_export_electricity:
x: 4860
"y": 1920
energy_export_gasoline_backup:
x: 3200
"y": 11440
energy_export_gasoline_baseload:
x: 3200
"y": 11500
energy_export_greengas_backup:
x: 3200
"y": 11380
energy_export_greengas_baseload:
x: 3200
"y": 11320
energy_export_heavy_fuel_oil_backup:
x: 3200
"y": 11800
energy_export_heavy_fuel_oil_baseload:
x: 3200
"y": 11860
energy_export_hydrogen_backup:
x: 3200
"y": 10960
energy_export_hydrogen_baseload:
x: 3200
"y": 11020
energy_export_kerosene_backup:
x: 3200
"y": 11920
energy_export_kerosene_baseload:
x: 3200
"y": 11980
energy_export_lignite_backup:
x: 3200
"y": 12280
energy_export_lignite_baseload:
x: 3200
"y": 12340
energy_export_liquid_hydrogen_baseload:
x: 3200
"y": 11080
energy_export_lng_baseload:
x: 3200
"y": 12640
energy_export_lohc_baseload:
x: 3200
"y": 11140
energy_export_lpg_backup:
x: 3200
"y": 11680
energy_export_lpg_baseload:
x: 3200
"y": 11740
energy_export_methanol_backup:
x: 3200
"y": 12700
energy_export_natural_gas_backup:
x: 3200
"y": 11260
energy_export_natural_gas_baseload:
x: 3200
"y": 11200
energy_export_oil_products:
x: 3200
"y": 12580
energy_export_uranium_oxide:
x: 3200
"y": 12520
energy_extraction_coal:
x: 7700
"y": 3380
energy_extraction_crude_oil:
x: 7700
"y": 3320
energy_extraction_lignite:
x: 7700
"y": 3440
energy_extraction_natural_gas:
x: 7700
"y": 4280
energy_extraction_uranium_oxide:
x: 7700
"y": 3680
energy_flexibility_curtailment_electricity:
x: 5340
"y": 2120
energy_flexibility_flow_batteries_electricity:
x: 5340
"y": 2480
energy_flexibility_hv_opac_electricity:
x: 5340
"y": 2360
energy_flexibility_mv_batteries_electricity:
x: 5340
"y": 2300
energy_flexibility_pumped_storage_electricity:
x: 5340
"y": 2420
energy_flexibility_solar_batteries_electricity:
x: 6780
"y": 1780
energy_flexibility_wind_batteries_electricity:
x: 6780
"y": 1960
energy_greengas_gasification_dry_biomass:
x: 6680
"y": 7040
energy_greengas_gasification_wet_biomass:
x: 6680
"y": 6960
energy_greengas_production:
x: 6420
"y": 6980
energy_greengas_upgrade_biogas:
x: 6680
"y": 6900
energy_heat_backup_burner_ht_network_gas:
x: 6060
"y": 6780
energy_heat_backup_burner_lt_network_gas:
x: 6060
"y": 3900
energy_heat_backup_burner_mt_network_gas:
x: 6060
"y": 4860
energy_heat_boiler_ht_electricity:
x: 6060
"y": 6300
energy_heat_boiler_lt_electricity:
x: 6060
"y": 3960
energy_heat_boiler_mt_electricity:
x: 6060
"y": 4920
energy_heat_burner_ht_coal:
x: 6060
"y": 6600
energy_heat_burner_ht_crude_oil:
x: 6360
"y": 6180
energy_heat_burner_ht_hydrogen:
x: 6060
"y": 6240
energy_heat_burner_ht_network_gas:
x: 6060
"y": 6360
energy_heat_burner_ht_waste_mix:
x: 6360
"y": 6240
energy_heat_burner_ht_wood_pellets:
x: 6060
"y": 6420
energy_heat_burner_lt_hydrogen:
x: 6060
"y": 4020
energy_heat_burner_mt_coal:
x: 6060
"y": 4980
energy_heat_burner_mt_crude_oil:
x: 6360
"y": 4860
energy_heat_burner_mt_hydrogen:
x: 6060
"y": 5040
energy_heat_burner_mt_network_gas:
x: 6060
"y": 5100
energy_heat_burner_mt_waste_mix:
x: 6360
"y": 4920
energy_heat_burner_mt_wood_pellets:
x: 6060
"y": 5160
energy_heat_distribution_ht_loss:
x: 5480
"y": 6220
energy_heat_distribution_lt_loss:
x: 5460
"y": 3920
energy_heat_distribution_mt_loss:
x: 5480
"y": 4900
energy_heat_dumped_ht_steam_hot_water:
x: 5600
"y": 5980
energy_heat_dumped_lt_steam_hot_water:
x: 5580
"y": 3720
energy_heat_dumped_mt_steam_hot_water:
x: 5600
"y": 4660
energy_heat_flexibility_p2h_boiler_ht_electricity:
x: 6060
"y": 6720
energy_heat_flexibility_p2h_boiler_mt_electricity:
x: 6060
"y": 5640
energy_heat_flexibility_p2h_heatpump_ht_electricity:
x: 6060
"y": 6660
energy_heat_flexibility_p2h_heatpump_mt_electricity:
x: 6060
"y": 5700
energy_heat_heatpump_drink_water_water_ts_lt_electricity:
x: 6060
"y": 4260
energy_heat_heatpump_drink_water_water_ts_mt_electricity:
x: 6060
"y": 5520
energy_heat_heatpump_surface_water_water_ts_lt_electricity:
x: 6060
"y": 4140
energy_heat_heatpump_surface_water_water_ts_mt_electricity:
x: 6060
"y": 5400
energy_heat_heatpump_waste_water_water_ts_lt_electricity:
x: 6060
"y": 4200
energy_heat_heatpump_waste_water_water_ts_mt_electricity:
x: 6060
"y": 5460
energy_heat_heatpump_water_water_ht_electricity:
x: 6060
"y": 6480
energy_heat_heatpump_water_water_lt_electricity:
x: 6060
"y": 4080
energy_heat_heatpump_water_water_mt_electricity:
x: 6060
"y": 5580
energy_heat_import_ht_steam_hot_water:
x: 6360
"y": 6120
energy_heat_import_lt_steam_hot_water:
x: 6360
"y": 3840
energy_heat_import_mt_steam_hot_water:
x: 6360
"y": 4800
energy_heat_network_storage_ht_steam_hot_water:
x: 5740
"y": 6040