-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIIM-I Project v1.twb
More file actions
7012 lines (7011 loc) · 504 KB
/
IIM-I Project v1.twb
File metadata and controls
7012 lines (7011 loc) · 504 KB
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
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20211.21.0511.0935 -->
<workbook source-build='2021.1.2 (20211.21.0511.0935)' source-platform='mac' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<AutoCreateAndUpdateDSDPhoneLayouts />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<_.fcp.SetMembershipControl.true...SetMembershipControl />
<SheetIdentifierTracking />
<WindowsPersistSimpleIdentifiers />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' inline='true' name='federated.1t9fzkb0x64qyz10n7os90gago5c' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='IIM-I Project Tableau Dashboard' name='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas'>
<connection class='excel-direct' cleaning='no' compat='no' dataRefreshTime='' filename='/Users/kinshukchaturvedi/Desktop/IIM-I Project Tableau Dashboard.xlsx' interpretationMode='0' password='' server='' validate='no' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas' name='Demand data for model' table='['Demand data for model$']' type='table'>
<columns gridOrigin='B2:F74:no:B2:F74:0' header='yes' outcome='2'>
<column datatype='string' name='Years' ordinal='0' />
<column datatype='string' name='Months' ordinal='1' />
<column datatype='integer' name='Month no.' ordinal='2' />
<column datatype='integer' name='Quarter no.' ordinal='3' />
<column datatype='real' name='Power demand (MW)' ordinal='4' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation type='collection'>
<relation connection='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas' name='Demand data for model' table='['Demand data for model$']' type='table'>
<columns gridOrigin='B2:F74:no:B2:F74:0' header='yes' outcome='2'>
<column datatype='string' name='Years' ordinal='0' />
<column datatype='string' name='Months' ordinal='1' />
<column datatype='integer' name='Month no.' ordinal='2' />
<column datatype='integer' name='Quarter no.' ordinal='3' />
<column datatype='real' name='Power demand (MW)' ordinal='4' />
</columns>
</relation>
<relation connection='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas' name='Supply data for model' table='['Supply data for model$']' type='table'>
<columns gridOrigin='B2:F74:no:B2:F74:0' header='yes' outcome='2'>
<column datatype='string' name='Years' ordinal='0' />
<column datatype='string' name='Months' ordinal='1' />
<column datatype='integer' name='Month no.' ordinal='2' />
<column datatype='integer' name='Quarter no.' ordinal='3' />
<column datatype='real' name='Power available (MW)' ordinal='4' />
</columns>
</relation>
<relation connection='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas' name='Supply demand_Gap' table='['Supply demand_Gap$']' type='table'>
<columns gridOrigin='B2:F74:no:B2:F74:0' header='yes' outcome='2'>
<column datatype='string' name='Years' ordinal='0' />
<column datatype='string' name='Months' ordinal='1' />
<column datatype='integer' name='Month no.' ordinal='2' />
<column datatype='integer' name='Quarter no.' ordinal='3' />
<column datatype='real' name='Gap (MW)' ordinal='4' />
</columns>
</relation>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<cols>
<map key='[Gap (MW)]' value='[Supply demand_Gap].[Gap (MW)]' />
<map key='[Month no. (Supply data for model)]' value='[Supply data for model].[Month no.]' />
<map key='[Month no. (Supply demand!Gap)]' value='[Supply demand_Gap].[Month no.]' />
<map key='[Month no.]' value='[Demand data for model].[Month no.]' />
<map key='[Months (Supply data for model)]' value='[Supply data for model].[Months]' />
<map key='[Months (Supply demand!Gap)]' value='[Supply demand_Gap].[Months]' />
<map key='[Months]' value='[Demand data for model].[Months]' />
<map key='[Power available (MW)]' value='[Supply data for model].[Power available (MW)]' />
<map key='[Power demand (MW)]' value='[Demand data for model].[Power demand (MW)]' />
<map key='[Quarter no. (Supply data for model)]' value='[Supply data for model].[Quarter no.]' />
<map key='[Quarter no. (Supply demand!Gap)]' value='[Supply demand_Gap].[Quarter no.]' />
<map key='[Quarter no.]' value='[Demand data for model].[Quarter no.]' />
<map key='[Years (Supply data for model)]' value='[Supply data for model].[Years]' />
<map key='[Years (Supply demand!Gap)]' value='[Supply demand_Gap].[Years]' />
<map key='[Years]' value='[Demand data for model].[Years]' />
</cols>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Demand data for model]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='context'>0</attribute>
<attribute datatype='string' name='gridOrigin'>"B2:F74:no:B2:F74:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>2</attribute>
</attributes>
</metadata-record>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Supply data for model]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='context'>0</attribute>
<attribute datatype='string' name='gridOrigin'>"B2:F74:no:B2:F74:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>2</attribute>
</attributes>
</metadata-record>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Supply demand_Gap]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='context'>0</attribute>
<attribute datatype='string' name='gridOrigin'>"B2:F74:no:B2:F74:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>2</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Years</remote-name>
<remote-type>130</remote-type>
<local-name>[Years]</local-name>
<parent-name>[Demand data for model]</parent-name>
<remote-alias>Years</remote-alias>
<ordinal>0</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RIN_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Demand data for model_228A27A856AD483AB58962E675FD36E5]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Months</remote-name>
<remote-type>130</remote-type>
<local-name>[Months]</local-name>
<parent-name>[Demand data for model]</parent-name>
<remote-alias>Months</remote-alias>
<ordinal>1</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RIN_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Demand data for model_228A27A856AD483AB58962E675FD36E5]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Month no.</remote-name>
<remote-type>20</remote-type>
<local-name>[Month no.]</local-name>
<parent-name>[Demand data for model]</parent-name>
<remote-alias>Month no.</remote-alias>
<ordinal>2</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Demand data for model_228A27A856AD483AB58962E675FD36E5]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Quarter no.</remote-name>
<remote-type>20</remote-type>
<local-name>[Quarter no.]</local-name>
<parent-name>[Demand data for model]</parent-name>
<remote-alias>Quarter no.</remote-alias>
<ordinal>3</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Demand data for model_228A27A856AD483AB58962E675FD36E5]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Power demand (MW)</remote-name>
<remote-type>5</remote-type>
<local-name>[Power demand (MW)]</local-name>
<parent-name>[Demand data for model]</parent-name>
<remote-alias>Power demand (MW)</remote-alias>
<ordinal>4</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Demand data for model_228A27A856AD483AB58962E675FD36E5]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Years</remote-name>
<remote-type>130</remote-type>
<local-name>[Years (Supply data for model)]</local-name>
<parent-name>[Supply data for model]</parent-name>
<remote-alias>Years</remote-alias>
<ordinal>5</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RIN_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply data for model_F9D40B943420433F82D46F4CD94C0116]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Months</remote-name>
<remote-type>130</remote-type>
<local-name>[Months (Supply data for model)]</local-name>
<parent-name>[Supply data for model]</parent-name>
<remote-alias>Months</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RIN_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply data for model_F9D40B943420433F82D46F4CD94C0116]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Month no.</remote-name>
<remote-type>20</remote-type>
<local-name>[Month no. (Supply data for model)]</local-name>
<parent-name>[Supply data for model]</parent-name>
<remote-alias>Month no.</remote-alias>
<ordinal>7</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply data for model_F9D40B943420433F82D46F4CD94C0116]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Quarter no.</remote-name>
<remote-type>20</remote-type>
<local-name>[Quarter no. (Supply data for model)]</local-name>
<parent-name>[Supply data for model]</parent-name>
<remote-alias>Quarter no.</remote-alias>
<ordinal>8</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply data for model_F9D40B943420433F82D46F4CD94C0116]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Power available (MW)</remote-name>
<remote-type>5</remote-type>
<local-name>[Power available (MW)]</local-name>
<parent-name>[Supply data for model]</parent-name>
<remote-alias>Power available (MW)</remote-alias>
<ordinal>9</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply data for model_F9D40B943420433F82D46F4CD94C0116]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Years</remote-name>
<remote-type>130</remote-type>
<local-name>[Years (Supply demand!Gap)]</local-name>
<parent-name>[Supply demand_Gap]</parent-name>
<remote-alias>Years</remote-alias>
<ordinal>10</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RIN_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Months</remote-name>
<remote-type>130</remote-type>
<local-name>[Months (Supply demand!Gap)]</local-name>
<parent-name>[Supply demand_Gap]</parent-name>
<remote-alias>Months</remote-alias>
<ordinal>11</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RIN_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Month no.</remote-name>
<remote-type>20</remote-type>
<local-name>[Month no. (Supply demand!Gap)]</local-name>
<parent-name>[Supply demand_Gap]</parent-name>
<remote-alias>Month no.</remote-alias>
<ordinal>12</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Quarter no.</remote-name>
<remote-type>20</remote-type>
<local-name>[Quarter no. (Supply demand!Gap)]</local-name>
<parent-name>[Supply demand_Gap]</parent-name>
<remote-alias>Quarter no.</remote-alias>
<ordinal>13</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Gap (MW)</remote-name>
<remote-type>5</remote-type>
<local-name>[Gap (MW)]</local-name>
<parent-name>[Supply demand_Gap]</parent-name>
<remote-alias>Gap (MW)</remote-alias>
<ordinal>14</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column datatype='integer' name='[Month no. (Supply data for model)]' role='dimension' type='quantitative' />
<column datatype='integer' name='[Month no. (Supply demand!Gap)]' role='dimension' type='quantitative' />
<column datatype='integer' name='[Month no.]' role='dimension' type='quantitative' />
<column datatype='real' default-format='N' name='[Multiple Values]' role='measure' type='quantitative' />
<column datatype='integer' name='[Quarter no. (Supply data for model)]' role='dimension' type='quantitative' />
<column datatype='integer' name='[Quarter no. (Supply demand!Gap)]' role='dimension' type='quantitative' />
<column datatype='integer' name='[Quarter no.]' role='dimension' type='quantitative' />
<_.fcp.ObjectModelTableType.true...column caption='Demand data for model' datatype='table' name='[__tableau_internal_object_id__].[Demand data for model_228A27A856AD483AB58962E675FD36E5]' role='measure' type='quantitative' />
<_.fcp.ObjectModelTableType.true...column caption='Supply data for model' datatype='table' name='[__tableau_internal_object_id__].[Supply data for model_F9D40B943420433F82D46F4CD94C0116]' role='measure' type='quantitative' />
<_.fcp.ObjectModelTableType.true...column caption='Supply demand_Gap' datatype='table' name='[__tableau_internal_object_id__].[Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532]' role='measure' type='quantitative' />
<layout _.fcp.SchemaViewerObjectModel.false...dim-percentage='0.5' _.fcp.SchemaViewerObjectModel.false...measure-percentage='0.4' dim-ordering='alphabetic' measure-ordering='alphabetic' rowDisplayCount='72' show-structure='true' />
<semantic-values>
<semantic-value key='[Country].[Name]' value='"India"' />
</semantic-values>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
<objects>
<object caption='Demand data for model' id='Demand data for model_228A27A856AD483AB58962E675FD36E5'>
<properties context=''>
<relation connection='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas' name='Demand data for model' table='['Demand data for model$']' type='table'>
<columns gridOrigin='B2:F74:no:B2:F74:0' header='yes' outcome='2'>
<column datatype='string' name='Years' ordinal='0' />
<column datatype='string' name='Months' ordinal='1' />
<column datatype='integer' name='Month no.' ordinal='2' />
<column datatype='integer' name='Quarter no.' ordinal='3' />
<column datatype='real' name='Power demand (MW)' ordinal='4' />
</columns>
</relation>
</properties>
</object>
<object caption='Supply data for model' id='Supply data for model_F9D40B943420433F82D46F4CD94C0116'>
<properties context=''>
<relation connection='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas' name='Supply data for model' table='['Supply data for model$']' type='table'>
<columns gridOrigin='B2:F74:no:B2:F74:0' header='yes' outcome='2'>
<column datatype='string' name='Years' ordinal='0' />
<column datatype='string' name='Months' ordinal='1' />
<column datatype='integer' name='Month no.' ordinal='2' />
<column datatype='integer' name='Quarter no.' ordinal='3' />
<column datatype='real' name='Power available (MW)' ordinal='4' />
</columns>
</relation>
</properties>
</object>
<object caption='Supply demand_Gap' id='Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532'>
<properties context=''>
<relation connection='excel-direct.0oyi4bi0ev9jqv19w4c7b08kvyas' name='Supply demand_Gap' table='['Supply demand_Gap$']' type='table'>
<columns gridOrigin='B2:F74:no:B2:F74:0' header='yes' outcome='2'>
<column datatype='string' name='Years' ordinal='0' />
<column datatype='string' name='Months' ordinal='1' />
<column datatype='integer' name='Month no.' ordinal='2' />
<column datatype='integer' name='Quarter no.' ordinal='3' />
<column datatype='real' name='Gap (MW)' ordinal='4' />
</columns>
</relation>
</properties>
</object>
</objects>
<relationships>
<relationship>
<expression op='='>
<expression op='[Power demand (MW)]' />
<expression op='[Power available (MW)]' />
</expression>
<first-end-point object-id='Demand data for model_228A27A856AD483AB58962E675FD36E5' />
<second-end-point object-id='Supply data for model_F9D40B943420433F82D46F4CD94C0116' />
</relationship>
<relationship>
<expression op='='>
<expression op='[Power available (MW)]' />
<expression op='[Gap (MW)]' />
</expression>
<first-end-point object-id='Supply data for model_F9D40B943420433F82D46F4CD94C0116' />
<second-end-point object-id='Supply demand!Gap_B0B07BAAA6804EC78580A58A51E6B532' />
</relationship>
</relationships>
</_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
</datasource>
</datasources>
<worksheets>
<worksheet name='DS Gap'>
<layout-options>
<title>
<formatted-text>
<run bold='true'>Historical Supply Demand Gap (MW)</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' name='federated.1t9fzkb0x64qyz10n7os90gago5c' />
</datasources>
<datasource-dependencies datasource='federated.1t9fzkb0x64qyz10n7os90gago5c'>
<column datatype='real' name='[Gap (MW)]' role='measure' type='quantitative' />
<column datatype='string' name='[Months (Supply demand!Gap)]' role='dimension' type='nominal' />
<column datatype='string' name='[Years (Supply demand!Gap)]' role='dimension' type='nominal' />
<column-instance column='[Gap (MW)]' derivation='Avg' name='[avg:Gap (MW):qk]' pivot='key' type='quantitative' />
<column-instance column='[Months (Supply demand!Gap)]' derivation='None' name='[none:Months (Supply demand!Gap):nk]' pivot='key' type='nominal' />
<column-instance column='[Years (Supply demand!Gap)]' derivation='None' name='[none:Years (Supply demand!Gap):nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply demand!Gap):nk]' kind='hide'>
<groupfilter function='except' user:ui-domain='relevant' user:ui-enumeration='exclusive' user:ui-manual-selection='true' user:ui-manual-selection-all-when-empty='true' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Years (Supply demand!Gap):nk]' />
<groupfilter function='member' level='[none:Years (Supply demand!Gap):nk]' member='"FY 2020-21"' />
</groupfilter>
</filter>
<aggregation value='true' />
</view>
<style>
<style-rule element='mark'>
<encoding attr='color' field='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Gap (MW):qk]' type='custom-interpolated'>
<color-palette custom='true' name='' type='ordered-diverging'>
<color>#fc0107</color>
<color>#f8171c</color>
<color>#f52d32</color>
<color>#f24247</color>
<color>#ef575b</color>
<color>#ec6b6e</color>
<color>#e87f81</color>
<color>#e59294</color>
<color>#e2a5a6</color>
<color>#dfb6b7</color>
<color>#dcc8c8</color>
<color>#d9d9d9</color>
<color>#c0d0d0</color>
<color>#a8c8c8</color>
<color>#92c0c0</color>
<color>#7db8b8</color>
<color>#6ab0b0</color>
<color>#58a8a8</color>
<color>#47a0a0</color>
<color>#379898</color>
<color>#289090</color>
<color>#1b8888</color>
<color>#108080</color>
</color-palette>
</encoding>
</style-rule>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Gap (MW):qk]' />
<text column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Gap (MW):qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minheight' value='291' />
<format attr='maxheight' value='291' />
<format attr='minwidth' value='240' />
<format attr='maxwidth' value='240' />
<format attr='aspect' value='0' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Gap (MW):qk]</rows>
<cols>([federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply demand!Gap):nk] / [federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Months (Supply demand!Gap):nk])</cols>
</table>
<simple-id uuid='{164C54E6-FE00-45EF-AFF3-CD9760518003}' />
</worksheet>
<worksheet name='Monthly_demand'>
<layout-options>
<title>
<formatted-text>
<run bold='true'>Month wise power consumption (MW)</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' name='federated.1t9fzkb0x64qyz10n7os90gago5c' />
</datasources>
<datasource-dependencies datasource='federated.1t9fzkb0x64qyz10n7os90gago5c'>
<column datatype='string' name='[Months]' role='dimension' type='nominal' />
<column datatype='real' name='[Power demand (MW)]' role='measure' type='quantitative' />
<column datatype='string' name='[Years]' role='dimension' type='nominal' />
<column-instance column='[Power demand (MW)]' derivation='Avg' name='[avg:Power demand (MW):qk]' pivot='key' type='quantitative' />
<column-instance column='[Months]' derivation='None' name='[none:Months:nk]' pivot='key' type='nominal' />
<column-instance column='[Years]' derivation='None' name='[none:Years:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]'>
<groupfilter function='except' user:ui-domain='relevant' user:ui-enumeration='exclusive' user:ui-manual-selection='true' user:ui-manual-selection-all-when-empty='true' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Years:nk]' />
<groupfilter function='member' level='[none:Years:nk]' member='"FY 2020-21"' />
</groupfilter>
</filter>
<slices>
<column>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power demand (MW):qk]' />
<text column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power demand (MW):qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minheight' value='301' />
<format attr='maxheight' value='301' />
<format attr='minwidth' value='240' />
<format attr='maxwidth' value='240' />
<format attr='aspect' value='0' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power demand (MW):qk]</rows>
<cols>([federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk] / [federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Months:nk])</cols>
</table>
<simple-id uuid='{66EB0FD0-A84F-4940-91B5-D23C71920A36}' />
</worksheet>
<worksheet name='Monthly_supply'>
<layout-options>
<title>
<formatted-text>
<run bold='true'>Month wise power availability (MW)</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' name='federated.1t9fzkb0x64qyz10n7os90gago5c' />
</datasources>
<datasource-dependencies datasource='federated.1t9fzkb0x64qyz10n7os90gago5c'>
<column datatype='string' name='[Months (Supply data for model)]' role='dimension' type='nominal' />
<column datatype='real' name='[Power available (MW)]' role='measure' type='quantitative' />
<column datatype='string' name='[Years (Supply data for model)]' role='dimension' type='nominal' />
<column-instance column='[Power available (MW)]' derivation='Avg' name='[avg:Power available (MW):qk]' pivot='key' type='quantitative' />
<column-instance column='[Months (Supply data for model)]' derivation='None' name='[none:Months (Supply data for model):nk]' pivot='key' type='nominal' />
<column-instance column='[Years (Supply data for model)]' derivation='None' name='[none:Years (Supply data for model):nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply data for model):nk]'>
<groupfilter function='except' user:ui-domain='relevant' user:ui-enumeration='exclusive' user:ui-manual-selection='true' user:ui-manual-selection-all-when-empty='true' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Years (Supply data for model):nk]' />
<groupfilter function='member' level='[none:Years (Supply data for model):nk]' member='"FY 2020-21"' />
</groupfilter>
</filter>
<slices>
<column>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply data for model):nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='mark'>
<encoding attr='color' field='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]' palette='gray_10_0' type='interpolated' />
</style-rule>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]' />
<text column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minheight' value='223' />
<format attr='maxheight' value='223' />
<format attr='minwidth' value='240' />
<format attr='maxwidth' value='240' />
<format attr='aspect' value='0' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]</rows>
<cols>([federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply data for model):nk] / [federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Months (Supply data for model):nk])</cols>
</table>
<simple-id uuid='{83239DA6-D896-4BDC-A1EC-F88632D9139D}' />
</worksheet>
<worksheet name='Summary_demand'>
<layout-options>
<title>
<formatted-text>
<run bold='true' underline='true'>Power consumption (MW)</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' name='federated.1t9fzkb0x64qyz10n7os90gago5c' />
</datasources>
<datasource-dependencies datasource='federated.1t9fzkb0x64qyz10n7os90gago5c'>
<column datatype='real' name='[Power demand (MW)]' role='measure' type='quantitative' />
<column datatype='string' name='[Years]' role='dimension' type='nominal' />
<column-instance column='[Power demand (MW)]' derivation='Avg' name='[avg:Power demand (MW):qk]' pivot='key' type='quantitative' />
<column-instance column='[Years]' derivation='None' name='[none:Years:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]'>
<groupfilter function='except' user:ui-domain='relevant' user:ui-enumeration='exclusive' user:ui-manual-selection='true' user:ui-manual-selection-all-when-empty='true' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Years:nk]' />
<groupfilter function='member' level='[none:Years:nk]' member='%null%' />
</groupfilter>
</filter>
<slices>
<column>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='cell'>
<format attr='width' field='[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]' value='95' />
</style-rule>
<style-rule element='mark'>
<encoding attr='color' field='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power demand (MW):qk]' palette='green_10_0' type='interpolated' />
</style-rule>
<style-rule element='table'>
<format attr='show-null-value-warning' value='false' />
</style-rule>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power demand (MW):qk]' />
<text column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power demand (MW):qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minheight' value='160' />
<format attr='maxheight' value='160' />
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
<format attr='aspect' value='0' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power demand (MW):qk]</rows>
<cols>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]</cols>
</table>
<simple-id uuid='{A3B21E48-5ED5-4F00-9212-0EB9374D8236}' />
</worksheet>
<worksheet name='Summary_supply'>
<layout-options>
<title>
<formatted-text>
<run bold='true' underline='true'>Power available (MW)</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' name='federated.1t9fzkb0x64qyz10n7os90gago5c' />
</datasources>
<datasource-dependencies datasource='federated.1t9fzkb0x64qyz10n7os90gago5c'>
<column datatype='real' name='[Power available (MW)]' role='measure' type='quantitative' />
<column datatype='string' name='[Years (Supply data for model)]' role='dimension' type='nominal' />
<column-instance column='[Power available (MW)]' derivation='Avg' name='[avg:Power available (MW):qk]' pivot='key' type='quantitative' />
<column-instance column='[Years (Supply data for model)]' derivation='None' name='[none:Years (Supply data for model):nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style>
<style-rule element='mark'>
<encoding attr='color' field='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]' palette='gray_warm_10_0' type='interpolated' />
</style-rule>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]' />
<text column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minheight' value='316' />
<format attr='maxheight' value='316' />
<format attr='minwidth' value='360' />
<format attr='maxwidth' value='360' />
<format attr='aspect' value='0' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1t9fzkb0x64qyz10n7os90gago5c].[avg:Power available (MW):qk]</rows>
<cols>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply data for model):nk]</cols>
</table>
<simple-id uuid='{FE09577D-A2DE-4351-B6F0-2517A231C53D}' />
</worksheet>
<worksheet name='Yearly_max demand'>
<layout-options>
<title>
<formatted-text>
<run bold='true'>Year wise peak power consumption (MW)</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' name='federated.1t9fzkb0x64qyz10n7os90gago5c' />
</datasources>
<datasource-dependencies datasource='federated.1t9fzkb0x64qyz10n7os90gago5c'>
<column datatype='real' name='[Power demand (MW)]' role='measure' type='quantitative' />
<column datatype='string' name='[Years]' role='dimension' type='nominal' />
<column-instance column='[Power demand (MW)]' derivation='Max' name='[max:Power demand (MW):qk]' pivot='key' type='quantitative' />
<column-instance column='[Years]' derivation='None' name='[none:Years:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]'>
<groupfilter function='except' user:ui-domain='relevant' user:ui-enumeration='exclusive' user:ui-manual-selection='true' user:ui-manual-selection-all-when-empty='true' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Years:nk]' />
<groupfilter function='member' level='[none:Years:nk]' member='"FY 2020-21"' />
</groupfilter>
</filter>
<slices>
<column>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[max:Power demand (MW):qk]' />
<text column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[max:Power demand (MW):qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years:nk]</rows>
<cols>[federated.1t9fzkb0x64qyz10n7os90gago5c].[max:Power demand (MW):qk]</cols>
</table>
<simple-id uuid='{14CAF769-C80A-41C8-B635-869102F54A1D}' />
</worksheet>
<worksheet name='Yearly_max supply'>
<layout-options>
<title>
<formatted-text>
<run bold='true'>Year wise peak power available (MW)</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Demand data for model (IIM-I Project Tableau Dashboard)' name='federated.1t9fzkb0x64qyz10n7os90gago5c' />
</datasources>
<datasource-dependencies datasource='federated.1t9fzkb0x64qyz10n7os90gago5c'>
<column datatype='real' name='[Power available (MW)]' role='measure' type='quantitative' />
<column datatype='string' name='[Years (Supply data for model)]' role='dimension' type='nominal' />
<column-instance column='[Power available (MW)]' derivation='Max' name='[max:Power available (MW):qk]' pivot='key' type='quantitative' />
<column-instance column='[Years (Supply data for model)]' derivation='None' name='[none:Years (Supply data for model):nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply data for model):nk]'>
<groupfilter function='except' user:ui-domain='relevant' user:ui-enumeration='exclusive' user:ui-manual-selection='true' user:ui-manual-selection-all-when-empty='true' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Years (Supply data for model):nk]' />
<groupfilter function='member' level='[none:Years (Supply data for model):nk]' member='"FY 2020-21"' />
</groupfilter>
</filter>
<slices>
<column>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply data for model):nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='mark'>
<encoding attr='color' field='[federated.1t9fzkb0x64qyz10n7os90gago5c].[max:Power available (MW):qk]' palette='gray_10_0' type='interpolated' />
</style-rule>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[max:Power available (MW):qk]' />
<text column='[federated.1t9fzkb0x64qyz10n7os90gago5c].[max:Power available (MW):qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.1t9fzkb0x64qyz10n7os90gago5c].[none:Years (Supply data for model):nk]</rows>
<cols>[federated.1t9fzkb0x64qyz10n7os90gago5c].[max:Power available (MW):qk]</cols>
</table>
<simple-id uuid='{176BD2A4-1B13-4BF4-B21C-59334A685AF2}' />
</worksheet>
</worksheets>
<dashboards>
<dashboard name='Dashboard 1'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontcolor='#000080' underline='true'>Supply demand scenario for the state</run>
</formatted-text>
</title>
</layout-options>
<style />
<size maxheight='800' maxwidth='1000' minheight='800' minwidth='1000' />
<zones>
<zone _.fcp.SetMembershipControl.false...type='layout-basic' _.fcp.SetMembershipControl.true...type-v2='layout-basic' h='100000' id='4' w='100000' x='0' y='0'>
<zone _.fcp.SetMembershipControl.false...type='layout-flow' _.fcp.SetMembershipControl.true...type-v2='layout-flow' h='98000' id='48' param='horz' w='98400' x='800' y='1000'>
<zone _.fcp.SetMembershipControl.false...type='layout-flow' _.fcp.SetMembershipControl.true...type-v2='layout-flow' h='98000' id='7' param='vert' w='98400' x='800' y='1000'>
<zone _.fcp.SetMembershipControl.false...type='title' _.fcp.SetMembershipControl.true...type-v2='title' h='5125' id='8' w='98400' x='800' y='1000'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone _.fcp.SetMembershipControl.false...type='layout-basic' _.fcp.SetMembershipControl.true...type-v2='layout-basic' h='92875' id='5' w='98400' x='800' y='6125'>
<zone h='41625' id='3' name='Summary_supply' w='49200' x='800' y='6125'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='41625' id='35' name='Summary_demand' w='49200' x='50000' y='6125'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='51250' id='38' name='Monthly_supply' w='49200' x='800' y='47750'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='51250' id='42' name='Monthly_demand' w='49200' x='50000' y='47750'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
</zone>
</zone>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
</zone-style>
</zone>
</zones>
<devicelayouts>
<devicelayout auto-generated='true' name='Phone'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontcolor='#000080' underline='true'>Supply demand scenario for the state</run>
</formatted-text>
</title>
</layout-options>
<size maxheight='1250' minheight='1250' sizing-mode='vscroll' />
<zones>