forked from lf-energy/lfenergy-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlandscape.yml
16127 lines (16074 loc) · 909 KB
/
landscape.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
landscape:
- category:
name: WETOStack
subcategories:
- subcategory:
name: Engineering-fidelity physics models
items: []
- subcategory:
name: Numerical weather prediction
items: []
- subcategory:
name: Turbine and component models
items: []
- subcategory:
name: High fidelity models
items: []
- subcategory:
name: Design and optimization
items: []
- subcategory:
name: Controls development
items: []
- subcategory:
name: Resources assessment
items: []
- subcategory:
name: Cost models
items: []
- subcategory:
name: Grid load and demand models
items: []
- subcategory:
name: Other
items: []
- subcategory:
name: Operation and Maintenance
items: []
- subcategory:
name: Wildlife Impact
items: []
- category:
name: Renewable Energy
subcategories:
- subcategory:
name: Photovoltaics and Solar Energy
items:
- item:
name: A Global Inventory of Commerical-, Industrial-, and Utility-Scale Photovoltaic Solar Generating Units
description: Used to produce a global inventory of utility-scale solar photvoltaic generating station.
homepage_url: https://github.com/Lkruitwagen/solar-pv-global-inventory
repo_url: https://github.com/Lkruitwagen/solar-pv-global-inventory
logo: A Global Inventory of Commerical-, Industrial-, and Utility-Scale Photovoltaic Solar Generating Units.svg
extra:
refs: ',https://zenodo.org/record/5005868,https://zenodo.org/record/5005868'
organization:
name: Lucas Kruitwagen
- item:
name: autoxrd
description: a python package for automatic xrd pattern classification of thin-films, tweaked for small and class-imbalanced datasets.
homepage_url: https://github.com/pv-lab/autoxrd
repo_url: https://github.com/pv-lab/autoxrd
logo: autoxrd.svg
extra:
refs: ',https://doi.org/10.1038/s41524-019-0196-x,https://doi.org/10.1038/s41524-019-0196-x'
organization:
name: MIT Accelerated Materials Laboratory for Sustainability
- item:
name: bayesprocess
description: >-
a python package for physics informed bayesian network inference using neural network surrogate model for matching process / variable /
performance in solar cells.
homepage_url: https://github.com/pv-lab/bayesprocess
repo_url: https://github.com/pv-lab/bayesprocess
logo: bayesprocess.svg
organization:
name: MIT Accelerated Materials Laboratory for Sustainability
- item:
name: bifacialvf
description: bifacial pv view factor model for system performance calculation.
homepage_url: https://bifacialvf.readthedocs.io
repo_url: https://github.com/nrel/bifacialvf
logo: bifacialvf.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: >-
,https://zenodo.org/badge/latestdoi/114160149,https://zenodo.org/search?page=1&size=20&q=conceptrecid:6369162&all_versions&sort=-version,https://doi.org/10.5281/zenodo.6369162\n\nbilinear,https://doi.org/10.1016/j.solener.2005.06.010\n\n
- item:
name: bifacial_radiance
description: toolkit for working with radiance for the ray-trace modeling of bifacial photovoltaics.
homepage_url: https://bifacial-radiance.readthedocs.io
repo_url: https://github.com/nrel/bifacial_radiance
logo: bifacial_radiance.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: >-
,https://doi.org/10.5281/zenodo.3860350,https://doi.org/10.21105/joss.01865\n\n\nplease,https://zenodo.org/search?page=1&size=20&q=conceptrecid:3860349&all_versions&sort=-version
topics: radiance,bifacial,photovoltaics,renewable-energy,renewables,gui
- item:
name: CarrierCapture.jl
description: A set of codes to compute carrier capture and recombination rates in semiconducting compounds like solar cells.
homepage_url: https://wmd-group.github.io/CarrierCapture.jl/dev/
repo_url: https://github.com/WMD-group/CarrierCapture.jl
logo: CarrierCapture.jl.svg
extra:
topics: defects,semiconductors,electronic-structure,materials-design,solar-cells
refs: ',https://zenodo.org/badge/latestdoi/130691083,https://doi.org/10.21105/joss.02102'
organization:
name: Materials Design Group
- item:
name: dGen
second_path:
- WETOStack / Grid load and demand models
description: >-
Forecast PV adoption based on user specified configurations like electricity rate prices, electricity load growth, solar resource factors, and
much more.
homepage_url: https://github.com/NREL/dgen
repo_url: https://github.com/NREL/dgen
logo: dGen.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: elpv-dataset
description: A dataset of functional and defective solar cells extracted from EL images of solar modules.
homepage_url: https://github.com/zae-bayern/elpv-dataset
repo_url: https://github.com/zae-bayern/elpv-dataset
logo: elpv-dataset.svg
extra:
topics: photovoltaic,solar-energy,solar-cells,machine-learning,computer-vision
refs: https://doi.org/10.1007/s00138-021-01191-9
organization:
name: ZAE Bayern
homepage: https://www.zae-bayern.de/
linkedin: https://www.linkedin.com/company/zae-bayern
- item:
name: feedinlib
description: >-
Contains implementations of photovoltaic models to calculate electricity generation from a PV installation based on given solar radiation.
Furthermore it contains all necessary pre-calculations.
homepage_url: https://github.com/oemof/feedinlib
repo_url: https://github.com/oemof/feedinlib
logo: feedinlib.svg
organization:
name: oemof community
- item:
name: gsee
description: Global Solar Energy Estimator
homepage_url: https://gsee.readthedocs.io/
repo_url: https://github.com/renewables-ninja/gsee
logo: gsee.svg
extra:
topics: solar,pandas,energy,irradiance,photovoltaic,pv,electricity,ninja
refs: ',https://doi.org/10.1016/j.energy.2016.08.060'
organization:
name: Renewables.ninja
- item:
name: honeybee
description: A Python library to create, run and visualize the results of daylight (RADIANCE) and energy analysis (EnergyPlus/OpenStudio).
homepage_url: http://ladybug-tools.github.io/honeybee/docs
repo_url: https://github.com/ladybug-tools/honeybee
logo: honeybee.svg
crunchbase: https://www.crunchbase.com/organization/ladybug-tools
- item:
name: IonMonger
description: A free and fast perovskite solar cell simulator with coupled ion vacancy and charge carrier dynamics in one dimension.
homepage_url: https://sites.google.com/view/ionmonger/home
repo_url: https://github.com/PerovskiteSCModelling/IonMonger
logo: IonMonger.svg
crunchbase: https://www.crunchbase.com/organization/university-of-southampton
extra:
topics: perovskite-solar-cells,halide-ion-migration
refs: ',https://doi.org/10.1039/C8EE01576G,https://doi.org/10.1016/j.apm.2018.06.051'
- item:
name: LibreSolar
description: firmware for libresolar bms boards based on bq769x0 or isl94202.
homepage_url: https://libre.solar
repo_url: https://github.com/LibreSolar/bms-firmware
logo: libresolar.svg
organization:
name: Libre Solar Project
- item:
name: Machine-Learning-for-Solar-Energy-Prediction
description: Predict the power production of a solar panel farm from weather measurements using machine learning.
homepage_url: https://github.com/ColasGael/Machine-Learning-for-Solar-Energy-Prediction
repo_url: https://github.com/ColasGael/Machine-Learning-for-Solar-Energy-Prediction
logo: Machine-Learning-for-Solar-Energy-Prediction.svg
extra:
refs: null
topics: machine-learning,neural-network,data-processing,python,matlab,tensorflow
organization:
name: ColasGael
- item:
name: MPPT-Solar-Charger
description: Supporting documentation and software for the MPPT Solar Charger.
homepage_url: https://github.com/danjulio/MPPT-Solar-Charger
repo_url: https://github.com/danjulio/MPPT-Solar-Charger
logo: MPPT-Solar-Charger.svg
organization:
name: danjuliodesigns, LLC
- item:
name: nasapower
description: >-
Aims to make it quick and easy to automate downloadinASA-POWER global meteorology, surface solar energy and climatology data in your R session as
a tidy data frame tibble object for analysis and use in modeling or other purposes.
homepage_url: https://docs.ropensci.org/nasapower
repo_url: https://github.com/ropensci/nasapower
logo: nasapower.svg
crunchbase: https://www.crunchbase.com/organization/ropensci
extra:
topics: agroclimatology,weather,r,nasa-power,nasa,agroclimatology-data,weather-variables,weather-data,earth-science,rstats,data-access,r-package
refs: ',https://zenodo.org/badge/latestdoi/109224461,https://doi.org/10.21105/joss.01035'
- item:
name: Open Solar Project
description: ESP32 Smart Solar Charger.
homepage_url: https://github.com/opensolarproject/OSPController/wiki
repo_url: https://github.com/opensolarproject/OSPController
logo: Open Solar Project.svg
organization:
name: Open Solar Project
- item:
name: photovoltaic
description: A Python library used in photovoltaics.
homepage_url: https://github.com/pvedu/photovoltaic
repo_url: https://github.com/pvedu/photovoltaic
logo: photovoltaic.svg
crunchbase: https://www.crunchbase.com/organization/arizona-state-university
- item:
name: Photovoltaic_Fault_Detector
description: Model-definition is a deep learning application for fault detection in photovoltaic plants.
homepage_url: https://rentadrone.cl/developers/photovoltaic-fault-detector/
repo_url: https://github.com/RentadroneCL/Photovoltaic_Fault_Detector
logo: Photovoltaic_Fault_Detector.svg
extra:
topics: yolo3,detector-model,model-detection,detection-boxes,fault-detection,solar-energy,photovoltaic-panels,hacktoberfest,hacktoberfest2020
organization:
name: SimpleMap
- item:
name: predict_pv_yield
description: Use machine learning to map satellite imagery of clouds to solar PV yield.
homepage_url: https://github.com/openclimatefix/predict_pv_yield
repo_url: https://github.com/openclimatefix/predict_pv_yield
logo: predict_pv_yield.svg
extra:
topics: nowcasting
organization:
name: Open Climate Fix
- item:
name: PV Free
description: A public API for PV modeling parameters.
homepage_url: https://pvfree.azurewebsites.net/
repo_url: https://github.com/BreakingBytes/pvfree
logo: PV Free.svg
organization:
name: Breaking Bytes
- item:
name: pv-system-profiler
description: Estimating PV array location and orientation from real-world power datasets.
homepage_url: https://github.com/slacgismo/pv-system-profiler
repo_url: https://github.com/slacgismo/pv-system-profiler
logo: pv-system-profiler.svg
crunchbase: https://www.crunchbase.com/organization/slac-national-accelerator-laboratory
extra:
refs: ',https://zenodo.org/badge/latestdoi/183074637'
- item:
name: pv-terms
description: Contains nomenclature for PV-relevant terms that are used in modeling and data analysis for PV systems.
homepage_url: https://github.com/DuraMAT/pv-terms
repo_url: https://github.com/DuraMAT/pv-terms
logo: pv-terms.svg
organization:
name: Hacking Materials Research Group
- item:
name: PV4GER
description: Aims at democratizing and accelerating the access to photovoltaic systems data in Germany and beyond.
homepage_url: https://github.com/kdmayer/3D-PV-Locator
repo_url: https://github.com/kdmayer/3D-PV-Locator
logo: PV4GER.svg
crunchbase: https://www.crunchbase.com/organization/stanford-university
extra:
topics: >-
neurips-2020,solar,renewable-energy,pv-systems,deepsolar,computer-vision,inception-v3,deeplabv3,network-planning,solar-panels,climate-change,ai,deep-learning,remote-sensing,satellite-imagery
refs: ',https://doi.org/10.1016/j.apenergy.2021.118469'
- item:
name: pvanalytics
description: Quality control, filtering, feature labeling, and other tools for working with data from photovoltaic energy systems.
homepage_url: https://pvanalytics.readthedocs.io
repo_url: https://github.com/pvlib/pvanalytics
logo: pvanalytics.svg
extra:
refs: https://doi.org/10.5281/zenodo.6110569
organization:
name: pvlib
- item:
name: pvcaptest
description: Collection of functions and Jupyter Notebooks to partially automate running a capacity test following ASTM E2848.
homepage_url: https://github.com/pvcaptest/pvcaptest
repo_url: https://github.com/pvcaptest/pvcaptest
logo: pvcaptest.svg
organization:
name: Ben Taylor
- item:
name: pvcompare
description: A model for comparing the benefits of different PV technologies in a specified local energy system in different energy supply scenarios.
homepage_url: https://github.com/greco-project/pvcompare
repo_url: https://github.com/greco-project/pvcompare
logo: pvcompare.svg
crunchbase: https://www.crunchbase.com/organization/universidad-polit-cnica-de-madrid-cepade
extra:
refs: ',https://zenodo.org/badge/latestdoi/224614782\n\n\npvcompare\n~~~~~~~~~\n\nIntroduction\n============\n\n*pvcompare*'
- item:
name: pvfactors
description: Open source view-factor model for diffuse shading and bifacial PV modeling.
homepage_url: http://sunpower.github.io/pvfactors/
repo_url: https://github.com/SunPower/pvfactors
logo: pvfactors.svg
crunchbase: https://www.crunchbase.com/organization/sunpower
extra:
topics: solar-energy,renewable-energy,python,bifacial
- item:
name: pvlib-python
second_path:
- Asset Management / Analytics
description: A set of documented functions for simulating the performance of photovoltaic energy systems.
homepage_url: https://pvlib-python.readthedocs.io
repo_url: https://github.com/pvlib/pvlib-python
logo: pvlib.svg
crunchbase: https://www.crunchbase.com/organization/numfocus
extra:
topics: solar-energy,python,renewable-energy,renewables,photovoltaic
refs: >-
https://doi.org/10.5281/zenodo.593284,https://doi.org/10.21105/joss.00884\n\nPlease,https://zenodo.org/search?page=1&size=20&q=conceptrecid:593284&all_versions&sort=-version
- item:
name: PVMismatch
description: An explicit Python PV system IV & PV curve trace calculator which can also calculate mismatch.
homepage_url: http://sunpower.github.io/PVMismatch/
repo_url: https://github.com/SunPower/PVMismatch
logo: PVMismatch.svg
crunchbase: https://www.crunchbase.com/organization/sunpower
extra:
topics: numpy,scipy,python,solar,photovoltaic
- item:
name: pvoutput
description: Python code for downloading PV data from PVOutput.org.
homepage_url: https://github.com/openclimatefix/pvoutput
repo_url: https://github.com/openclimatefix/pvoutput
logo: pvoutput.svg
extra:
topics: pvoutput,python,python-library,solar,nowcasting
organization:
name: Open Climate Fix
- item:
name: pvtrace
description: Optical ray tracing for luminescent materials and spectral converter photovoltaic devices.
homepage_url: https://github.com/danieljfarrell/pvtrace
repo_url: https://github.com/danieljfarrell/pvtrace
logo: pvtrace.svg
extra:
refs: ',https://doi.org/10.5281/zenodo.592982'
topics: python,photovoltaics,raytracing,optics,energy
organization:
name: danieljfarrell
- item:
name: PV_ICE
description: An open-source tool to quantify Solar Photovoltaics (PV) Energy and Mass Flows in the Circular Economy, from a Reliability and Lifetime approach.
homepage_url: https://PV_ICE.readthedocs.io
repo_url: https://github.com/NREL/PV_ICE
logo: PV_ICE.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
topics: circular-economy,circularity-metrics,reliability,solar-energy,circularity,mass-flow,repair,reuse,recycle,photovoltaics,lifetime
refs: >-
,https://zenodo.org/badge/latestdoi/248347431,https://doi.org/10.1371/journal.pone.0274351.\n\n,https://doi.org/10.1016/j.isci.2021.103488.\n\n\nThere,https://doi.org/10.1016/j.isci.2021.103488.\n\n\nand,https://zenodo.org/
- item:
name: Pysolar
description: >-
A collection of Python libraries for simulating the irradiation of any point on earth by the sun. It includes code for extremely precise ephemeris
calculations.
homepage_url: http://pysolar.org
repo_url: https://github.com/pingswept/pysolar
logo: Pysolar.svg
crunchbase: https://www.crunchbase.com/organization/tufts-university
- item:
name: rayflare
description: Provide a flexible, user-friendly Python environment to model complex optical stacks, with a focus on solar cells.
homepage_url: https://github.com/qpv-research-group/rayflare
repo_url: https://github.com/qpv-research-group/rayflare
logo: rayflare.svg
extra:
topics: physics,optics,raytracing,ray-tracing,rigorous-coupled-wave,transfer-matrix-method,solar-cells,multiscale-simulation
refs: ',https://doi.org/10.21105/joss.03460'
organization:
name: Quantum Photovoltaics Research Group
homepage: https://www.qpvgroup.org/
- item:
name: rdtools
description: An open source library to support reproducible technical analysis of time series data from photovoltaic energy systems.
homepage_url: https://rdtools.readthedocs.io/
repo_url: https://github.com/NREL/rdtools
logo: rdtools.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: >-
,https://doi.org/10.5281/zenodo.1210316,https://doi.org/10.1109/JPHOTOV.2017.2779779,https://doi.org/10.1109/JPHOTOV.2017.2784682,https://doi.org/10.1109/PVSC45281.2020.9300635,https://doi.org/10.1109/PVSC43889.2021.9518733
- item:
name: solar
description: allows for reproducible research both for photovoltaics systems performance and solar radiation.
homepage_url: http://oscarperpinan.github.io/solar/
repo_url: https://github.com/oscarperpinan/solar
logo: solar.svg
extra:
refs: ',https://doi.org/10.18637/jss.v050.i09,https://doi.org/10.18637/jss.v050.i09\n\n,https://doi.org/10.18637/jss.v050.i09\n\na'
organization:
name: Journal of Statistical Software
- item:
name: Solar electricity Nowcasting
description: Build the world's best near-term forecasting system for solar electricity generation.
homepage_url: https://openclimatefix.org/projects/nowcasting/
repo_url: https://github.com/openclimatefix/nowcasting
logo: Solar electricity Nowcasting.svg
extra:
topics: nowcasting
organization:
name: Open Climate Fix
- item:
name: Solar Forecast Arbiter
description: Core data gathering, validation, processing, and reporting package for the Solar Forecast Arbiter.
homepage_url: https://solarforecastarbiter-core.readthedocs.io
repo_url: https://github.com/SolarArbiter/solarforecastarbiter-core
logo: Solar Forecast Arbiter.svg
extra:
refs: ',https://doi.org/10.5281/zenodo.3473590'
organization:
name: Solar Forecast Arbiter
- item:
name: solar-data-tools
description: Data analysis tools for working with historical PV solar time-series data sets.
homepage_url: https://solar-data-tools.readthedocs.io/
repo_url: https://github.com/slacgismo/solar-data-tools
logo: solar-data-tools.svg
crunchbase: https://www.crunchbase.com/organization/slac-national-accelerator-laboratory
extra:
refs: ',https://zenodo.org/uadge/latestdoi/171066536'
- item:
name: solar-panel-detection
description: >-
Using a combination of AI (machine vision), open data and short-term forecasting, the project aims to determine the amount of solar electricity
being put into the UK grid at a given time (i.e., "right now", or "nowcasting")
homepage_url: https://github.com/alan-turing-institute/solar-panel-detection
repo_url: https://github.com/alan-turing-institute/solar-panel-detection
logo: solar-panel-detection.svg
crunchbase: https://www.crunchbase.com/organization/alan-turing-institute
extra:
topics: hut23,hut23-425
- item:
name: solariot
description: Leverage your IoT enabled Solar PV Inverter to stream your solar energy usage data to a real time dashboard.
homepage_url: https://solariot.live
repo_url: https://github.com/meltaxa/solariot
logo: solariot.svg
extra:
topics: freeboard,iot,solar-energy,sungrow-inverter,dashboard,pvoutput,modbus-sungrow,dweet,influxdb,telemetry
organization:
name: Solariot
- item:
name: SolarPILOT
description: Solar power tower layout and optimization tool.
homepage_url: https://www.nrel.gov/csp/solarpilot.html
repo_url: https://github.com/NREL/SolarPILOT
logo: solarpilot.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: ',https://doi.org/10.1016/j.solener.2018.06.063,https://doi.org/10.1016/j.solener.2018.06.063'
- item:
name: solarpv-der-simulation-utility
description: >-
allows user to run dynamics simulations for solar photovoltaic distributed energy resource connected to a stiff voltage source or to an external
program.
homepage_url: https://solarpv-der-simulation-utility.readthedocs.io
repo_url: https://github.com/tdcosim/solarpv-der-simulation-tool
logo: solarpv-der-simulation-utility.svg
crunchbase: https://www.crunchbase.com/organization/argonne-national-laboratory
- item:
name: solarpy
description: >-
This package aims to provide a reliable solar radiation model, mainly based on the work of Duffie, J.A., and Beckman, W. A., 1974, "Solar energy
thermal processes".
homepage_url: https://github.com/aqreed/solarpy
repo_url: https://github.com/aqreed/solarpy
logo: solarpy.svg
extra:
topics: solar-energy,solar-cells,sun-position,beam-irradiance,photovoltaic,python,modeling,simulation,flight-simulation
organization:
name: AeroPython Team
- item:
name: solartherm
description: solar thermal power/fuel station performance simulation and optimization using modelica.
homepage_url: http://solartherm.readthedocs.org
repo_url: https://github.com/solartherm/solartherm
logo: solartherm.svg
extra:
topics: engineering,energy,solar,thermodynamics,optimisation,simulation,modelica,modelica-library
organization:
name: Solartherm project team
- item:
name: solax
description: read energy usage data from the real-time api on solax solar inverters.
homepage_url: https://github.com/squishykid/solax
repo_url: https://github.com/squishykid/solax
logo: solax.svg
extra:
topics: solax,solar,photovoltaic,home-automation,iot,raspberry-pi
organization:
name: squishykid
- item:
name: solcore5
description: a multi-scale, python-based library for the modeling of solar cells and semiconductor materials.
homepage_url: https://www.solcore.solar/
repo_url: https://github.com/qpv-research-group/solcore5
logo: solcore5.svg
extra:
refs: ',https://doi.org/10.5281/zenodo.1185316'
topics: photovoltaic,semiconductor,solar-cells,python,hacktoberfest
organization:
name: Quantum Photovoltaics Research Group
homepage: https://www.qpvgroup.org/
- item:
name: SolTrace
description: A software tool developed at NREL to model concentrating solar power (CSP) systems and analyze their optical performance.
homepage_url: https://www.nrel.gov/csp/soltrace.html
repo_url: https://github.com/NREL/SolTrace
logo: SolTrace.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: StatisticalClearSky
description: Statistical estimation of a clear sky signal from PV system power data.
homepage_url: https://github.com/slacgismo/StatisticalClearSky
repo_url: https://github.com/slacgismo/StatisticalClearSky
logo: StatisticalClearSky.svg
crunchbase: https://www.crunchbase.com/organization/slac-national-accelerator-laboratory
extra:
refs: ',https://zenodo.org/badge/latestdoi/117483201'
- item:
name: Tonatiuh
description: A Monte Carlo ray tracer for the optical simulation of solar concentrating systems.
homepage_url: http://iat-cener.github.io/tonatiuh/
repo_url: https://github.com/iat-cener/tonatiuh
logo: Tonatiuh.svg
crunchbase: https://www.crunchbase.com/organization/centro-nacional-de-energ%C3%ADas-renovables
extra:
topics: solar-concentrating-systems,simulation,solar,energy
- subcategory:
name: Wind Energy
items:
- item:
name: AirfoilPreppy
description: A Python module for pre-processing and evaluating aerodynamic airfoil data, primarily for wind turbine applications.
homepage_url: http://wisdem.github.io/AirfoilPreppy/
repo_url: https://github.com/WISDEM/AirfoilPreppy
logo: AirfoilPreppy.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: amr-wind
second_path:
- WETOStack / High fidelity models
description: A massively parallel, block-structured adaptive-mesh, incompressible flow solver for wind turbine and wind farm simulations.
homepage_url: https://exawind.github.io/amr-wind
repo_url: https://github.com/Exawind/amr-wind
logo: amr-wind.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
topics: ecp,exascale-computing,amrex,amr,wind,wind-turbines
- item:
name: ANBA4
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://github.com/ANBA4/anba4
repo_url: https://github.com/ANBA4/anba4
logo: ANBA4.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: ANYstructure
description: Offshore Steel structure calculation tool with automatic optimization and report generation.
homepage_url: https://github.com/audunarn/ANYstructure
repo_url: https://github.com/audunarn/ANYstructure
logo: ANYstructure.svg
extra:
topics: >-
dnvgl-os-c101,design-of-offshore-steel-structures,buckling,fatigue-analysis,analysis-framework,plate-thickness,beam-section,gui-based,dnvgl-rp-c201,optimization-tools,structural-engineering,naval-architecture,dnvgl-rp-c203,cylinders,plates,girder,dnv-os-c101
organization:
name: Audun Arnesen Nyhus
- item:
name: awebox
description: Modelling and optimal control of single- and multiple-kite systems for airborne wind energy.
homepage_url: https://github.com/awebox/awebox
repo_url: https://github.com/awebox/awebox
project_org: https://github.com/awebox
logo: awebox.svg
organization:
name: Kiteswarms GmbH i. L.
- item:
name: BasicDTUController
description: The scope of this project is to provide an open source, open access controller that can be used by the wind energy community as a reference.
homepage_url: https://gitlab.windenergy.dtu.dk/OpenLAC/BasicDTUController
repo_url: https://gitlab.windenergy.dtu.dk/OpenLAC/BasicDTUController
license: GNU General Public License v3.0
logo: BasicDTUController.svg
crunchbase: https://www.crunchbase.com/organization/technical-university-of-denmark
- item:
name: brightwind
description: A Python library aims to empower wind resource analysts and establish a common industry standard toolset.
homepage_url: https://brightwind-dev.github.io/brightwind-docs/
repo_url: https://github.com/brightwind-dev/brightwind
project_org: https://github.com/brightwind-dev
logo: brightwind.svg
crunchbase: https://www.crunchbase.com/organization/brightwind
- item:
name: CCBlade
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://github.com/WISDEM/CCBlade
repo_url: https://github.com/WISDEM/CCBlade
logo: CCBlade.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: CEWAM
second_path:
- WETOStack / Other
homepage_url: https://github.com/NREL/CEWAM
repo_url: https://github.com/NREL/CEWAM
logo: CEWAM.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: digital_wra_data_standard
description: This standard data model and associated tools are intended as universal building blocks for Wind Energy Resource Assessment applications.
homepage_url: https://github.com/IEA-Task-43/digital_wra_data_standard
repo_url: https://github.com/IEA-Task-43/digital_wra_data_standard
logo: digital_wra_data_standard.svg
organization:
name: IEA Wind Digitalization (Task 43)
- item:
name: Draco
description: A collection of end-to-end solutions for machine learning problems commonly found in monitoring wind energy production system.
homepage_url: https://sintel-dev.github.io/Draco
repo_url: https://github.com/sintel-dev/Draco
logo: Draco.svg
crunchbase: https://www.crunchbase.com/organization/massachusetts-institute-of-technology-mit
extra:
topics: classification,machine-learning,time-series
- item:
name: DW TAP
second_path:
- WETOStack / Controls development
homepage_url: https://github.com/NREL/dw-tap-app
repo_url: https://github.com/NREL/dw-tap-app
logo: DW TAP.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: FAST.Farm
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://github.com/openfast/openfast
repo_url: https://github.com/openfast/openfast
logo: FAST.Farm.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: FLASC
second_path:
- WETOStack / Design and optimization
homepage_url: https://github.com/nrel/flasc
repo_url: https://github.com/nrel/flasc
logo: FLASC.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: FLORIS
second_path:
- WETOStack / Design and optimization
homepage_url: https://github.com/nrel/floris
repo_url: https://github.com/nrel/floris
logo: floris.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: FUSED-Wind
second_path:
- WETOStack / Cost models
homepage_url: https://github.com/FUSED-Wind/fusedwind
repo_url: https://github.com/FUSED-Wind/fusedwind
logo: FUSED-Wind.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: G2Aero
second_path:
- WETOStack / High fidelity models
homepage_url: https://github.com/NREL/G2Aero
repo_url: https://github.com/NREL/G2Aero
logo: G2Aero.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: HAMS
description: An open-source computer program for the analysis of wave diffraction and radiation of three-dimensional floating or submerged structures.
homepage_url: https://github.com/YingyiLiu/HAMS
repo_url: https://github.com/YingyiLiu/HAMS
logo: HAMS.svg
crunchbase: https://www.crunchbase.com/organization/kyushu-university
extra:
topics: wave-structure-interaction,boundary-element-method,potential-flow-theory,offshore-wind-platforms,ocean-wave-energy-converters
- item:
name: HOPP
second_path:
- WETOStack / High fidelity models
homepage_url: https://github.com/NREL/HOPP
repo_url: https://github.com/NREL/HOPP
logo: HOPP.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: IEA-15-240-RWT
description: A 15 MW reference wind turbine repository developed in conjunction with IEA Wind.
homepage_url: https://github.com/IEAWindTask37/IEA-15-240-RWT
repo_url: https://github.com/IEAWindTask37/IEA-15-240-RWT
logo: IEA-15-240-RWT.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: ',https://zenodo.org/badge/latestdoi/213679527'
- item:
name: KiteFAST
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://kitefast.readthedocs.io
repo_url: https://github.com/openfast/kitefast
logo: KiteFAST.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: LandBOSSE
second_path:
- WETOStack / Cost models
description: >-
The Land-based Balance-of-System Systems Engineering model is a systems engineering tool that estimates the balance-of-system costs associated
with installing utility scale wind plants (10, 1.5 MW turbines or larger).
homepage_url: https://github.com/WISDEM/LandBOSSE
repo_url: https://github.com/WISDEM/LandBOSSE
logo: LandBOSSE.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: makani
description: A project to develop a commercial-scale airborne wind turbine, culminating in a flight test of the Makani M600 off the coast of Norway.
homepage_url: https://github.com/google/makani
repo_url: https://github.com/google/makani
logo: makani.svg
crunchbase: https://www.crunchbase.com/organization/google
extra:
topics: makani,wind,renewable-energy,energy-kites,wind-power
- item:
name: MOST (Matlab for Offshore wind turbine Simulation Tool)
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: http://www.morenergylab.polito.it/most/
repo_url: https://github.com/MOREnergylab/MOST
logo: most.svg
crunchbase: https://www.crunchbase.com/organization/politecnico-di-torino
- item:
name: nalu-wind
second_path:
- WETOStack / High fidelity models
description: Solver for wind farm simulations targeting exascale computational platforms.
homepage_url: https://nalu-wind.readthedocs.io
repo_url: https://github.com/Exawind/nalu-wind
logo: nalu-wind.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
topics: low-mach,wind-energy,les,cfd,ecp,exascale-computing,exawind
- item:
name: NRWAL
second_path:
- WETOStack / Cost models
description: A library of offshore wind cost equations.
homepage_url: https://nrel.github.io/NRWAL/
repo_url: https://github.com/NREL/NRWAL
logo: NRWAL.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: ',https://zenodo.org/badge/latestdoi/319377095\n\n,https://doi.org/10.5281/zenodo.4705961.\n\nIf,https://doi.org/10.2172/1324526'
- item:
name: OpenFAST
second_path:
- WETOStack / Engineering-fidelity physics models
description: A multi-physics, multi-fidelity tool for simulating the coupled dynamic response of wind turbines and wind farms.
homepage_url: http://openfast.readthedocs.io
repo_url: https://github.com/OpenFAST/openfast
project_org: https://github.com/OpenFAST
logo: OpenFAST.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
topics: wind-turbine,wind-energy,wind-farm,aeroelasticity,wind-power,wind
- item:
name: OpenMDAO
description: Optimization of Aerodynamic systems.
homepage_url: http://openmdao.org
repo_url: https://github.com/OpenMDAO/OpenMDAO
project_org: https://github.com/OpenMDAO
logo: OpenMDAO.svg
crunchbase: https://www.crunchbase.com/organization/nasa
extra:
topics: nasa,open-source,framework,openmdao,optimization
- item:
name: OpenOA
second_path:
- WETOStack / Operation and Maintenance
description: This library provides a framework for working with large time series data from wind plants, such as SCADA.
homepage_url: https://openoa.readthedocs.io/
repo_url: https://github.com/NREL/OpenOA
logo: OpenOA.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: ',https://doi.org/10.21105/joss.02171'
- item:
name: OpenTurbine
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://github.com/exawind/openturbine
repo_url: https://github.com/exawind/openturbine
logo: OpenTurbine.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: ORBIT
second_path:
- WETOStack / Cost models
description: >-
Offshore Renewable Balance-of-system Installation Tool computes capital costs and activity times for offshore wind plant balance-of-system
(everything besides the turbine) costs.
homepage_url: https://wisdem.github.io/ORBIT/
repo_url: https://github.com/WISDEM/ORBIT
logo: ORBIT.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: OWENS
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://www.nrel.gov/docs/fy23osti/83748.pdf
logo: OWENS.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: pBEAM
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://github.com/WISDEM/pBEAM
repo_url: https://github.com/WISDEM/pBEAM
logo: pBEAM.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: pyconturb
description: Constrained Stochastic Turbulence for Wind Energy Applications.
homepage_url: https://gitlab.windenergy.dtu.dk/pyconturb/pyconturb
repo_url: https://gitlab.windenergy.dtu.dk/pyconturb
license: MIT License
logo: pyconturb.svg
crunchbase: https://www.crunchbase.com/organization/technical-university-of-denmark
- item:
name: PyFrame3DD
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://github.com/WISDEM/pyFrame3DD
repo_url: https://github.com/WISDEM/pyFrame3DD
logo: PyFrame3DD.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: PyWake
description: An AEP calculator for wind farms implemented in Python including a collection of wake models.
homepage_url: https://topfarm.pages.windenergy.dtu.dk/PyWake
repo_url: https://gitlab.windenergy.dtu.dk/TOPFARM/PyWake
license: MIT License
logo: PyWake.svg
crunchbase: https://www.crunchbase.com/organization/technical-university-of-denmark
- item:
name: QBlade
description: >-
Provides a hands-on design and simulation capabilities for HAWT and VAWT rotor design and shows all the fundamental relationships of design
concepts and turbine performance in an easy and intuitive way.
homepage_url: http://www.q-blade.org
repo_url: null
license: Academic Public License
logo: QBlade.svg
crunchbase: https://www.crunchbase.com/organization/technical-university-of-berlin
- item:
name: RAFT
second_path:
- WETOStack / Engineering-fidelity physics models
homepage_url: https://github.com/WISDEM/RAFT
repo_url: https://github.com/WISDEM/RAFT
logo: RAFT.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: ROSCO
second_path:
- WETOStack / Controls development
description: NREL's Reference OpenSource Controller for wind turbine applications.
homepage_url: https://rosco.readthedocs.io/en/latest/
repo_url: https://github.com/NREL/ROSCO
logo: ROSCO.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: ',https://zenodo.org/badge/latestdoi/220498357'
- item:
name: SHARPy
description: Simulation of High Aspect Ratio aeroplanes and wind turbines in Python.
homepage_url: https://imperial.ac.uk/aeroelastics/sharpy
repo_url: https://github.com/ImperialCollegeLondon/sharpy
logo: SHARPy.svg
crunchbase: https://www.crunchbase.com/organization/imperial-college-london
extra:
topics: aeroelasticity,simulation,aeronautics,structures,structural-dynamics,wind-turbines
refs: ',https://doi.org/10.5281/zenodo.3531965,https://doi.org/10.21105/joss.01885`\n\nThe,https://doi.org/10.21105/joss.01885'
- item:
name: SONATA
second_path:
- WETOStack / High fidelity models
homepage_url: https://github.com/ptrbortolotti/SONATA
repo_url: https://github.com/ptrbortolotti/SONATA
logo: SONATA.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
- item:
name: TopFarm2
description: A Python package developed by DTU Wind Energy to help with wind-farm optimizations.
homepage_url: https://topfarm.pages.windenergy.dtu.dk/TopFarm2/
repo_url: https://gitlab.windenergy.dtu.dk/TOPFARM/TopFarm2
license: MIT License
logo: TopFarm2.svg
crunchbase: https://www.crunchbase.com/organization/technical-university-of-denmark
- item:
name: turbinesFoam
description: A library for simulating wind and marine hydrokinetic turbines in OpenFOAM using the actuator line method.
homepage_url: https://github.com/turbinesFoam/turbinesFoam
repo_url: https://github.com/turbinesFoam/turbinesFoam
logo: turbinesFoam.svg
extra:
topics: openfoam,turbines,airfoils,blade-element,actuator-line,wind-energy
refs: ',https://zenodo.org/badge/latestdoi/4234/turbinesFoam/turbinesFoam,https://zenodo.org/badge/latestdoi/4234/turbinesFoam/turbinesFoam'
organization:
name: turbinesFoam
- item:
name: WEIS
second_path:
- WETOStack / Design and optimization
description: WEIS is a framework that combines multiple tools to enable design optimization of floating offshore wind turbines.
homepage_url: https://github.com/WISDEM/WEIS
repo_url: https://github.com/WISDEM/WEIS
logo: WEIS.svg
crunchbase: https://www.crunchbase.com/organization/national-renewable-energy-laboratory
extra:
refs: ',https://zenodo.org/badge/latestdoi/289320573'
- item:
name: welib
description: Wind energy library, python and matlab tools for wind turbines analyses.
homepage_url: https://github.com/ebranlard/welib
repo_url: https://github.com/ebranlard/welib
logo: welib.svg
organization:
name: E. Branlard
- item:
name: WindEnergyToolbox
description: >-
A collection of Python scripts that facilitate working with (potentially a lot) of HAWC2,HAWCStab2, FAST or other text input based simulation
tools.
homepage_url: https://gitlab.windenergy.dtu.dk/toolbox/WindEnergyToolbox
repo_url: https://github.com/DTUWindEnergy/WindEnergyToolbox
logo: WindEnergyToolbox.svg
crunchbase: https://www.crunchbase.com/organization/technical-university-of-denmark
- item:
name: windfarmGA
description: Genetic algorithm to optimize the layout of wind farms.
homepage_url: https://ysosirius.github.io/windfarmGA/
repo_url: https://github.com/YsoSirius/windfarmGA
logo: windfarmGA.svg
organization:
name: Sebastian Gatscha
- item:
name: windpowerlib
description: A library to model the output of wind turbines and farms.
homepage_url: https://oemof.org/
repo_url: https://github.com/wind-python/windpowerlib
logo: windpowerlib.svg
extra:
topics: wind,energy,power,model,modelling
refs: ',https://doi.org/10.5281/zenodo.824267\n,https://zenodo.org/search?page=1&size=20&q=windpowerlib'
organization:
name: oemof community
- item:
name: windrose
description: A graphic tool used by meteorologists to give a succinct view of how wind speed and direction are typically distributed at a particular location.
homepage_url: https://python-windrose.github.io/windrose
repo_url: https://github.com/python-windrose/windrose
project_org: https://github.com/python-windrose
logo: windrose.svg
crunchbase: https://www.crunchbase.com/organization/university-of-poitiers
extra:
topics: python,matplotlib,windrose,wind,speed,pandas,numpy
refs: ',https://zenodo.org/badge/latestdoi/37549137'
- item:
name: WindSE
second_path:
- WETOStack / High fidelity models
description: A Python package that uses a FEniCS backend to perform wind farm simulations and optimization.
homepage_url: https://github.com/NREL/WindSE
repo_url: https://github.com/NREL/WindSE