Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

0-ttu-curtailments_eda.html 54 KB

You have to be logged in to leave a comment. Sign In
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
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
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Exploratory Data Analysis &#8212; California Renewable Curtailments documentation</title>
  6. <link rel="stylesheet" href="../_static/haiku.css" type="text/css" />
  7. <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
  8. <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" />
  9. <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
  10. <script src="../_static/jquery.js"></script>
  11. <script src="../_static/underscore.js"></script>
  12. <script src="../_static/doctools.js"></script>
  13. <script src="../_static/language_data.js"></script>
  14. <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
  15. <script async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script>
  16. <script type="text/x-mathjax-config">MathJax.Hub.Config({"tex2jax": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true, "ignoreClass": "document", "processClass": "math|output_area"}})</script>
  17. <link rel="index" title="Index" href="../genindex.html" />
  18. <link rel="search" title="Search" href="../search.html" />
  19. <link rel="next" title="Methods" href="../methods.html" />
  20. <link rel="prev" title="Data Sources" href="../data_sources.html" />
  21. </head><body>
  22. <div class="header" role="banner"><h1 class="heading"><a href="../index.html">
  23. <span>California Renewable Curtailments documentation</span></a></h1>
  24. <h2 class="heading"><span>Exploratory Data Analysis</span></h2>
  25. </div>
  26. <div class="topnav" role="navigation" aria-label="top navigation">
  27. <p>
  28. «&#160;&#160;<a href="../data_sources.html">Data Sources</a>
  29. &#160;&#160;::&#160;&#160;
  30. <a class="uplink" href="../index.html">Contents</a>
  31. &#160;&#160;::&#160;&#160;
  32. <a href="../methods.html">Methods</a>&#160;&#160;»
  33. </p>
  34. </div>
  35. <div class="content" role="main">
  36. <style>
  37. /* CSS for nbsphinx extension */
  38. /* remove conflicting styling from Sphinx themes */
  39. div.nbinput.container,
  40. div.nbinput.container div.prompt,
  41. div.nbinput.container div.input_area,
  42. div.nbinput.container div[class*=highlight],
  43. div.nbinput.container div[class*=highlight] pre,
  44. div.nboutput.container,
  45. div.nboutput.container div.prompt,
  46. div.nboutput.container div.output_area,
  47. div.nboutput.container div[class*=highlight],
  48. div.nboutput.container div[class*=highlight] pre {
  49. background: none;
  50. border: none;
  51. padding: 0 0;
  52. margin: 0;
  53. box-shadow: none;
  54. }
  55. /* avoid gaps between output lines */
  56. div.nboutput.container div[class*=highlight] pre {
  57. line-height: normal;
  58. }
  59. /* input/output containers */
  60. div.nbinput.container,
  61. div.nboutput.container {
  62. display: -webkit-flex;
  63. display: flex;
  64. align-items: flex-start;
  65. margin: 0;
  66. width: 100%;
  67. }
  68. @media (max-width: 540px) {
  69. div.nbinput.container,
  70. div.nboutput.container {
  71. flex-direction: column;
  72. }
  73. }
  74. /* input container */
  75. div.nbinput.container {
  76. padding-top: 5px;
  77. }
  78. /* last container */
  79. div.nblast.container {
  80. padding-bottom: 5px;
  81. }
  82. /* input prompt */
  83. div.nbinput.container div.prompt pre {
  84. color: #307FC1;
  85. }
  86. /* output prompt */
  87. div.nboutput.container div.prompt pre {
  88. color: #BF5B3D;
  89. }
  90. /* all prompts */
  91. div.nbinput.container div.prompt,
  92. div.nboutput.container div.prompt {
  93. width: 4.5ex;
  94. padding-top: 5px;
  95. position: relative;
  96. user-select: none;
  97. }
  98. div.nbinput.container div.prompt > div,
  99. div.nboutput.container div.prompt > div {
  100. position: absolute;
  101. right: 0;
  102. margin-right: 0.3ex;
  103. }
  104. @media (max-width: 540px) {
  105. div.nbinput.container div.prompt,
  106. div.nboutput.container div.prompt {
  107. width: unset;
  108. text-align: left;
  109. padding: 0.4em;
  110. }
  111. div.nboutput.container div.prompt.empty {
  112. padding: 0;
  113. }
  114. div.nbinput.container div.prompt > div,
  115. div.nboutput.container div.prompt > div {
  116. position: unset;
  117. }
  118. }
  119. /* disable scrollbars on prompts */
  120. div.nbinput.container div.prompt pre,
  121. div.nboutput.container div.prompt pre {
  122. overflow: hidden;
  123. }
  124. /* input/output area */
  125. div.nbinput.container div.input_area,
  126. div.nboutput.container div.output_area {
  127. -webkit-flex: 1;
  128. flex: 1;
  129. overflow: auto;
  130. }
  131. @media (max-width: 540px) {
  132. div.nbinput.container div.input_area,
  133. div.nboutput.container div.output_area {
  134. width: 100%;
  135. }
  136. }
  137. /* input area */
  138. div.nbinput.container div.input_area {
  139. border: 1px solid #e0e0e0;
  140. border-radius: 2px;
  141. background: #f5f5f5;
  142. }
  143. /* override MathJax center alignment in output cells */
  144. div.nboutput.container div[class*=MathJax] {
  145. text-align: left !important;
  146. }
  147. /* override sphinx.ext.imgmath center alignment in output cells */
  148. div.nboutput.container div.math p {
  149. text-align: left;
  150. }
  151. /* standard error */
  152. div.nboutput.container div.output_area.stderr {
  153. background: #fdd;
  154. }
  155. /* ANSI colors */
  156. .ansi-black-fg { color: #3E424D; }
  157. .ansi-black-bg { background-color: #3E424D; }
  158. .ansi-black-intense-fg { color: #282C36; }
  159. .ansi-black-intense-bg { background-color: #282C36; }
  160. .ansi-red-fg { color: #E75C58; }
  161. .ansi-red-bg { background-color: #E75C58; }
  162. .ansi-red-intense-fg { color: #B22B31; }
  163. .ansi-red-intense-bg { background-color: #B22B31; }
  164. .ansi-green-fg { color: #00A250; }
  165. .ansi-green-bg { background-color: #00A250; }
  166. .ansi-green-intense-fg { color: #007427; }
  167. .ansi-green-intense-bg { background-color: #007427; }
  168. .ansi-yellow-fg { color: #DDB62B; }
  169. .ansi-yellow-bg { background-color: #DDB62B; }
  170. .ansi-yellow-intense-fg { color: #B27D12; }
  171. .ansi-yellow-intense-bg { background-color: #B27D12; }
  172. .ansi-blue-fg { color: #208FFB; }
  173. .ansi-blue-bg { background-color: #208FFB; }
  174. .ansi-blue-intense-fg { color: #0065CA; }
  175. .ansi-blue-intense-bg { background-color: #0065CA; }
  176. .ansi-magenta-fg { color: #D160C4; }
  177. .ansi-magenta-bg { background-color: #D160C4; }
  178. .ansi-magenta-intense-fg { color: #A03196; }
  179. .ansi-magenta-intense-bg { background-color: #A03196; }
  180. .ansi-cyan-fg { color: #60C6C8; }
  181. .ansi-cyan-bg { background-color: #60C6C8; }
  182. .ansi-cyan-intense-fg { color: #258F8F; }
  183. .ansi-cyan-intense-bg { background-color: #258F8F; }
  184. .ansi-white-fg { color: #C5C1B4; }
  185. .ansi-white-bg { background-color: #C5C1B4; }
  186. .ansi-white-intense-fg { color: #A1A6B2; }
  187. .ansi-white-intense-bg { background-color: #A1A6B2; }
  188. .ansi-default-inverse-fg { color: #FFFFFF; }
  189. .ansi-default-inverse-bg { background-color: #000000; }
  190. .ansi-bold { font-weight: bold; }
  191. .ansi-underline { text-decoration: underline; }
  192. div.nbinput.container div.input_area div[class*=highlight] > pre,
  193. div.nboutput.container div.output_area div[class*=highlight] > pre,
  194. div.nboutput.container div.output_area div[class*=highlight].math,
  195. div.nboutput.container div.output_area.rendered_html,
  196. div.nboutput.container div.output_area > div.output_javascript,
  197. div.nboutput.container div.output_area:not(.rendered_html) > img{
  198. padding: 5px;
  199. }
  200. /* fix copybtn overflow problem in chromium (needed for 'sphinx_copybutton') */
  201. div.nbinput.container div.input_area > div[class^='highlight'],
  202. div.nboutput.container div.output_area > div[class^='highlight']{
  203. overflow-y: hidden;
  204. }
  205. /* hide copybtn icon on prompts (needed for 'sphinx_copybutton') */
  206. .prompt a.copybtn {
  207. display: none;
  208. }
  209. /* Some additional styling taken form the Jupyter notebook CSS */
  210. div.rendered_html table {
  211. border: none;
  212. border-collapse: collapse;
  213. border-spacing: 0;
  214. color: black;
  215. font-size: 12px;
  216. table-layout: fixed;
  217. }
  218. div.rendered_html thead {
  219. border-bottom: 1px solid black;
  220. vertical-align: bottom;
  221. }
  222. div.rendered_html tr,
  223. div.rendered_html th,
  224. div.rendered_html td {
  225. text-align: right;
  226. vertical-align: middle;
  227. padding: 0.5em 0.5em;
  228. line-height: normal;
  229. white-space: normal;
  230. max-width: none;
  231. border: none;
  232. }
  233. div.rendered_html th {
  234. font-weight: bold;
  235. }
  236. div.rendered_html tbody tr:nth-child(odd) {
  237. background: #f5f5f5;
  238. }
  239. div.rendered_html tbody tr:hover {
  240. background: rgba(66, 165, 245, 0.2);
  241. }
  242. </style>
  243. <div class="section" id="Exploratory-Data-Analysis">
  244. <h1>Exploratory Data Analysis<a class="headerlink" href="#Exploratory-Data-Analysis" title="Permalink to this headline">¶</a></h1>
  245. <p>The purpose of this notebook is to explore potential relationships and build an intuition about the distribution of curtailment events. Naively, we are looking to find dimensions on which we might cluster or categorize different curtailment events, and to understand any seasonality or time dependence in the data.</p>
  246. <div class="nbinput nblast docutils container">
  247. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[1]:
  248. </pre></div>
  249. </div>
  250. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  251. <span></span>import pandas as pd
  252. import numpy as np
  253. import altair as alt
  254. from src.conf import settings
  255. </pre></div>
  256. </div>
  257. </div>
  258. <div class="nbinput docutils container">
  259. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[2]:
  260. </pre></div>
  261. </div>
  262. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  263. <span></span># Enable Altair to Serve data from disk since we expect to have at least 8760 rows or more
  264. alt.data_transformers.enable(&#39;json&#39;)
  265. # Uncomment if using JupyterLab (see: https://github.com/altair-viz/altair/issues/1867)
  266. # alt.data_transformers.enable(&quot;data_server&quot;)
  267. </pre></div>
  268. </div>
  269. </div>
  270. <div class="nboutput nblast docutils container">
  271. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[2]:
  272. </pre></div>
  273. </div>
  274. <div class="output_area docutils container">
  275. <div class="highlight"><pre>
  276. DataTransformerRegistry.enable(&#39;json&#39;)
  277. </pre></div></div>
  278. </div>
  279. <div class="nbinput nblast docutils container">
  280. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[3]:
  281. </pre></div>
  282. </div>
  283. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  284. <span></span>df = pd.concat(
  285. [
  286. pd.read_parquet(fp_) for fp_ in settings.DATA_DIR.glob(&quot;processed/caiso/*.parquet&quot;)
  287. ]
  288. ).tz_convert(tz=&quot;US/Pacific&quot;)
  289. # Single Year for debugging
  290. # year = 2019
  291. # df = pd.read_parquet(settings.DATA_DIR / f&quot;processed/caiso/{year}.parquet&quot;).tz_convert(tz=&quot;US/Pacific&quot;)
  292. </pre></div>
  293. </div>
  294. </div>
  295. <div class="nbinput nblast docutils container">
  296. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[4]:
  297. </pre></div>
  298. </div>
  299. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  300. <span></span>column_map = zip(
  301. df.columns.tolist(),
  302. df.columns.str.replace(&quot;\W+&quot;, &quot;_&quot;).str.lower().tolist()
  303. )
  304. df = df.rename(columns=dict(column_map))
  305. </pre></div>
  306. </div>
  307. </div>
  308. <p><strong>Data Dictionary</strong></p>
  309. <ul class="simple">
  310. <li><p>load (MW): Total demand across the CAISO for a given interval.</p></li>
  311. <li><p>solar (MW): Average interval Solar production</p></li>
  312. <li><p>wind (MW): Average interval Wind production</p></li>
  313. <li><p>net_load (MW): Load - solar - wind</p></li>
  314. <li><p>renewables (MW): Average interval production from solar, wind, biomass, biogas, geothermal and small hydropower</p></li>
  315. <li><p>nuclear (MW): Average nuclear production</p></li>
  316. <li><p>large_hydro (MW): Average large hydro production</p></li>
  317. <li><p>imports (MW): Imports coming into the ISO; note that exports are NOT deducted from imports.</p></li>
  318. <li><p>generation (MW): Total generation across all generator types</p></li>
  319. <li><p>thermal (MW): non-nuclear and non-geothermal thermal production</p></li>
  320. <li><p>load_less_generation_imports_ (MW): data validation column to ensure supply ~ demand</p></li>
  321. <li><p>wind_curtailment (MW): Curtailed wind in a given interval</p></li>
  322. <li><p>solar_curtailment (MW): Curtailed solar in a given interval</p></li>
  323. </ul>
  324. <div class="nbinput docutils container">
  325. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[5]:
  326. </pre></div>
  327. </div>
  328. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  329. <span></span>df.head()
  330. </pre></div>
  331. </div>
  332. </div>
  333. <div class="nboutput nblast docutils container">
  334. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[5]:
  335. </pre></div>
  336. </div>
  337. <div class="output_area rendered_html docutils container">
  338. <div>
  339. <style scoped>
  340. .dataframe tbody tr th:only-of-type {
  341. vertical-align: middle;
  342. }
  343. .dataframe tbody tr th {
  344. vertical-align: top;
  345. }
  346. .dataframe thead th {
  347. text-align: right;
  348. }
  349. </style>
  350. <table border="1" class="dataframe">
  351. <thead>
  352. <tr style="text-align: right;">
  353. <th></th>
  354. <th>load</th>
  355. <th>solar</th>
  356. <th>wind</th>
  357. <th>net_load</th>
  358. <th>renewables</th>
  359. <th>nuclear</th>
  360. <th>large_hydro</th>
  361. <th>imports</th>
  362. <th>generation</th>
  363. <th>thermal</th>
  364. <th>load_less_generation_imports_</th>
  365. <th>wind_curtailment</th>
  366. <th>solar_curtailment</th>
  367. </tr>
  368. <tr>
  369. <th>timestamp</th>
  370. <th></th>
  371. <th></th>
  372. <th></th>
  373. <th></th>
  374. <th></th>
  375. <th></th>
  376. <th></th>
  377. <th></th>
  378. <th></th>
  379. <th></th>
  380. <th></th>
  381. <th></th>
  382. <th></th>
  383. </tr>
  384. </thead>
  385. <tbody>
  386. <tr>
  387. <th>2018-01-01 00:00:00-08:00</th>
  388. <td>21552.671558</td>
  389. <td>0.0</td>
  390. <td>243.496014</td>
  391. <td>21309.175544</td>
  392. <td>2032.994475</td>
  393. <td>2259.991374</td>
  394. <td>2098.405092</td>
  395. <td>7586.553984</td>
  396. <td>13964.462727</td>
  397. <td>7573.071786</td>
  398. <td>1.654847</td>
  399. <td>NaN</td>
  400. <td>NaN</td>
  401. </tr>
  402. <tr>
  403. <th>2018-01-01 00:05:00-08:00</th>
  404. <td>21486.779943</td>
  405. <td>0.0</td>
  406. <td>238.499132</td>
  407. <td>21248.280811</td>
  408. <td>2026.481236</td>
  409. <td>2259.952873</td>
  410. <td>2143.557374</td>
  411. <td>7543.249094</td>
  412. <td>13944.799274</td>
  413. <td>7514.807791</td>
  414. <td>-1.268424</td>
  415. <td>NaN</td>
  416. <td>NaN</td>
  417. </tr>
  418. <tr>
  419. <th>2018-01-01 00:10:00-08:00</th>
  420. <td>21391.303108</td>
  421. <td>0.0</td>
  422. <td>227.229805</td>
  423. <td>21164.073304</td>
  424. <td>2014.528291</td>
  425. <td>2259.809808</td>
  426. <td>2130.224136</td>
  427. <td>7666.711084</td>
  428. <td>13727.433629</td>
  429. <td>7322.871394</td>
  430. <td>-2.841604</td>
  431. <td>NaN</td>
  432. <td>NaN</td>
  433. </tr>
  434. <tr>
  435. <th>2018-01-01 00:15:00-08:00</th>
  436. <td>21301.872170</td>
  437. <td>0.0</td>
  438. <td>228.026545</td>
  439. <td>21073.845624</td>
  440. <td>2016.257246</td>
  441. <td>2259.802584</td>
  442. <td>2093.382906</td>
  443. <td>7701.705829</td>
  444. <td>13598.816375</td>
  445. <td>7229.373638</td>
  446. <td>1.349966</td>
  447. <td>NaN</td>
  448. <td>NaN</td>
  449. </tr>
  450. <tr>
  451. <th>2018-01-01 00:20:00-08:00</th>
  452. <td>21242.270230</td>
  453. <td>0.0</td>
  454. <td>232.213448</td>
  455. <td>21010.056782</td>
  456. <td>2024.277588</td>
  457. <td>2260.008342</td>
  458. <td>2160.635742</td>
  459. <td>7677.751619</td>
  460. <td>13560.236628</td>
  461. <td>7115.314955</td>
  462. <td>4.281984</td>
  463. <td>NaN</td>
  464. <td>NaN</td>
  465. </tr>
  466. </tbody>
  467. </table>
  468. </div></div>
  469. </div>
  470. <p>Since our interval timeseries are not continuous and complete (i.e. significant irregular gaps exist across years), we must convert this to MWh to get additivity. All columns are in MW at 5 minute intervals.</p>
  471. <p>MWh are calculated by taking</p>
  472. <p><span class="math notranslate nohighlight">\(MWh = MW 5[min]\frac{1[hour]}{60[min]}\)</span></p>
  473. <div class="nbinput docutils container">
  474. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[6]:
  475. </pre></div>
  476. </div>
  477. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  478. <span></span>df_mwh = df * (5/60.)
  479. df_mwh.head()
  480. </pre></div>
  481. </div>
  482. </div>
  483. <div class="nboutput nblast docutils container">
  484. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[6]:
  485. </pre></div>
  486. </div>
  487. <div class="output_area rendered_html docutils container">
  488. <div>
  489. <style scoped>
  490. .dataframe tbody tr th:only-of-type {
  491. vertical-align: middle;
  492. }
  493. .dataframe tbody tr th {
  494. vertical-align: top;
  495. }
  496. .dataframe thead th {
  497. text-align: right;
  498. }
  499. </style>
  500. <table border="1" class="dataframe">
  501. <thead>
  502. <tr style="text-align: right;">
  503. <th></th>
  504. <th>load</th>
  505. <th>solar</th>
  506. <th>wind</th>
  507. <th>net_load</th>
  508. <th>renewables</th>
  509. <th>nuclear</th>
  510. <th>large_hydro</th>
  511. <th>imports</th>
  512. <th>generation</th>
  513. <th>thermal</th>
  514. <th>load_less_generation_imports_</th>
  515. <th>wind_curtailment</th>
  516. <th>solar_curtailment</th>
  517. </tr>
  518. <tr>
  519. <th>timestamp</th>
  520. <th></th>
  521. <th></th>
  522. <th></th>
  523. <th></th>
  524. <th></th>
  525. <th></th>
  526. <th></th>
  527. <th></th>
  528. <th></th>
  529. <th></th>
  530. <th></th>
  531. <th></th>
  532. <th></th>
  533. </tr>
  534. </thead>
  535. <tbody>
  536. <tr>
  537. <th>2018-01-01 00:00:00-08:00</th>
  538. <td>1796.055963</td>
  539. <td>0.0</td>
  540. <td>20.291334</td>
  541. <td>1775.764629</td>
  542. <td>169.416206</td>
  543. <td>188.332615</td>
  544. <td>174.867091</td>
  545. <td>632.212832</td>
  546. <td>1163.705227</td>
  547. <td>631.089315</td>
  548. <td>0.137904</td>
  549. <td>NaN</td>
  550. <td>NaN</td>
  551. </tr>
  552. <tr>
  553. <th>2018-01-01 00:05:00-08:00</th>
  554. <td>1790.564995</td>
  555. <td>0.0</td>
  556. <td>19.874928</td>
  557. <td>1770.690068</td>
  558. <td>168.873436</td>
  559. <td>188.329406</td>
  560. <td>178.629781</td>
  561. <td>628.604091</td>
  562. <td>1162.066606</td>
  563. <td>626.233983</td>
  564. <td>-0.105702</td>
  565. <td>NaN</td>
  566. <td>NaN</td>
  567. </tr>
  568. <tr>
  569. <th>2018-01-01 00:10:00-08:00</th>
  570. <td>1782.608592</td>
  571. <td>0.0</td>
  572. <td>18.935817</td>
  573. <td>1763.672775</td>
  574. <td>167.877358</td>
  575. <td>188.317484</td>
  576. <td>177.518678</td>
  577. <td>638.892590</td>
  578. <td>1143.952802</td>
  579. <td>610.239283</td>
  580. <td>-0.236800</td>
  581. <td>NaN</td>
  582. <td>NaN</td>
  583. </tr>
  584. <tr>
  585. <th>2018-01-01 00:15:00-08:00</th>
  586. <td>1775.156014</td>
  587. <td>0.0</td>
  588. <td>19.002212</td>
  589. <td>1756.153802</td>
  590. <td>168.021437</td>
  591. <td>188.316882</td>
  592. <td>174.448576</td>
  593. <td>641.808819</td>
  594. <td>1133.234698</td>
  595. <td>602.447803</td>
  596. <td>0.112497</td>
  597. <td>NaN</td>
  598. <td>NaN</td>
  599. </tr>
  600. <tr>
  601. <th>2018-01-01 00:20:00-08:00</th>
  602. <td>1770.189186</td>
  603. <td>0.0</td>
  604. <td>19.351121</td>
  605. <td>1750.838065</td>
  606. <td>168.689799</td>
  607. <td>188.334029</td>
  608. <td>180.052978</td>
  609. <td>639.812635</td>
  610. <td>1130.019719</td>
  611. <td>592.942913</td>
  612. <td>0.356832</td>
  613. <td>NaN</td>
  614. <td>NaN</td>
  615. </tr>
  616. </tbody>
  617. </table>
  618. </div></div>
  619. </div>
  620. <p>We roll up our data to an hourly basis to remove effects from sub-hourly markets and highly localized or temporal weather events.</p>
  621. <div class="nbinput nblast docutils container">
  622. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[7]:
  623. </pre></div>
  624. </div>
  625. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  626. <span></span># Roll up to hourly 8760 by year
  627. hourly_mwh = df_mwh.groupby(
  628. by=pd.Grouper(freq=&quot;H&quot;)
  629. )[[&quot;solar_curtailment&quot;, &quot;solar&quot;, &quot;net_load&quot;, &quot;load&quot;, &quot;generation&quot;, &quot;renewables&quot;, &quot;wind_curtailment&quot;]].sum()
  630. # Calculate some other potentially interesting metrics
  631. # How much of our load in a given hour was fulfilled by solar generation?
  632. hourly_mwh[&quot;pct_solar&quot;] = hourly_mwh[&quot;solar&quot;]/hourly_mwh[&quot;generation&quot;]
  633. # How much curtailment is occurring for each unit of raw solar generation?
  634. hourly_mwh[&quot;curtailment_intensity&quot;] = (hourly_mwh[&quot;solar_curtailment&quot;].fillna(0)/hourly_mwh[&quot;solar&quot;]).fillna(0)
  635. # Calculate Pct of Total Solar Potential
  636. hourly_mwh[&quot;pct_solar_potential&quot;] = (hourly_mwh[&quot;solar_curtailment&quot;]/(hourly_mwh[&quot;solar&quot;] + hourly_mwh[&quot;solar_curtailment&quot;])).fillna(0)
  637. # Calculate Pct of Total Renewable Potential
  638. hourly_mwh[&quot;pct_renewable_potential&quot;] = (hourly_mwh[&quot;solar_curtailment&quot;]/(
  639. hourly_mwh[&quot;renewables&quot;] + hourly_mwh[&quot;solar_curtailment&quot;] + hourly_mwh[&quot;wind_curtailment&quot;])
  640. ).fillna(0)
  641. </pre></div>
  642. </div>
  643. </div>
  644. <p>For convenience, we define a subset of data with some non-zero amount of curtailment.</p>
  645. <div class="nbinput nblast docutils container">
  646. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[8]:
  647. </pre></div>
  648. </div>
  649. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  650. <span></span>curtailment_days = hourly_mwh.query(&quot;solar_curtailment &gt; 0&quot;).reset_index()
  651. curtailment_days = pd.concat(
  652. [_dat.sort_values(&quot;solar_curtailment&quot;, ascending=False).reset_index(drop=True).reset_index() for (grp, _dat) in curtailment_days.groupby(by=curtailment_days[&quot;timestamp&quot;].dt.year)],
  653. ignore_index=True
  654. )
  655. </pre></div>
  656. </div>
  657. </div>
  658. <p>Due to correlation between nearby hours, we are also interested in a daily totals.</p>
  659. <div class="nbinput nblast docutils container">
  660. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[9]:
  661. </pre></div>
  662. </div>
  663. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  664. <span></span>daily_curtailment = curtailment_days.groupby(
  665. by=pd.Grouper(key=&quot;timestamp&quot;, freq=&quot;D&quot;)
  666. )[[&quot;solar&quot;, &quot;solar_curtailment&quot;, &quot;net_load&quot;, &quot;load&quot;, &quot;generation&quot;, &quot;renewables&quot;, &quot;wind_curtailment&quot;]].sum()
  667. daily_curtailment[&quot;curtailment_intensity&quot;] = daily_curtailment.eval(&quot;solar_curtailment/solar&quot;)
  668. daily_curtailment.reset_index(inplace=True)
  669. </pre></div>
  670. </div>
  671. </div>
  672. </div>
  673. <div class="section" id="Exploration:-How-much-annual-Curtailment-is-there?">
  674. <h1>Exploration: How much annual Curtailment is there?<a class="headerlink" href="#Exploration:-How-much-annual-Curtailment-is-there?" title="Permalink to this headline">¶</a></h1>
  675. <p>We are primarily interested in finding explanatory variables for curtailment. We are interested specifically in time dependence at the hour-scale. The goal of this study is to identify exogenous data sets which could explain a given curtailment day.</p>
  676. <p><strong>Chart Definitions</strong></p>
  677. <div class="nbinput nblast docutils container">
  678. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[10]:
  679. </pre></div>
  680. </div>
  681. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  682. <span></span># Interactive version to Drill Down Over Fixed Time periods
  683. brush = alt.selection(type=&#39;interval&#39;, encodings=[&#39;x&#39;])
  684. base = alt.Chart(
  685. hourly_mwh.reset_index()
  686. ).mark_rect().encode(
  687. alt.Y(&quot;hours(timestamp):T&quot;, title=&quot;Hour of Day&quot;, sort=&quot;descending&quot;),
  688. alt.X(&quot;yearmonthdate(timestamp):T&quot;, title=&quot;Date&quot;, sort=&quot;ascending&quot;),
  689. alt.Color(
  690. alt.repeat(&quot;row&quot;),
  691. type=&quot;quantitative&quot;,
  692. sort=&quot;descending&quot;,
  693. scale=alt.Scale(scheme=&quot;redgrey&quot;),
  694. legend=alt.Legend(orient=&quot;top&quot;)
  695. )
  696. ).properties(
  697. width=1500,
  698. height=250
  699. )
  700. background = base.encode(
  701. color=alt.value(&#39;#ddd&#39;)
  702. ).add_selection(brush)
  703. highlight = base.transform_filter(brush)
  704. brush_chart = alt.layer(
  705. background,
  706. highlight
  707. ).repeat(
  708. row=[&quot;solar_curtailment&quot;, &quot;solar&quot;, &quot;curtailment_intensity&quot;]
  709. ).resolve_scale(color=&quot;independent&quot;)
  710. </pre></div>
  711. </div>
  712. </div>
  713. <div class="nbinput nblast docutils container">
  714. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[11]:
  715. </pre></div>
  716. </div>
  717. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  718. <span></span># A better version of the chart above with units and things but not interactive
  719. basechart = alt.Chart(
  720. hourly_mwh.reset_index()
  721. ).mark_rect().encode(
  722. alt.Y(&quot;hours(timestamp):T&quot;, title=&quot;Hour of Day&quot;, sort=&quot;descending&quot;),
  723. alt.X(&quot;yearmonthdate(timestamp):T&quot;, title=&quot;Date&quot;, sort=&quot;ascending&quot;),
  724. ).properties(
  725. width=1500,
  726. height=250
  727. )
  728. fixed_chart = alt.vconcat(
  729. basechart.encode(
  730. alt.Color(
  731. &quot;solar_curtailment:Q&quot;,
  732. scale=alt.Scale(type=&quot;pow&quot;, exponent=1/4, scheme=&quot;redgrey&quot;),
  733. sort=&quot;descending&quot;,
  734. title=&quot;Solar Curtailment (MWh)&quot;,
  735. legend=alt.Legend(orient=&quot;top&quot;),
  736. )
  737. ),
  738. basechart.encode(
  739. alt.Color(
  740. &quot;solar:Q&quot;,
  741. scale=alt.Scale(type=&quot;pow&quot;, exponent=2, scheme=&quot;redgrey&quot;),
  742. sort=&quot;descending&quot;,
  743. title=&quot;Solar Output (MW)&quot;,
  744. legend=alt.Legend(orient=&quot;top&quot;),
  745. )
  746. ),
  747. basechart.encode(
  748. alt.Color(
  749. &quot;curtailment_intensity:Q&quot;,
  750. scale=alt.Scale(scheme=&quot;redgrey&quot;, type=&quot;pow&quot;, exponent=1/4, domain=[0,1]),
  751. sort=&quot;descending&quot;,
  752. title=&quot;MWh Cur. per MWh Load&quot;,
  753. legend=alt.Legend(orient=&quot;top&quot;),
  754. )
  755. )
  756. ).resolve_scale(color=&quot;independent&quot;)
  757. </pre></div>
  758. </div>
  759. </div>
  760. <div class="nbinput nblast docutils container">
  761. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[12]:
  762. </pre></div>
  763. </div>
  764. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  765. <span></span># Let&#39;s inspect our curtailed hours a bit more closely
  766. load_chart = alt.Chart(curtailment_days).mark_line().encode(
  767. alt.X(&quot;index&quot;, title=&quot;rank&quot;),
  768. alt.Y(&quot;solar_curtailment&quot;, title=&quot;Solar Curtailment (MW)&quot;),
  769. ).facet(&quot;year(timestamp):N&quot;)
  770. </pre></div>
  771. </div>
  772. </div>
  773. <div class="nbinput nblast docutils container">
  774. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[13]:
  775. </pre></div>
  776. </div>
  777. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  778. <span></span>curtail_v_solar_production = alt.Chart(curtailment_days).mark_point().encode(
  779. alt.X(&quot;solar&quot;, title=&quot;Solar Production&quot;),
  780. alt.Y(&quot;solar_curtailment&quot;, title=&quot;Solar Curtailment (MW)&quot;),
  781. alt.Color(&quot;month(timestamp):N&quot;, scale=alt.Scale(scheme=&quot;tableau20&quot;)),
  782. alt.Facet(&quot;year(timestamp):O&quot;, columns=3)
  783. )
  784. </pre></div>
  785. </div>
  786. </div>
  787. <div class="nbinput nblast docutils container">
  788. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[14]:
  789. </pre></div>
  790. </div>
  791. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  792. <span></span>base = alt.Chart().mark_point().encode(
  793. alt.X(&quot;monthdate(timestamp):T&quot;, title=&quot;Date (hour)&quot;),
  794. alt.Y(&quot;curtailment_intensity&quot;, title=&quot;Curtailment Intensity (MW/MW)&quot;),
  795. alt.Color(&quot;load:Q&quot;, scale=alt.Scale(scheme=&quot;redyellowblue&quot;), sort=&quot;descending&quot;, title=&quot;Load (MW)&quot;),
  796. # alt.Facet(&quot;year(timestamp):O&quot;, columns=3)
  797. )
  798. curtailment_intensity = alt.layer(base, data=curtailment_days.query(&quot;curtailment_intensity &lt; 1&quot;)).facet(&quot;year(timestamp):O&quot;)
  799. daily_curtailment_intensity = alt.layer(base, data=daily_curtailment).facet(&quot;year(timestamp):O&quot;)
  800. </pre></div>
  801. </div>
  802. </div>
  803. <div class="nbinput nblast docutils container">
  804. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[15]:
  805. </pre></div>
  806. </div>
  807. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  808. <span></span>daily_curtailment_vs_load = alt.Chart(daily_curtailment).mark_point().encode(
  809. alt.X(&quot;load&quot;, title=&quot;Load (MWh)&quot;),
  810. alt.Y(&quot;solar_curtailment&quot;, title=&quot;Daily Solar Curtailment (MWh)&quot;),
  811. alt.Color(&quot;month(timestamp):N&quot;, scale=alt.Scale(scheme=&quot;tableau20&quot;)),
  812. alt.Facet(&quot;year(timestamp):O&quot;),
  813. )
  814. </pre></div>
  815. </div>
  816. </div>
  817. </div>
  818. <div class="section" id="Curtailment-Characteristics">
  819. <h1>Curtailment Characteristics<a class="headerlink" href="#Curtailment-Characteristics" title="Permalink to this headline">¶</a></h1>
  820. <div class="nbinput docutils container">
  821. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[16]:
  822. </pre></div>
  823. </div>
  824. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  825. <span></span>alt.Chart(daily_curtailment).mark_bar().encode(
  826. alt.X(&quot;yearmonth(timestamp):T&quot;, title=&quot;Month&quot;),
  827. alt.Y(&quot;mean(solar_curtailment)&quot;, title=&quot;Mean Curtailment (MWh)&quot;)
  828. ).interactive()
  829. </pre></div>
  830. </div>
  831. </div>
  832. <div class="nboutput nblast docutils container">
  833. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[16]:
  834. </pre></div>
  835. </div>
  836. <div class="output_area rendered_html docutils container">
  837. <div id="altair-viz-cdf2828d2bbc45c596fd5bb5071b6a17"></div>
  838. <script type="text/javascript">
  839. (function(spec, embedOpt){
  840. let outputDiv = document.currentScript.previousElementSibling;
  841. if (outputDiv.id !== "altair-viz-cdf2828d2bbc45c596fd5bb5071b6a17") {
  842. outputDiv = document.getElementById("altair-viz-cdf2828d2bbc45c596fd5bb5071b6a17");
  843. }
  844. const paths = {
  845. "vega": "https://cdn.jsdelivr.net/npm//vega@5?noext",
  846. "vega-lib": "https://cdn.jsdelivr.net/npm//vega-lib?noext",
  847. "vega-lite": "https://cdn.jsdelivr.net/npm//vega-lite@4.8.1?noext",
  848. "vega-embed": "https://cdn.jsdelivr.net/npm//vega-embed@6?noext",
  849. };
  850. function loadScript(lib) {
  851. return new Promise(function(resolve, reject) {
  852. var s = document.createElement('script');
  853. s.src = paths[lib];
  854. s.async = true;
  855. s.onload = () => resolve(paths[lib]);
  856. s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
  857. document.getElementsByTagName("head")[0].appendChild(s);
  858. });
  859. }
  860. function showError(err) {
  861. outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
  862. throw err;
  863. }
  864. function displayChart(vegaEmbed) {
  865. vegaEmbed(outputDiv, spec, embedOpt)
  866. .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
  867. }
  868. if(typeof define === "function" && define.amd) {
  869. requirejs.config({paths});
  870. require(["vega-embed"], displayChart, err => showError(`Error loading script: ${err.message}`));
  871. } else if (typeof vegaEmbed === "function") {
  872. displayChart(vegaEmbed);
  873. } else {
  874. loadScript("vega")
  875. .then(() => loadScript("vega-lite"))
  876. .then(() => loadScript("vega-embed"))
  877. .catch(showError)
  878. .then(() => displayChart(vegaEmbed));
  879. }
  880. })({"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}}, "data": {"url": "altair-data-a237a3ab57361c6fa90d72b13331653a.json", "format": {"type": "json"}}, "mark": "bar", "encoding": {"x": {"type": "temporal", "field": "timestamp", "timeUnit": "yearmonth", "title": "Month"}, "y": {"type": "quantitative", "aggregate": "mean", "field": "solar_curtailment", "title": "Mean Curtailment (MWh)"}}, "selection": {"selector002": {"type": "interval", "bind": "scales", "encodings": ["x", "y"]}}, "$schema": "https://vega.github.io/schema/vega-lite/v4.8.1.json"}, {"mode": "vega-lite"});
  881. </script></div>
  882. </div>
  883. <div class="nbinput docutils container">
  884. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[17]:
  885. </pre></div>
  886. </div>
  887. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  888. <span></span>fixed_chart
  889. </pre></div>
  890. </div>
  891. </div>
  892. <div class="nboutput nblast docutils container">
  893. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[17]:
  894. </pre></div>
  895. </div>
  896. <div class="output_area rendered_html docutils container">
  897. <div id="altair-viz-c3bd11e42f8d4ce2902ea52c277c7ca7"></div>
  898. <script type="text/javascript">
  899. (function(spec, embedOpt){
  900. let outputDiv = document.currentScript.previousElementSibling;
  901. if (outputDiv.id !== "altair-viz-c3bd11e42f8d4ce2902ea52c277c7ca7") {
  902. outputDiv = document.getElementById("altair-viz-c3bd11e42f8d4ce2902ea52c277c7ca7");
  903. }
  904. const paths = {
  905. "vega": "https://cdn.jsdelivr.net/npm//vega@5?noext",
  906. "vega-lib": "https://cdn.jsdelivr.net/npm//vega-lib?noext",
  907. "vega-lite": "https://cdn.jsdelivr.net/npm//vega-lite@4.8.1?noext",
  908. "vega-embed": "https://cdn.jsdelivr.net/npm//vega-embed@6?noext",
  909. };
  910. function loadScript(lib) {
  911. return new Promise(function(resolve, reject) {
  912. var s = document.createElement('script');
  913. s.src = paths[lib];
  914. s.async = true;
  915. s.onload = () => resolve(paths[lib]);
  916. s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
  917. document.getElementsByTagName("head")[0].appendChild(s);
  918. });
  919. }
  920. function showError(err) {
  921. outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
  922. throw err;
  923. }
  924. function displayChart(vegaEmbed) {
  925. vegaEmbed(outputDiv, spec, embedOpt)
  926. .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
  927. }
  928. if(typeof define === "function" && define.amd) {
  929. requirejs.config({paths});
  930. require(["vega-embed"], displayChart, err => showError(`Error loading script: ${err.message}`));
  931. } else if (typeof vegaEmbed === "function") {
  932. displayChart(vegaEmbed);
  933. } else {
  934. loadScript("vega")
  935. .then(() => loadScript("vega-lite"))
  936. .then(() => loadScript("vega-embed"))
  937. .catch(showError)
  938. .then(() => displayChart(vegaEmbed));
  939. }
  940. })({"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}}, "vconcat": [{"mark": "rect", "encoding": {"color": {"type": "quantitative", "field": "solar_curtailment", "legend": {"orient": "top"}, "scale": {"exponent": 0.25, "scheme": "redgrey", "type": "pow"}, "sort": "descending", "title": "Solar Curtailment (MWh)"}, "x": {"type": "temporal", "field": "timestamp", "sort": "ascending", "timeUnit": "yearmonthdate", "title": "Date"}, "y": {"type": "temporal", "field": "timestamp", "sort": "descending", "timeUnit": "hours", "title": "Hour of Day"}}, "height": 250, "width": 1500}, {"mark": "rect", "encoding": {"color": {"type": "quantitative", "field": "solar", "legend": {"orient": "top"}, "scale": {"exponent": 2, "scheme": "redgrey", "type": "pow"}, "sort": "descending", "title": "Solar Output (MW)"}, "x": {"type": "temporal", "field": "timestamp", "sort": "ascending", "timeUnit": "yearmonthdate", "title": "Date"}, "y": {"type": "temporal", "field": "timestamp", "sort": "descending", "timeUnit": "hours", "title": "Hour of Day"}}, "height": 250, "width": 1500}, {"mark": "rect", "encoding": {"color": {"type": "quantitative", "field": "curtailment_intensity", "legend": {"orient": "top"}, "scale": {"domain": [0, 1], "exponent": 0.25, "scheme": "redgrey", "type": "pow"}, "sort": "descending", "title": "MWh Cur. per MWh Load"}, "x": {"type": "temporal", "field": "timestamp", "sort": "ascending", "timeUnit": "yearmonthdate", "title": "Date"}, "y": {"type": "temporal", "field": "timestamp", "sort": "descending", "timeUnit": "hours", "title": "Hour of Day"}}, "height": 250, "width": 1500}], "data": {"url": "altair-data-6a1d0501b74f1f7cd0afd96313b5d741.json", "format": {"type": "json"}}, "resolve": {"scale": {"color": "independent"}}, "$schema": "https://vega.github.io/schema/vega-lite/v4.8.1.json"}, {"mode": "vega-lite"});
  941. </script></div>
  942. </div>
  943. <p>Shown above are</p>
  944. <ul class="simple">
  945. <li><p>Hourly Solar curtailment in <span class="math notranslate nohighlight">\(x^{.25}\)</span> scale to exaggerate visual differences in curtailment scale.</p></li>
  946. <li><p>Hourly Solar Output (MW) in <span class="math notranslate nohighlight">\(x^{2}\)</span> scale.</p></li>
  947. <li><p>Hourly Curtailment “Intensity” w.r.t. Load (MW) in <span class="math notranslate nohighlight">\(x^{.25}\)</span> scale.</p></li>
  948. </ul>
  949. <p>By visual inspection, two large curtailment “zones” or “clusters” appear to exist – one centered around mid-March, and the other around mid-October. Another prominent feature is the fast adoption of solar over time.</p>
  950. <div class="nbinput docutils container">
  951. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[18]:
  952. </pre></div>
  953. </div>
  954. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  955. <span></span>daily_curtailment_vs_load
  956. </pre></div>
  957. </div>
  958. </div>
  959. <div class="nboutput nblast docutils container">
  960. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[18]:
  961. </pre></div>
  962. </div>
  963. <div class="output_area rendered_html docutils container">
  964. <div id="altair-viz-2bb8409f5cd4477cb0ccee766e8f7da6"></div>
  965. <script type="text/javascript">
  966. (function(spec, embedOpt){
  967. let outputDiv = document.currentScript.previousElementSibling;
  968. if (outputDiv.id !== "altair-viz-2bb8409f5cd4477cb0ccee766e8f7da6") {
  969. outputDiv = document.getElementById("altair-viz-2bb8409f5cd4477cb0ccee766e8f7da6");
  970. }
  971. const paths = {
  972. "vega": "https://cdn.jsdelivr.net/npm//vega@5?noext",
  973. "vega-lib": "https://cdn.jsdelivr.net/npm//vega-lib?noext",
  974. "vega-lite": "https://cdn.jsdelivr.net/npm//vega-lite@4.8.1?noext",
  975. "vega-embed": "https://cdn.jsdelivr.net/npm//vega-embed@6?noext",
  976. };
  977. function loadScript(lib) {
  978. return new Promise(function(resolve, reject) {
  979. var s = document.createElement('script');
  980. s.src = paths[lib];
  981. s.async = true;
  982. s.onload = () => resolve(paths[lib]);
  983. s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
  984. document.getElementsByTagName("head")[0].appendChild(s);
  985. });
  986. }
  987. function showError(err) {
  988. outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
  989. throw err;
  990. }
  991. function displayChart(vegaEmbed) {
  992. vegaEmbed(outputDiv, spec, embedOpt)
  993. .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
  994. }
  995. if(typeof define === "function" && define.amd) {
  996. requirejs.config({paths});
  997. require(["vega-embed"], displayChart, err => showError(`Error loading script: ${err.message}`));
  998. } else if (typeof vegaEmbed === "function") {
  999. displayChart(vegaEmbed);
  1000. } else {
  1001. loadScript("vega")
  1002. .then(() => loadScript("vega-lite"))
  1003. .then(() => loadScript("vega-embed"))
  1004. .catch(showError)
  1005. .then(() => displayChart(vegaEmbed));
  1006. }
  1007. })({"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}}, "data": {"url": "altair-data-a237a3ab57361c6fa90d72b13331653a.json", "format": {"type": "json"}}, "mark": "point", "encoding": {"color": {"type": "nominal", "field": "timestamp", "scale": {"scheme": "tableau20"}, "timeUnit": "month"}, "facet": {"type": "ordinal", "field": "timestamp", "timeUnit": "year"}, "x": {"type": "quantitative", "field": "load", "title": "Load (MWh)"}, "y": {"type": "quantitative", "field": "solar_curtailment", "title": "Daily Solar Curtailment (MWh)"}}, "$schema": "https://vega.github.io/schema/vega-lite/v4.8.1.json"}, {"mode": "vega-lite"});
  1008. </script></div>
  1009. </div>
  1010. <p>By inspection, we can see a very rough pattern of high curtailment events during periods of “medium” load. Intuitively, we might imagine these correspond to days with very high solar production, and very low demand (e.g. sunny in the desert, and temperate in populated centers.)</p>
  1011. <div class="nbinput docutils container">
  1012. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[19]:
  1013. </pre></div>
  1014. </div>
  1015. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  1016. <span></span>load_chart
  1017. </pre></div>
  1018. </div>
  1019. </div>
  1020. <div class="nboutput nblast docutils container">
  1021. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[19]:
  1022. </pre></div>
  1023. </div>
  1024. <div class="output_area rendered_html docutils container">
  1025. <div id="altair-viz-a78c165ac1b544d1a2b4fef95a5c8182"></div>
  1026. <script type="text/javascript">
  1027. (function(spec, embedOpt){
  1028. let outputDiv = document.currentScript.previousElementSibling;
  1029. if (outputDiv.id !== "altair-viz-a78c165ac1b544d1a2b4fef95a5c8182") {
  1030. outputDiv = document.getElementById("altair-viz-a78c165ac1b544d1a2b4fef95a5c8182");
  1031. }
  1032. const paths = {
  1033. "vega": "https://cdn.jsdelivr.net/npm//vega@5?noext",
  1034. "vega-lib": "https://cdn.jsdelivr.net/npm//vega-lib?noext",
  1035. "vega-lite": "https://cdn.jsdelivr.net/npm//vega-lite@4.8.1?noext",
  1036. "vega-embed": "https://cdn.jsdelivr.net/npm//vega-embed@6?noext",
  1037. };
  1038. function loadScript(lib) {
  1039. return new Promise(function(resolve, reject) {
  1040. var s = document.createElement('script');
  1041. s.src = paths[lib];
  1042. s.async = true;
  1043. s.onload = () => resolve(paths[lib]);
  1044. s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
  1045. document.getElementsByTagName("head")[0].appendChild(s);
  1046. });
  1047. }
  1048. function showError(err) {
  1049. outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
  1050. throw err;
  1051. }
  1052. function displayChart(vegaEmbed) {
  1053. vegaEmbed(outputDiv, spec, embedOpt)
  1054. .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
  1055. }
  1056. if(typeof define === "function" && define.amd) {
  1057. requirejs.config({paths});
  1058. require(["vega-embed"], displayChart, err => showError(`Error loading script: ${err.message}`));
  1059. } else if (typeof vegaEmbed === "function") {
  1060. displayChart(vegaEmbed);
  1061. } else {
  1062. loadScript("vega")
  1063. .then(() => loadScript("vega-lite"))
  1064. .then(() => loadScript("vega-embed"))
  1065. .catch(showError)
  1066. .then(() => displayChart(vegaEmbed));
  1067. }
  1068. })({"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}}, "data": {"url": "altair-data-2d3d4499b8a76c97427749523143b571.json", "format": {"type": "json"}}, "facet": {"type": "nominal", "field": "timestamp", "timeUnit": "year"}, "spec": {"mark": "line", "encoding": {"x": {"type": "quantitative", "field": "index", "title": "rank"}, "y": {"type": "quantitative", "field": "solar_curtailment", "title": "Solar Curtailment (MW)"}}}, "$schema": "https://vega.github.io/schema/vega-lite/v4.8.1.json"}, {"mode": "vega-lite"});
  1069. </script></div>
  1070. </div>
  1071. <p>Hourly curtailment by year in MW - Over time, the available curtailed capacity has increased drastically (by a factor of 3 from 2016 to 2019).</p>
  1072. <div class="nbinput docutils container">
  1073. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[20]:
  1074. </pre></div>
  1075. </div>
  1076. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  1077. <span></span>curtail_v_solar_production
  1078. </pre></div>
  1079. </div>
  1080. </div>
  1081. <div class="nboutput nblast docutils container">
  1082. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[20]:
  1083. </pre></div>
  1084. </div>
  1085. <div class="output_area rendered_html docutils container">
  1086. <div id="altair-viz-5eba22d01cb4476cb5a9401bc66e9b8a"></div>
  1087. <script type="text/javascript">
  1088. (function(spec, embedOpt){
  1089. let outputDiv = document.currentScript.previousElementSibling;
  1090. if (outputDiv.id !== "altair-viz-5eba22d01cb4476cb5a9401bc66e9b8a") {
  1091. outputDiv = document.getElementById("altair-viz-5eba22d01cb4476cb5a9401bc66e9b8a");
  1092. }
  1093. const paths = {
  1094. "vega": "https://cdn.jsdelivr.net/npm//vega@5?noext",
  1095. "vega-lib": "https://cdn.jsdelivr.net/npm//vega-lib?noext",
  1096. "vega-lite": "https://cdn.jsdelivr.net/npm//vega-lite@4.8.1?noext",
  1097. "vega-embed": "https://cdn.jsdelivr.net/npm//vega-embed@6?noext",
  1098. };
  1099. function loadScript(lib) {
  1100. return new Promise(function(resolve, reject) {
  1101. var s = document.createElement('script');
  1102. s.src = paths[lib];
  1103. s.async = true;
  1104. s.onload = () => resolve(paths[lib]);
  1105. s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
  1106. document.getElementsByTagName("head")[0].appendChild(s);
  1107. });
  1108. }
  1109. function showError(err) {
  1110. outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
  1111. throw err;
  1112. }
  1113. function displayChart(vegaEmbed) {
  1114. vegaEmbed(outputDiv, spec, embedOpt)
  1115. .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
  1116. }
  1117. if(typeof define === "function" && define.amd) {
  1118. requirejs.config({paths});
  1119. require(["vega-embed"], displayChart, err => showError(`Error loading script: ${err.message}`));
  1120. } else if (typeof vegaEmbed === "function") {
  1121. displayChart(vegaEmbed);
  1122. } else {
  1123. loadScript("vega")
  1124. .then(() => loadScript("vega-lite"))
  1125. .then(() => loadScript("vega-embed"))
  1126. .catch(showError)
  1127. .then(() => displayChart(vegaEmbed));
  1128. }
  1129. })({"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}}, "data": {"url": "altair-data-2d3d4499b8a76c97427749523143b571.json", "format": {"type": "json"}}, "mark": "point", "encoding": {"color": {"type": "nominal", "field": "timestamp", "scale": {"scheme": "tableau20"}, "timeUnit": "month"}, "facet": {"type": "ordinal", "columns": 3, "field": "timestamp", "timeUnit": "year"}, "x": {"type": "quantitative", "field": "solar", "title": "Solar Production"}, "y": {"type": "quantitative", "field": "solar_curtailment", "title": "Solar Curtailment (MW)"}}, "$schema": "https://vega.github.io/schema/vega-lite/v4.8.1.json"}, {"mode": "vega-lite"});
  1130. </script></div>
  1131. </div>
  1132. <p>One metric of interest may be the amount of solar curtailment per unit of solar production. Each mark represents a single hour in a year. By visual inspection, a vague envelope is visible on the right hand side. The sum of curtailment and production might represent the total solar capacity in a given hour. By inspection, we can also observe a larger portion of curtailment is occurring year on year.</p>
  1133. <div class="nbinput docutils container">
  1134. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[21]:
  1135. </pre></div>
  1136. </div>
  1137. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  1138. <span></span>curtailment_intensity
  1139. </pre></div>
  1140. </div>
  1141. </div>
  1142. <div class="nboutput nblast docutils container">
  1143. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[21]:
  1144. </pre></div>
  1145. </div>
  1146. <div class="output_area rendered_html docutils container">
  1147. <div id="altair-viz-cf2e895f8dc44ea9b01666aa44905c56"></div>
  1148. <script type="text/javascript">
  1149. (function(spec, embedOpt){
  1150. let outputDiv = document.currentScript.previousElementSibling;
  1151. if (outputDiv.id !== "altair-viz-cf2e895f8dc44ea9b01666aa44905c56") {
  1152. outputDiv = document.getElementById("altair-viz-cf2e895f8dc44ea9b01666aa44905c56");
  1153. }
  1154. const paths = {
  1155. "vega": "https://cdn.jsdelivr.net/npm//vega@5?noext",
  1156. "vega-lib": "https://cdn.jsdelivr.net/npm//vega-lib?noext",
  1157. "vega-lite": "https://cdn.jsdelivr.net/npm//vega-lite@4.8.1?noext",
  1158. "vega-embed": "https://cdn.jsdelivr.net/npm//vega-embed@6?noext",
  1159. };
  1160. function loadScript(lib) {
  1161. return new Promise(function(resolve, reject) {
  1162. var s = document.createElement('script');
  1163. s.src = paths[lib];
  1164. s.async = true;
  1165. s.onload = () => resolve(paths[lib]);
  1166. s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
  1167. document.getElementsByTagName("head")[0].appendChild(s);
  1168. });
  1169. }
  1170. function showError(err) {
  1171. outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
  1172. throw err;
  1173. }
  1174. function displayChart(vegaEmbed) {
  1175. vegaEmbed(outputDiv, spec, embedOpt)
  1176. .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
  1177. }
  1178. if(typeof define === "function" && define.amd) {
  1179. requirejs.config({paths});
  1180. require(["vega-embed"], displayChart, err => showError(`Error loading script: ${err.message}`));
  1181. } else if (typeof vegaEmbed === "function") {
  1182. displayChart(vegaEmbed);
  1183. } else {
  1184. loadScript("vega")
  1185. .then(() => loadScript("vega-lite"))
  1186. .then(() => loadScript("vega-embed"))
  1187. .catch(showError)
  1188. .then(() => displayChart(vegaEmbed));
  1189. }
  1190. })({"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}}, "data": {"url": "altair-data-ebaec80065fe0e5bc27d2a0116ef6d4b.json", "format": {"type": "json"}}, "facet": {"type": "ordinal", "field": "timestamp", "timeUnit": "year"}, "spec": {"layer": [{"mark": "point", "encoding": {"color": {"type": "quantitative", "field": "load", "scale": {"scheme": "redyellowblue"}, "sort": "descending", "title": "Load (MW)"}, "x": {"type": "temporal", "field": "timestamp", "timeUnit": "monthdate", "title": "Date (hour)"}, "y": {"type": "quantitative", "field": "curtailment_intensity", "title": "Curtailment Intensity (MW/MW)"}}}]}, "$schema": "https://vega.github.io/schema/vega-lite/v4.8.1.json"}, {"mode": "vega-lite"});
  1191. </script></div>
  1192. </div>
  1193. <p>Hourly curtailment per unit of solar production. A value of 1 represents an hour where 50% of solar capacity is curtailed.</p>
  1194. <div class="nbinput docutils container">
  1195. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[22]:
  1196. </pre></div>
  1197. </div>
  1198. <div class="input_area highlight-ipython3 notranslate"><div class="highlight"><pre>
  1199. <span></span>daily_curtailment_intensity
  1200. </pre></div>
  1201. </div>
  1202. </div>
  1203. <div class="nboutput nblast docutils container">
  1204. <div class="prompt highlight-none notranslate"><div class="highlight"><pre><span></span>[22]:
  1205. </pre></div>
  1206. </div>
  1207. <div class="output_area rendered_html docutils container">
  1208. <div id="altair-viz-5b6082b826c641d38c731e2cfa90fd59"></div>
  1209. <script type="text/javascript">
  1210. (function(spec, embedOpt){
  1211. let outputDiv = document.currentScript.previousElementSibling;
  1212. if (outputDiv.id !== "altair-viz-5b6082b826c641d38c731e2cfa90fd59") {
  1213. outputDiv = document.getElementById("altair-viz-5b6082b826c641d38c731e2cfa90fd59");
  1214. }
  1215. const paths = {
  1216. "vega": "https://cdn.jsdelivr.net/npm//vega@5?noext",
  1217. "vega-lib": "https://cdn.jsdelivr.net/npm//vega-lib?noext",
  1218. "vega-lite": "https://cdn.jsdelivr.net/npm//vega-lite@4.8.1?noext",
  1219. "vega-embed": "https://cdn.jsdelivr.net/npm//vega-embed@6?noext",
  1220. };
  1221. function loadScript(lib) {
  1222. return new Promise(function(resolve, reject) {
  1223. var s = document.createElement('script');
  1224. s.src = paths[lib];
  1225. s.async = true;
  1226. s.onload = () => resolve(paths[lib]);
  1227. s.onerror = () => reject(`Error loading script: ${paths[lib]}`);
  1228. document.getElementsByTagName("head")[0].appendChild(s);
  1229. });
  1230. }
  1231. function showError(err) {
  1232. outputDiv.innerHTML = `<div class="error" style="color:red;">${err}</div>`;
  1233. throw err;
  1234. }
  1235. function displayChart(vegaEmbed) {
  1236. vegaEmbed(outputDiv, spec, embedOpt)
  1237. .catch(err => showError(`Javascript Error: ${err.message}<br>This usually means there's a typo in your chart specification. See the javascript console for the full traceback.`));
  1238. }
  1239. if(typeof define === "function" && define.amd) {
  1240. requirejs.config({paths});
  1241. require(["vega-embed"], displayChart, err => showError(`Error loading script: ${err.message}`));
  1242. } else if (typeof vegaEmbed === "function") {
  1243. displayChart(vegaEmbed);
  1244. } else {
  1245. loadScript("vega")
  1246. .then(() => loadScript("vega-lite"))
  1247. .then(() => loadScript("vega-embed"))
  1248. .catch(showError)
  1249. .then(() => displayChart(vegaEmbed));
  1250. }
  1251. })({"config": {"view": {"continuousWidth": 400, "continuousHeight": 300}}, "data": {"url": "altair-data-a237a3ab57361c6fa90d72b13331653a.json", "format": {"type": "json"}}, "facet": {"type": "ordinal", "field": "timestamp", "timeUnit": "year"}, "spec": {"layer": [{"mark": "point", "encoding": {"color": {"type": "quantitative", "field": "load", "scale": {"scheme": "redyellowblue"}, "sort": "descending", "title": "Load (MW)"}, "x": {"type": "temporal", "field": "timestamp", "timeUnit": "monthdate", "title": "Date (hour)"}, "y": {"type": "quantitative", "field": "curtailment_intensity", "title": "Curtailment Intensity (MW/MW)"}}}]}, "$schema": "https://vega.github.io/schema/vega-lite/v4.8.1.json"}, {"mode": "vega-lite"});
  1252. </script></div>
  1253. </div>
  1254. <p>Total daily curtailment per unit of solar production. A value of 1 represents a day where 50% of solar capacity is curtailed.</p>
  1255. </div>
  1256. </div>
  1257. <div class="bottomnav" role="navigation" aria-label="bottom navigation">
  1258. <p>
  1259. «&#160;&#160;<a href="../data_sources.html">Data Sources</a>
  1260. &#160;&#160;::&#160;&#160;
  1261. <a class="uplink" href="../index.html">Contents</a>
  1262. &#160;&#160;::&#160;&#160;
  1263. <a href="../methods.html">Methods</a>&#160;&#160;»
  1264. </p>
  1265. </div>
  1266. <div class="footer" role="contentinfo">
  1267. &#169; Copyright Thomas Tu, 2020.
  1268. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 2.4.4.
  1269. </div>
  1270. </body>
  1271. </html>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...