File size: 185,710 Bytes
ee702c7 | 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 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 | [
{
"title": "Microstructure & physicochemical properties dataset of NaCl-based salt mixtures for concentrating solar power",
"doi": "10.1038/s41597-025-06437-z",
"url": "https://doi.org/10.1038/s41597-025-06437-z",
"journal": "Scientific Data",
"year": 2026,
"authors": "Feng, Y.; Wu, Y.; Wang, W.",
"abstract": "Abstract\n Concentrating solar power is a pivotal technology in global transition toward renewable energy, providing a viable pathway for dispatchable and base-load electricity generation. An important component of the concentrating solar power system is molten salts, particularly NaCl-based mixtures, which serve as both efficient heat transfer fluids and high-capacity thermal energy storage media. The influence mechanisms of micro-ionic interactions and microstructure on physico",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Co-crystal engineering unlocks high-stability perovskite solar modules",
"doi": "10.1038/s41560-025-01904-8",
"url": "https://doi.org/10.1038/s41560-025-01904-8",
"journal": "Nature Energy",
"year": 2026,
"authors": "",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Mapping Europe’s rooftop photovoltaic potential with a building-level database",
"doi": "10.1038/s41560-025-01947-x",
"url": "https://doi.org/10.1038/s41560-025-01947-x",
"journal": "Nature Energy",
"year": 2026,
"authors": "Kakoulaki, G.; Kenny, R.; Taylor, N.; Gracia-Amillo, A.; Szabo, S.",
"abstract": "Abstract\n \n Individual building-level approaches are needed to understand the full potential of rooftop photovoltaics (PV) at national and regional scale. Here we use the European Digital Building Stock Model R2025, an open-access building-level database, to assess rooftop solar potential for each of the 271 million buildings in the European Union. The results show that potential capacity could reach 2.3 TWp (1,822 GWp residential, 519 GWp non-residential), wi",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Author Correction: Mapping Europe’s rooftop photovoltaic potential with a building-level database",
"doi": "10.1038/s41560-026-01991-1",
"url": "https://doi.org/10.1038/s41560-026-01991-1",
"journal": "Nature Energy",
"year": 2026,
"authors": "Kakoulaki, G.; Kenny, R.; Taylor, N.; Gracia-Amillo, A.; Szabo, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Toward traceable global systems for end-of-life photovoltaic waste",
"doi": "10.1038/s41467-026-69171-z",
"url": "https://doi.org/10.1038/s41467-026-69171-z",
"journal": "Nature Communications",
"year": 2026,
"authors": "Huang, B.; Long, Y.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Hourglass-shaped GaAs0.99Bi0.01 nanowire solar cells with CuI-PEDOT:PSS double hole transport layers for enhanced photovoltaic performance",
"doi": "10.1038/s41598-025-34717-6",
"url": "https://doi.org/10.1038/s41598-025-34717-6",
"journal": "Scientific Reports",
"year": 2026,
"authors": "Rautela, M.; Sagar, S.; Kumar, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "A sport inspired kabaddi game optimizer for accurate parameter estimation of solar photovoltaic models",
"doi": "10.1038/s41598-025-32437-5",
"url": "https://doi.org/10.1038/s41598-025-32437-5",
"journal": "Scientific Reports",
"year": 2026,
"authors": "Ayyarao, T.; Kishore, G.; Dev, A.; Siddaraj, U.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "State-of-play of contending silicon photovoltaic technologies",
"doi": "10.1016/j.joule.2025.102240",
"url": "https://doi.org/10.1016/j.joule.2025.102240",
"journal": "Joule",
"year": 2026,
"authors": "Green, M.; Zhou, Z.; Song, N.; Qiu, K.; Xu, X.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Climate change will increase high-temperature risks, degradation, and costs of rooftop photovoltaics globally",
"doi": "10.1016/j.joule.2025.102218",
"url": "https://doi.org/10.1016/j.joule.2025.102218",
"journal": "Joule",
"year": 2026,
"authors": "Wu, H.; Kong, Q.; Huber, M.; Sun, M.; Craig, M.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Comparative evaluation of the material consumption and carbon footprint of silicon PV modules",
"doi": "10.1016/j.crsus.2025.100576",
"url": "https://doi.org/10.1016/j.crsus.2025.100576",
"journal": "Cell Reports Sustainability",
"year": 2026,
"authors": "Kim, M.; Chan, C.; Wang, S.; Wang, L.; Chang, N.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Carbon Trading & New Business Models",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Large terahertz photovoltaic effect enhanced by phonon excitations in ferroelectric semiconductor SbSI",
"doi": "10.1126/sciadv.adw9796",
"url": "https://doi.org/10.1126/sciadv.adw9796",
"journal": "Science Advances",
"year": 2026,
"authors": "Okamura, Y.; Guo, G.; Kaneko, Y.; Nakamura, M.; Sotome, M.",
"abstract": "Quantum geometry of Bloch electron in crystalline solids produces various exotic quantum phenomena. The shift current photovoltaic effect driven by the photo creation of quasiparticle is one such emerging example that enables the conversion from terahertz photon into dc charge current with absence of dissipative photocarrier. Despite wide-ranging potential applications, however, the fundamental nature of terahertz photovoltaic response has remained elusive. Here, we show the large photocurrent g",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Bulk and interface engineering of 1.7 eV–bandgap chalcogenide solar cells enabling record efficiency",
"doi": "10.1126/sciadv.aed4703",
"url": "https://doi.org/10.1126/sciadv.aed4703",
"journal": "Science Advances",
"year": 2026,
"authors": "Ishizuka, S.; Taguchi, N.",
"abstract": "\n Wide-bandgap chalcogenide photovoltaics offer strong potential for tandem solar cells and solar-driven hydrogen generation via water splitting, yet their performance remains limited by persistent interfacial and bulk defects. Here, we demonstrate enhanced efficiency in 1.7–electron volt CuGaSe\n 2\n thin-film solar cells through aluminum (Al) alloying and rubidium (Rb) incorporation. The Al- and Rb-modified CuGaSe\n 2\n ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Global photovoltaic solar panel dataset from 2019 to 2022",
"doi": "10.1038/s41597-025-04985-y",
"url": "https://doi.org/10.1038/s41597-025-04985-y",
"journal": "Scientific Data",
"year": 2025,
"authors": "Li, A.; Liu, L.; Li, S.; Cui, X.; Chen, X.",
"abstract": "Abstract\n Solar photovoltaic (PV) power generation, known for its affordability and environmental benefits, is a key component of the global energy supply. However, the lack of comprehensive, timely, and precise global PV datasets has limited spatial analysis of PV potential. We developed a new method to identify PV panels globally, producing an annual 20-meter resolution dataset for 2019–2022. This dataset offers unprecedented detail and accuracy for future research and policy-making. ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "CPVPD-2024: A Chinese photovoltaic plant dataset derived via a topography-enhanced deep learning framework",
"doi": "10.1038/s41597-025-05891-z",
"url": "https://doi.org/10.1038/s41597-025-05891-z",
"journal": "Scientific Data",
"year": 2025,
"authors": "Yang, Y.; Lin, S.; Lu, R.; Liu, X.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Solar PV Generation and Consumption Dataset of an Estonian Residential Dwelling",
"doi": "10.1038/s41597-025-04747-w",
"url": "https://doi.org/10.1038/s41597-025-04747-w",
"journal": "Scientific Data",
"year": 2025,
"authors": "Hasan, S.; Blinov, A.; Chub, A.; Vinnikov, D.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Longitudinal Dataset of Net-load, PV Production and Solar Irradiation from Madeira Island, Portugal",
"doi": "10.1038/s41597-025-06118-x",
"url": "https://doi.org/10.1038/s41597-025-06118-x",
"journal": "Scientific Data",
"year": 2025,
"authors": "Pereira, L.; Monteiro, D.; Apina, F.; Scuri, S.; Barreto, M.",
"abstract": "Abstract\n This paper presents the PTProsumer dataset, a high-resolution dataset of photovoltaic (PV) production and net-load measurements collected from 24 prosumers - entities that both produce and consume electricity, including households and small commercial buildings - on Madeira Island, Portugal. The dataset covers monitoring periods ranging from 3 months to 5 years, with measurements sampled at a 1-second resolution, resulting in approximately 3.89 billion data points. PV ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "A harmonized dataset of ground-mounted solar energy in the US with enhanced metadata",
"doi": "10.1038/s41597-025-05862-4",
"url": "https://doi.org/10.1038/s41597-025-05862-4",
"journal": "Scientific Data",
"year": 2025,
"authors": "Stid, J.; Kendall, A.; Anctil, A.; Rapp, J.; Bingaman, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "A hierarchical dataset on multiple energy consumption and PV generation with emissions and weather information",
"doi": "10.1038/s41597-025-06010-8",
"url": "https://doi.org/10.1038/s41597-025-06010-8",
"journal": "Scientific Data",
"year": 2025,
"authors": "Dong, H.; Zhu, J.; Chung, C.; Liang, Z.; Yang, H.",
"abstract": "Abstract\n This study constructs a multi-source and hierarchical dataset of energy consumption, photovoltaic (PV) power generation, greenhouse gas (GHG) emissions, and weather information, dubbed Hierarchical Energy, Emissions, and Weather (HEEW). This dataset contains 11,987,328 records for 147 individual buildings, four aggregated communities, and the entire region, which is structured as time-series tables indexed by building ID and timestamps from 1 January 2014 to 31 Decembe",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "A global dataset of the cost of capital for renewable energy projects",
"doi": "10.1038/s41597-025-05912-x",
"url": "https://doi.org/10.1038/s41597-025-05912-x",
"journal": "Scientific Data",
"year": 2025,
"authors": "Steffen, B.; Egli, F.; Gumber, A.; Ðukan, M.; Waidelich, P.",
"abstract": "Abstract\n The cost of capital (CoC) critically influences the levelized cost of renewable energy and, by extension, the global low-carbon transition. However, reliable and consistent CoC data remain scarce, limiting an appropriate reflection of CoC differences in energy system and integrated assessment models. We present a global dataset of CoC for renewable energy projects, covering 68 countries from 2010 to 2022 and focusing on three key technologies: utility-scale solar photovoltaics",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Unequal solar photovoltaic performance by race and income partly reflects financing models and installer choices",
"doi": "10.1038/s41560-025-01743-7",
"url": "https://doi.org/10.1038/s41560-025-01743-7",
"journal": "Nature Energy",
"year": 2025,
"authors": "Gherghina, M.; Dokshin, F.; Leffel, B.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Deploying photovoltaic systems in global open-pit mines for a clean energy transition",
"doi": "10.1038/s41893-025-01594-w",
"url": "https://doi.org/10.1038/s41893-025-01594-w",
"journal": "Nature Sustainability",
"year": 2025,
"authors": "Wang, K.; Zhou, J.; Yang, R.; Xu, S.; Hu, Z.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Quantifying the pyroelectric and photovoltaic coupling series of ferroelectric films",
"doi": "10.1038/s41467-025-56233-x",
"url": "https://doi.org/10.1038/s41467-025-56233-x",
"journal": "Nature Communications",
"year": 2025,
"authors": "Hu, C.; Liu, X.; Dan, H.; Guo, C.; Zhang, M.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "A pathway to coexistence of electroluminescence and photovoltaic conversion in organic devices",
"doi": "10.1038/s41467-025-67332-0",
"url": "https://doi.org/10.1038/s41467-025-67332-0",
"journal": "Nature Communications",
"year": 2025,
"authors": "Oono, T.; Aoki, Y.; Sasaki, T.; Shoji, H.; Okada, T.",
"abstract": "Abstract\n Achieving both high electroluminescence (EL) efficiency and power conversion efficiency (PCE) in a single organic device has long been considered difficult, since the design principles optimising one often compromise the other. In this study, we present a strategy employing multiple-resonance thermally activated delayed fluorescence materials with strong absorption and high emission efficiency, enabling coexistence of high EL and photovoltaic (PV) efficiencies. By prec",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Nonlinear photovoltaic effects in monolayer semiconductor and layered magnetic material hetero-interface with P- and T-symmetry broken system",
"doi": "10.1038/s41467-025-58918-9",
"url": "https://doi.org/10.1038/s41467-025-58918-9",
"journal": "Nature Communications",
"year": 2025,
"authors": "Asada, S.; Shinokita, K.; Watanabe, K.; Taniguchi, T.; Matsuda, K.",
"abstract": "Abstract\n Stacking two non-polar materials with different inversion- and rotational-symmetries shows unique nonlinear photovoltaic properties, with potential applications such as in next generation solar-cells. These nonlinear photocurrent properties could be further extended with broken time reversal symmetry present in magnetic materials, however, the combination of time reversal and rotation symmetry breaking has not been fully explored. Herein, we investigate the nonlinear photovolt",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Global potential of sustainable single-cell protein based on variable renewable electricity",
"doi": "10.1038/s41467-025-56364-1",
"url": "https://doi.org/10.1038/s41467-025-56364-1",
"journal": "Nature Communications",
"year": 2025,
"authors": "Fasihi, M.; Jouzi, F.; Tervasmäki, P.; Vainikka, P.; Breyer, C.",
"abstract": "Abstract\n The environmental impacts of the food system exceed several planetary boundaries, with protein production being a major contributor. Single-Cell Protein (SCP) is a protein-rich microbial biomass that offers a sustainable alternative when derived from renewable energy and sustainable feedstocks. We evaluate the global potential for SCP production utilising electrolytic hydrogen and oxygen, atmospheric carbon dioxide and nitrogen, and hourly-optimised hybrid PV-wind power plants",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "AI & Data Science for Urban Energy Systems",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Worldwide rooftop photovoltaic electricity generation may mitigate global warming",
"doi": "10.1038/s41558-025-02276-3",
"url": "https://doi.org/10.1038/s41558-025-02276-3",
"journal": "Nature Climate Change",
"year": 2025,
"authors": "Zhang, Z.; Qian, Z.; Chen, M.; Zhu, R.; Zhang, F.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "The equity implications of pecuniary externalities on an electric grid",
"doi": "10.1093/pnasnexus/pgaf356",
"url": "https://doi.org/10.1093/pnasnexus/pgaf356",
"journal": "npj Clean Energy",
"year": 2025,
"authors": "Sims, C.; Ali, G.; Holladay, J.; Roberson, T.; Chen, C.",
"abstract": "Abstract\n The adoption of rooftop photovoltaic (PV) systems can create upward pressure on retail electricity rates as utilities are forced to spread their fixed costs of generation and transmission across a smaller customer base. Since high-income households are more likely to purchase PV systems, low-income households may be disproportionately impacted by these rate increases. Using a novel combination of agent-based computational economic modeling and a choice experiment of ro",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Control strategy evaluation for reactive power management in grid-connected photovoltaic systems under varying solar conditions",
"doi": "10.1038/s41598-025-08918-y",
"url": "https://doi.org/10.1038/s41598-025-08918-y",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Adak, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Development of a new solar system integrating photovoltaic and thermoelectric modules with paraffin-based nanomaterials",
"doi": "10.1038/s41598-025-85161-5",
"url": "https://doi.org/10.1038/s41598-025-85161-5",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Alinia, A.; Sheikholeslami, M.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Design and performance analysis of a solar photovoltaic system for a rural community in rivers state, Nigeria",
"doi": "10.1038/s41598-025-00664-5",
"url": "https://doi.org/10.1038/s41598-025-00664-5",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Ukoima, K.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Land Use (土地利用)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Quadrant swapping technique for partial shaded solar photovoltaic system",
"doi": "10.1038/s41598-025-15120-7",
"url": "https://doi.org/10.1038/s41598-025-15120-7",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Thangaraj, H.; Chokkalingam, B.; Aruchamy, S.; David, P.; Padmanaban, S.",
"abstract": "Abstract\n Solar energy is one among the most essential renewable sources, and its use is vital to the long-term progress in environmental and energy development. Partial shadowing issues are frequently encountered for solar photovoltaic (PV) systems, and they always influence the PV array’s output power production. There are numerous methods used to reconfigure the PV arrays to extract the possible maximum power. However, those methods have sub-optimal performance in addressing certain ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Photovoltaic solar energy prediction using the seasonal-trend decomposition layer and ASOA optimized LSTM neural network model",
"doi": "10.1038/s41598-025-87625-0",
"url": "https://doi.org/10.1038/s41598-025-87625-0",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Mohanasundaram, V.; Rangaswamy, B.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Optimizing photovoltaic power plant forecasting with dynamic neural network structure refinement",
"doi": "10.1038/s41598-024-80424-z",
"url": "https://doi.org/10.1038/s41598-024-80424-z",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Díaz-Bello, D.; Vargas-Salgado, C.; Alcazar-Ortega, M.; Alfonso-Solar, D.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "MXene-based multilayered and ultrawideband absorber for solar cell and photovoltaic applications",
"doi": "10.1038/s41598-025-86230-5",
"url": "https://doi.org/10.1038/s41598-025-86230-5",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Ngobeh, J.; Sorathiya, V.; Alwabli, A.; Jaffar, A.; Faragallah, O.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Solar photovoltaic feed-in tariffs: viability analysis and policy recommendations",
"doi": "10.1038/s41598-025-32105-8",
"url": "https://doi.org/10.1038/s41598-025-32105-8",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Mekonnen, T.; Tsegaye, S.; Belete, B.; Selvaraj, J.; Negewo, A.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Enhancing photovoltaic efficiency in Half-Tandem MAPbI3/ MASnI3 Perovskite solar cells with triple core-shell plasmonic nanoparticles",
"doi": "10.1038/s41598-025-85243-4",
"url": "https://doi.org/10.1038/s41598-025-85243-4",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Ivriq, S.; Mohammadi, M.; Davidsen, R.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Seasonal quantile forecasting of solar photovoltaic power using Q-CNN-GRU",
"doi": "10.1038/s41598-025-12797-8",
"url": "https://doi.org/10.1038/s41598-025-12797-8",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Ait Mouloud, L.; Kheldoun, A.; Oussidhoum, S.; Alharbi, H.; Alotaibi, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Optimal energy management of multi-carrier energy system considering uncertainty in renewable generation",
"doi": "10.1038/s41598-025-10404-4",
"url": "https://doi.org/10.1038/s41598-025-10404-4",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Garg, A.; Niazi, K.; Tiwari, S.; Sharma, S.; Rawat, T.",
"abstract": "Abstract\n This paper presents a structured approach for the efficient operation of multi-carrier energy systems under the uncertainty of renewable energy sources. As the penetration of wind and solar energy increases, managing the resulting variability becomes critical to maintaining both economic efficiency and operational flexibility. To address this, a two-stage multi objective optimization framework is proposed. In the first stage, the objective is to minimize daily operational cost",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "A bi-level optimization strategy of electricity-hydrogen-carbon integrated energy system considering photovoltaic and wind power uncertainty and demand response",
"doi": "10.1038/s41598-024-84605-8",
"url": "https://doi.org/10.1038/s41598-024-84605-8",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Lu, M.; Teng, Y.; Chen, Z.; Song, Y.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Solar potential assessment using machine learning and climate change projections for long-term energy planning",
"doi": "10.1038/s41598-025-23661-0",
"url": "https://doi.org/10.1038/s41598-025-23661-0",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Reddy, B.; Gautam, K.; Pachauri, N.",
"abstract": "Abstract\n This work proposes a novel method for evaluating solar potential, essential for the development, installation, and operation of solar power systems. The approach forecasts solar energy potential for specific sites by utilizing integrated geospatial, meteorological, and infrastructural multidimensional data. A new application has been released to assess the solar capacity globally. The study evaluated various machine learning methods, ultimately selecting an XGBoost mod",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Grid tied hybrid PV fuel cell system with energy storage and ANFIS based MPPT for smart EV charging",
"doi": "10.1038/s41598-025-09626-3",
"url": "https://doi.org/10.1038/s41598-025-09626-3",
"journal": "Scientific Reports",
"year": 2025,
"authors": "vendoti, S.; Tulasi, N.; Jalli, R.; Ponnuru, S.; Jin, Z.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "FLEXERGY",
"subcategory": "Electric Vehicles & Mobility",
"direction_label": "Demand Response & New Mobilities & Urban Planning",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Location allocation and capacity optimization for a PV and battery integrated hybrid community electric vehicle charging station",
"doi": "10.1038/s41598-025-31865-7",
"url": "https://doi.org/10.1038/s41598-025-31865-7",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Kayal, P.; Braciník, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "FLEXERGY",
"subcategory": "Electric Vehicles & Mobility",
"direction_label": "Demand Response & New Mobilities & Urban Planning",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "DDPG algorithm for power optimization and control of solar PV-integrated DFIG wind energy systems",
"doi": "10.1038/s41598-025-19818-6",
"url": "https://doi.org/10.1038/s41598-025-19818-6",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Pandey, R.; Bose, S.; Dwivedi, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Design of a distributed power system using solar PV and micro turbine-based wind energy system with a flywheel energy storage",
"doi": "10.1038/s41598-025-29604-z",
"url": "https://doi.org/10.1038/s41598-025-29604-z",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Bhavani, T.; Rajababu, D.; Irfan, M.; Rakesh, T.; Sekhar, P.",
"abstract": "Abstract\n As renewable energy sources gain distinction in distributed power generation, micro-grid systems integrating solar photovoltaic (PV), micro-turbine-based wind energy, and flywheel energy storage have developed as sustainable solutions. This paper presents a novel design methodology for a hybrid micro-grid system that optimally integrates these components, ensuring enhanced efficiency, resilience, and stability. In a grid outage or weak-grid scenario, a flywheel provide",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Multiobjective distribution system operation with demand response to optimize solar hosting capacity, voltage deviation index and network loss",
"doi": "10.1038/s41598-024-82379-7",
"url": "https://doi.org/10.1038/s41598-024-82379-7",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Loji, K.; Sharma, S.; Sharma, G.; Rawat, T.",
"abstract": "AbstractIn this research, demand response impact on the hosting capacity of solar photovoltaic for distribution system is investigated. The suggested solution model is formulated and presented as a tri-objective optimization that consider maximization of solar PV hosting capacity (HC), minimization of network losses (Loss) and maintaining node voltage deviation (VDev) within acceptable limits. These crucial objectives are optimized simultaneously as well as individually. To assess the efficacy o",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Multi-objective optimization of gamified demand response for PV-integrated microgrids: a novel NSGA-III framework with behavioral adaptation modeling",
"doi": "10.1038/s41598-025-13904-5",
"url": "https://doi.org/10.1038/s41598-025-13904-5",
"journal": "Scientific Reports",
"year": 2025,
"authors": "Duan, Y.; Gao, C.; Zhang, J.; Wu, Y.; Zhou, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "FLEXERGY",
"subcategory": "Demand Response",
"direction_label": "Demand Response & New Mobilities & Urban Planning",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Mine photovoltaic systems for a sustainable energy transition",
"doi": "10.1016/j.joule.2025.102097",
"url": "https://doi.org/10.1016/j.joule.2025.102097",
"journal": "Joule",
"year": 2025,
"authors": "Zhang, Y.; Lu, Y.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Surveying the potential of flexible and high-specific-power photovoltaic assemblies and arrays for space applications",
"doi": "10.1016/j.joule.2025.102194",
"url": "https://doi.org/10.1016/j.joule.2025.102194",
"journal": "Joule",
"year": 2025,
"authors": "Mejía Escobar, M.; Algora, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Imported solar photovoltaics contributed to health and climate benefits in the United States",
"doi": "10.1016/j.oneear.2025.101467",
"url": "https://doi.org/10.1016/j.oneear.2025.101467",
"journal": "One Earth",
"year": 2025,
"authors": "Qiu, M.; He, G.; Marcotullio, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Quantifying the accelerated diffusion and cost savings of global solar photovoltaic supply chains",
"doi": "10.1016/j.isci.2024.111610",
"url": "https://doi.org/10.1016/j.isci.2024.111610",
"journal": "iScience",
"year": 2025,
"authors": "Chen, Z.; Gu, B.; Yu, D.; Wang, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Diversifying the solar photovoltaic supply chain to secure Europe’s energy and climate roadmap and sovereignty",
"doi": "10.1016/j.isci.2025.112751",
"url": "https://doi.org/10.1016/j.isci.2025.112751",
"journal": "iScience",
"year": 2025,
"authors": "Evans, M.; Grand, P.; Dupuis, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Optimal bandgap of a single-junction photovoltaic cell for the mobile Internet-of-Things",
"doi": "10.1016/j.isci.2024.111604",
"url": "https://doi.org/10.1016/j.isci.2024.111604",
"journal": "iScience",
"year": 2025,
"authors": "Jarosz, G.; Signerski, R.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "A photovoltaic-electrolysis system with high solar-to-hydrogen efficiency under practical current densities",
"doi": "10.1126/sciadv.ads0836",
"url": "https://doi.org/10.1126/sciadv.ads0836",
"journal": "Science Advances",
"year": 2025,
"authors": "Zhang, Q.; Shan, Y.; Pan, J.; Kumar, P.; Keevers, M.",
"abstract": "\n The photovoltaic-alkaline water (PV-AW) electrolysis system offers an appealing approach for large-scale green hydrogen generation. However, current PV-AW systems suffer from low solar-to-hydrogen (STH) conversion efficiencies (e.g., <20%) at practical current densities (e.g., >100 mA cm\n −2\n ), rendering the produced H\n 2\n not economical. Here, we designed and developed a highly efficient PV-AW system that mainly consists of a custo",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Ultrafast energy transfer beyond the Förster approximation in organic photovoltaic blends with non-fullerene acceptors",
"doi": "10.1126/sciadv.adr5973",
"url": "https://doi.org/10.1126/sciadv.adr5973",
"journal": "Science Advances",
"year": 2025,
"authors": "Ouyang, Y.; Wang, R.; Wang, X.; Xiao, M.; Zhang, C.",
"abstract": "Recent studies on organic photovoltaic (OPV) systems have highlighted the critical role of energy transfer in excited-state dynamics. This process has traditionally been explained through the model of long-range Förster resonance energy transfer (FRET). In this study, we demonstrate a donor-to-acceptor short-range energy transfer (SRET) mechanism in OPV blends with non-fullerene acceptors, extending beyond the Förster approximation. This SRET occurs as a two-step process mediated by interfacial ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "The role of offshore wind and solar PV resources in global low-carbon transition",
"doi": "10.1126/sciadv.adx5580",
"url": "https://doi.org/10.1126/sciadv.adx5580",
"journal": "Science Advances",
"year": 2025,
"authors": "Wen, Y.; Wu, J.; Lin, P.; Low, Y.",
"abstract": "\n With challenges such as land availability and regulatory constraints, offshore renewable energy sector is poised to play a pivotal role in the transition to a low-carbon future. Among offshore technologies, wind and solar photovoltaic (PV) have emerged as the most promising solutions. However, a global assessment of offshore resources, particularly solar PV, remains lacking. Hence, we identify suitable areas for offshore wind and solar PV development on the basis of economic",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Quantifying effects of solar power adoption on CO\n <sub>2</sub>\n emissions reduction",
"doi": "10.1126/sciadv.adq5660",
"url": "https://doi.org/10.1126/sciadv.adq5660",
"journal": "Science Advances",
"year": 2025,
"authors": "Biswas, A.; Qiu, M.; Braun, D.; Dominici, F.; Mork, D.",
"abstract": "\n We quantify the effect of solar power adoption in reducing carbon dioxide (CO\n 2\n ) emissions from the US electricity sector using 5 years of Energy Information Administration data, starting 1 July 2018. By tailoring a distributed lag statistical model, we estimate the immediate and time-lagged effects of increased solar generation on reducing CO\n 2\n emissions within a region. Our analysis highlights how solar adoption in one region affect",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Vectorized solar photovoltaic installation dataset across China in 2015 and 2020",
"doi": "10.1038/s41597-024-04356-z",
"url": "https://doi.org/10.1038/s41597-024-04356-z",
"journal": "Scientific Data",
"year": 2024,
"authors": "Liu, J.; Wang, J.; Li, L.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Regional dataset (China)",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "A Multi-Decadal Hourly Coincident Wind and Solar Power Production Dataset for the Contiguous United States",
"doi": "10.1038/s41597-024-03894-w",
"url": "https://doi.org/10.1038/s41597-024-03894-w",
"journal": "Scientific Data",
"year": 2024,
"authors": "Campbell, A.; Bracken, C.; Underwood, S.; Voisin, N.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Comprehensive Dataset on Electrical Load Profiles for Energy Community in Ireland",
"doi": "10.1038/s41597-024-03454-2",
"url": "https://doi.org/10.1038/s41597-024-03454-2",
"journal": "Scientific Data",
"year": 2024,
"authors": "Trivedi, R.; Bahloul, M.; Saif, A.; Patra, S.; Khadem, S.",
"abstract": "AbstractThis paper describes a comprehensive energy-related dataset, collected from residential electricity households within an energy community in Ireland, as part of StoreNet project. The data includes local weather parameters and per household power (W) and energy (Wh) components for various aspects such as active power consumption, PV generation, grid import and export, charging and discharging, and the state of charge of energy storage. Additionally, it provides weather data for the locati",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "AI & Data Science for Urban Energy Systems",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Combining photovoltaic elements",
"doi": "10.1038/s41560-024-01647-y",
"url": "https://doi.org/10.1038/s41560-024-01647-y",
"journal": "Nature Energy",
"year": 2024,
"authors": "Tregnago, G.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "A geographically disaggregated approach to integrate low-carbon technologies across local electricity networks",
"doi": "10.1038/s41560-024-01542-6",
"url": "https://doi.org/10.1038/s41560-024-01542-6",
"journal": "Nature Energy",
"year": 2024,
"authors": "Few, S.; Djapic, P.; Strbac, G.; Nelson, J.; Candelise, C.",
"abstract": "Abstract\n Meeting climate targets requires widespread deployment of low-carbon technologies such as distributed photovoltaics, heat pumps and electric vehicles. Without mitigating actions, changing power flows associated with these technologies would adversely impact some local networks. The extent of these impacts, and the optimal means of avoiding them, remains unclear. Here we use local-level data and network simulation to estimate variation in future network upgrade costs in",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Wind power and solar photovoltaics found to have higher energy returns than fossil fuels",
"doi": "10.1038/s41560-024-01520-y",
"url": "https://doi.org/10.1038/s41560-024-01520-y",
"journal": "Nature Energy",
"year": 2024,
"authors": "",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Large-scale green grabbing for wind and solar photovoltaic development in Brazil",
"doi": "10.1038/s41893-024-01346-2",
"url": "https://doi.org/10.1038/s41893-024-01346-2",
"journal": "Nature Sustainability",
"year": 2024,
"authors": "Klingler, M.; Ameli, N.; Rickman, J.; Schmidt, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Offsetting the greenhouse gas footprint of hydropower with floating solar photovoltaics",
"doi": "10.1038/s41893-024-01384-w",
"url": "https://doi.org/10.1038/s41893-024-01384-w",
"journal": "Nature Sustainability",
"year": 2024,
"authors": "Almeida, R.; Chowdhury, A.; Rodrigo, H.; Li, M.; Schmitt, R.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Accurate nowcasting of cloud cover at solar photovoltaic plants using geostationary satellite images",
"doi": "10.1038/s41467-023-44666-1",
"url": "https://doi.org/10.1038/s41467-023-44666-1",
"journal": "Nature Communications",
"year": 2024,
"authors": "Xia, P.; Zhang, L.; Min, M.; Li, J.; Wang, Y.",
"abstract": "Abstract\n Accurate nowcasting for cloud fraction is still intractable challenge for stable solar photovoltaic electricity generation. By combining continuous radiance images measured by geostationary satellite and an advanced recurrent neural network, we develop a nowcasting algorithm for predicting cloud fraction at the leading time of 0–4 h at photovoltaic plants. Based on this algorithm, a cyclically updated prediction system is also established and tested at five photovoltai",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Transparent integrated pyroelectric-photovoltaic structure for photo-thermo hybrid power generation",
"doi": "10.1038/s41467-024-47483-2",
"url": "https://doi.org/10.1038/s41467-024-47483-2",
"journal": "Nature Communications",
"year": 2024,
"authors": "Patel, M.; Park, H.; Bhatnagar, P.; Kumar, N.; Lee, J.",
"abstract": "AbstractThermal losses in photoelectric devices limit their energy conversion efficiency, and cyclic input of energy coupled with pyroelectricity can overcome this limit. Here, incorporating a pyroelectric absorber into a photovoltaic heterostructure device enables efficient electricity generation by leveraging spontaneous polarization based on pulsed light-induced thermal changes. The proposed pyroelectric-photovoltaic device outperforms traditional photovoltaic devices by 2.5 times due to the ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Giant intrinsic photovoltaic effect in one-dimensional van der Waals grain boundaries",
"doi": "10.1038/s41467-024-44792-4",
"url": "https://doi.org/10.1038/s41467-024-44792-4",
"journal": "Nature Communications",
"year": 2024,
"authors": "Zhou, Y.; Zhou, X.; Yu, X.; Liang, Z.; Zhao, X.",
"abstract": "AbstractThe photovoltaic effect lies at the heart of eco-friendly energy harvesting. However, the conversion efficiency of traditional photovoltaic effect utilizing the built-in electric effect in p-n junctions is restricted by the Shockley-Queisser limit. Alternatively, intrinsic/bulk photovoltaic effect (IPVE/BPVE), a second-order nonlinear optoelectronic effect arising from the broken inversion symmetry of crystalline structure, can overcome this theoretical limit. Here, we uncover giant and ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Quantifying benefits of renewable investments for German residential Prosumers in times of volatile energy markets",
"doi": "10.1038/s41467-024-51967-6",
"url": "https://doi.org/10.1038/s41467-024-51967-6",
"journal": "Nature Communications",
"year": 2024,
"authors": "van Ouwerkerk, J.; Celi Cortés, M.; Nsir, N.; Gong, J.; Figgener, J.",
"abstract": "Abstract\n \n The COVID-19 pandemic and the Russian invasion of Ukraine have led to unseen disruptions in the global energy markets since the end of 2021. Residential renewable investments like photovoltaic systems, battery home storage systems, and heat pumps are therefore gaining traction. However, the benefits of those technologies during the energy crisis and beyond have not been fully quantified yet. Therefore, in this study, we benchmark renewable investme",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Future hydrogen economies imply environmental trade-offs and a supply-demand mismatch",
"doi": "10.1038/s41467-024-51251-7",
"url": "https://doi.org/10.1038/s41467-024-51251-7",
"journal": "Nature Communications",
"year": 2024,
"authors": "Terlouw, T.; Rosa, L.; Bauer, C.; McKenna, R.",
"abstract": "AbstractHydrogen will play a key role in decarbonizing economies. Here, we quantify the costs and environmental impacts of possible large-scale hydrogen economies, using four prospective hydrogen demand scenarios for 2050 ranging from 111–614 megatonne H2 year−1. Our findings confirm that renewable (solar photovoltaic and wind) electrolytic hydrogen production generates at least 50–90% fewer greenhouse gas emissions than fossil-fuel-based counterparts without carbon capture and storage. However,",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Rooftop photovoltaic solar panels warm up and cool down cities",
"doi": "10.1038/s44284-024-00137-2",
"url": "https://doi.org/10.1038/s44284-024-00137-2",
"journal": "Nature Cities",
"year": 2024,
"authors": "Khan, A.; Anand, P.; Garshasbi, S.; Khatun, R.; Khorat, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "A quick comparison model on optimizing the efficiency of photovoltaic panels in collecting solar radiation",
"doi": "10.1038/s41598-024-69240-7",
"url": "https://doi.org/10.1038/s41598-024-69240-7",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Bao, Y.; Bao, H.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Numerical study on solar photovoltaic/thermal system with tesla valve",
"doi": "10.1038/s41598-024-61785-x",
"url": "https://doi.org/10.1038/s41598-024-61785-x",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Du, S.; Zou, J.; Zheng, X.; Ye, X.; Yang, H.",
"abstract": "AbstractIn recent years, photovoltaic/thermal (PV/T) systems have played a crucial role in reducing energy consumption and environmental degradation, nonetheless, the low energy conversion efficiency presents a considerable obstacle for PV/T systems. Therefore, improving heat conversion efficiency is essential to enhance energy efficiency. In this paper, the PV/T system with the Tesla valve is proposed to solve this problem. Firstly, the cooling effect is simulated and analyzed in the system wit",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Leveraging opposition-based learning for solar photovoltaic model parameter estimation with exponential distribution optimization algorithm",
"doi": "10.1038/s41598-023-50890-y",
"url": "https://doi.org/10.1038/s41598-023-50890-y",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Kullampalayam Murugaiyan, N.; Chandrasekaran, K.; Manoharan, P.; Derebew, B.",
"abstract": "AbstractGiven the multi-model and nonlinear characteristics of photovoltaic (PV) models, parameter extraction presents a challenging problem. This challenge is exacerbated by the propensity of conventional algorithms to get trapped in local optima due to the complex nature of the problem. Accurate parameter estimation, nonetheless, is crucial due to its significant impact on the PV system’s performance, influencing both current and energy production. While traditional methods have provided reaso",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "MPPT control of photovoltaic array based on improved marine predator algorithm under complex solar irradiance conditions",
"doi": "10.1038/s41598-024-70811-x",
"url": "https://doi.org/10.1038/s41598-024-70811-x",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Zhang, H.; Wang, X.; Zhang, J.; Ge, Y.; Wang, L.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Long-term path planning with optimal deployment of a charging station for monitoring photovoltaic solar farms",
"doi": "10.1038/s41598-024-68160-w",
"url": "https://doi.org/10.1038/s41598-024-68160-w",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Huang, Y.; Chen, Z.; Chu, J.; Wang, H.; Sun, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Enhanced Whale optimization algorithms for parameter identification of solar photovoltaic cell models: a comparative study",
"doi": "10.1038/s41598-024-67600-x",
"url": "https://doi.org/10.1038/s41598-024-67600-x",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Yang, S.; Xiong, G.; Fu, X.; Mirjalili, S.; Mohamed, A.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Achieving bifacial photovoltaic performance in PTB7-based organic solar cell by integrating transparent contact for emerging semi-transparent applications",
"doi": "10.1038/s41598-024-76366-1",
"url": "https://doi.org/10.1038/s41598-024-76366-1",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Çokduygulular, E.; Çetinkaya, Ç.; Emik, S.; Kınacı, B.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Optimization of building integrated energy scheduling using an improved genetic whale algorithm",
"doi": "10.1038/s41598-024-52995-4",
"url": "https://doi.org/10.1038/s41598-024-52995-4",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Wei, L.; An, G.",
"abstract": "AbstractRenewable energy generation has become the general trend with increasing environmental problems. However, the instability of renewable energy generation and the diversification of user demand are highlighted and the optimization of energy scheduling has become the key to solve the problem. This study introduces an energy scheduling optimization model tailored for building integrated energy systems, encompassing elements like gas turbines, wind and solar modules, ground source heat pumps,",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Comparative analysis of direct coupling and MPPT control in standalone PV systems for solar energy optimization to meet sustainable building energy demands",
"doi": "10.1038/s41598-024-72606-6",
"url": "https://doi.org/10.1038/s41598-024-72606-6",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Nataraj, C.; Karthikeyan, G.; Bharathi, G.; Duraikannan, S.",
"abstract": "Abstract\n Solar energy, a prominent renewable source, has reached an installed capacity of 71.78 GW in India. This research explored the load demands of the computer center at an engineering college in Tanjore, Tamil Nadu, India. The computer center at the engineering college has an annual energy requirement of 260,552 kWh/Year. Consequently, the research focused on the planning and implementation of a standalone photovoltaic (SAPV) system, assessing it against the institution's",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "A rule-based energy management system for hybrid renewable energy sources with battery bank optimized by genetic algorithm optimization",
"doi": "10.1038/s41598-024-54333-0",
"url": "https://doi.org/10.1038/s41598-024-54333-0",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Jamal, S.; Pasupuleti, J.; Ekanayake, J.",
"abstract": "AbstractA Nanogrid (NG) model is described as a power distribution system that integrates Hybrid Renewable Energy Sources (HRESs) and Energy Storage Systems (ESSs) into the primary grid. However, this process is affected by several factors, like load variability, market pricing, and the intermittent nature of Wind Turbines (WTs) and Photovoltaic (PV) systems. Hence, other researchers in the past have used a few optimization-based processes to improve the development of Energy Management Systems ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Research and analysis of energy consumption and energy saving in buildings based on photovoltaic photothermal integration",
"doi": "10.1038/s41598-024-51209-1",
"url": "https://doi.org/10.1038/s41598-024-51209-1",
"journal": "Scientific Reports",
"year": 2024,
"authors": "Cui, Y.; Zhang, X.",
"abstract": "AbstractIn order to reduce the energy consumption of buildings, an air source heat pump assisted rooftop photovoltaic-thermal integration system is designed. The installation area of photovoltaic modules and collectors will not only affect the power side, but also affect the thermal side. Therefore, the basic architecture of the photovoltaic photothermal integration system is first established, and then the improved whale algorithm is used to optimize the photovoltaic photothermal integration sy",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Hybrid solar energy device for simultaneous electric power generation and molecular solar thermal energy storage",
"doi": "10.1016/j.joule.2024.06.012",
"url": "https://doi.org/10.1016/j.joule.2024.06.012",
"journal": "Joule",
"year": 2024,
"authors": "Wang, Z.; Hölzel, H.; Fernandez, L.; Aslam, A.; Baronas, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Wavelength-selective solar photovoltaic systems to enhance spectral sharing of sunlight in agrivoltaics",
"doi": "10.1016/j.joule.2024.08.006",
"url": "https://doi.org/10.1016/j.joule.2024.08.006",
"journal": "Joule",
"year": 2024,
"authors": "Ma Lu, S.; Amaducci, S.; Gorjian, S.; Haworth, M.; Hägglund, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Photovoltaic-sorbent system for water and electricity generation",
"doi": "10.1016/j.joule.2024.01.006",
"url": "https://doi.org/10.1016/j.joule.2024.01.006",
"journal": "Joule",
"year": 2024,
"authors": "Shao, Z.; Poredoš, P.; Wang, R.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Cost-efficient recycling of organic photovoltaic devices",
"doi": "10.1016/j.joule.2024.06.006",
"url": "https://doi.org/10.1016/j.joule.2024.06.006",
"journal": "Joule",
"year": 2024,
"authors": "Sun, R.; Yuan, X.; Yang, X.; Wu, Y.; Shao, Y.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Design of low-cost non-fused ultranarrow-band-gap acceptors for versatile photovoltaic applications",
"doi": "10.1016/j.joule.2024.05.011",
"url": "https://doi.org/10.1016/j.joule.2024.05.011",
"journal": "Joule",
"year": 2024,
"authors": "Ma, L.; Zhang, S.; Zhu, J.; Chen, Z.; Zhang, T.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Synergizing radiative cooling and solar power generation",
"doi": "10.1016/j.joule.2024.04.011",
"url": "https://doi.org/10.1016/j.joule.2024.04.011",
"journal": "Joule",
"year": 2024,
"authors": "Gan, Q.; Zhou, L.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Design changes for improved circularity of silicon solar modules",
"doi": "10.1016/j.oneear.2024.01.020",
"url": "https://doi.org/10.1016/j.oneear.2024.01.020",
"journal": "One Earth",
"year": 2024,
"authors": "Tao, M.; Druffel, T.; Farag, A.; McLoughlin, K.; Leu, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Quantifying the impact of wildfire smoke on solar photovoltaic generation in Australia",
"doi": "10.1016/j.isci.2023.108611",
"url": "https://doi.org/10.1016/j.isci.2023.108611",
"journal": "iScience",
"year": 2024,
"authors": "Ford, E.; Peters, I.; Hoex, B.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Potential and climate effects of large-scale rooftop photovoltaic energy deployment in northwest China’s capital cities",
"doi": "10.1016/j.isci.2024.110871",
"url": "https://doi.org/10.1016/j.isci.2024.110871",
"journal": "iScience",
"year": 2024,
"authors": "Jia, D.; Yang, L.; Gao, X.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Regional dataset (China)",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "On the optimization of the interconnection of photovoltaic modules integrated in vehicles",
"doi": "10.1016/j.isci.2024.110089",
"url": "https://doi.org/10.1016/j.isci.2024.110089",
"journal": "iScience",
"year": 2024,
"authors": "Macías, J.; Herrero, R.; San José, L.; Núñez, R.; Antón, I.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Comprehensive overview of heat management methods for enhancing photovoltaic thermal systems",
"doi": "10.1016/j.isci.2024.110950",
"url": "https://doi.org/10.1016/j.isci.2024.110950",
"journal": "iScience",
"year": 2024,
"authors": "Rahman, M.; Gupta, S.; Akylbekov, N.; Zhapparbergenov, R.; Hasnain, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Wind and solar energy in Small Island Developing States for mitigating global climate change",
"doi": "10.1016/j.isci.2024.111062",
"url": "https://doi.org/10.1016/j.isci.2024.111062",
"journal": "iScience",
"year": 2024,
"authors": "Havea, P.; Su, B.; Liu, C.; Kundzewicz, Z.; Wang, Y.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Chemically tuned intermediate band states in atomically thin Cu\n <i>\n <sub>x</sub>\n </i>\n GeSe/SnS quantum material for photovoltaic applications",
"doi": "10.1126/sciadv.adl6752",
"url": "https://doi.org/10.1126/sciadv.adl6752",
"journal": "Science Advances",
"year": 2024,
"authors": "Kastuar, S.; Ekuma, C.",
"abstract": "A new generation of quantum material derived from intercalating zerovalent atoms such as Cu into the intrinsic van der Waals gap at the interface of atomically thin two-dimensional GeSe/SnS heterostructure is designed, and their optoelectronic features are explored for next-generation photovoltaic applications. Advanced ab initio modeling reveals that many-body effects induce intermediate band (IB) states, with subband gaps (~0.78 and 1.26 electron volts) ideal for next-generation solar devices,",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Potential climate predictability of renewable energy supply and demand for Texas given the ENSO hidden state",
"doi": "10.1126/sciadv.ado3517",
"url": "https://doi.org/10.1126/sciadv.ado3517",
"journal": "Science Advances",
"year": 2024,
"authors": "Zhang, M.; Yan, L.; Amonkar, Y.; Nayak, A.; Lall, U.",
"abstract": "Climate variability influences renewable electricity supply and demand and hence system reliability. Using the hidden states of the sea surface temperature of tropical Pacific Ocean that reflect El Niño–Southern Oscillation (ENSO) dynamics that is objectively identified by a nonhomogeneous hidden Markov model, we provide a first example of the potential predictability of monthly wind and solar energy and heating and cooling energy demand for 1 to 6 months ahead for Texas, United States, a region",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "A crowdsourced dataset of aerial images with annotated solar photovoltaic arrays and installation metadata",
"doi": "10.1038/s41597-023-01951-4",
"url": "https://doi.org/10.1038/s41597-023-01951-4",
"journal": "Scientific Data",
"year": 2023,
"authors": "Kasmi, G.; Saint-Drenan, Y.; Trebosc, D.; Jolivet, R.; Leloux, J.",
"abstract": "AbstractPhotovoltaic (PV) energy generation plays a crucial role in the energy transition. Small-scale, rooftop PV installations are deployed at an unprecedented pace, and their safe integration into the grid requires up-to-date, high-quality information. Overhead imagery is increasingly being used to improve the knowledge of rooftop PV installations with machine learning models capable of automatically mapping these installations. However, these models cannot be reliably transferred from one re",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "A solar panel dataset of very high resolution satellite imagery to support the Sustainable Development Goals",
"doi": "10.1038/s41597-023-02539-8",
"url": "https://doi.org/10.1038/s41597-023-02539-8",
"journal": "Scientific Data",
"year": 2023,
"authors": "Clark, C.; Pacifici, F.",
"abstract": "AbstractEffectively supporting the United Nations’ Sustainable Development Goals requires reliable, substantial, and timely data. For solar panel installation monitoring, where accurate reporting is crucial in tracking green energy production and sustainable energy access, official and regulated documentation remains inconsistent. Reports of solar panel installations have been supplemented with object detection models developed and used on openly available aerial imagery, a type of imagery colle",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Georectified polygon database of ground-mounted large-scale solar photovoltaic sites in the United States",
"doi": "10.1038/s41597-023-02644-8",
"url": "https://doi.org/10.1038/s41597-023-02644-8",
"journal": "Scientific Data",
"year": 2023,
"authors": "Fujita, K.; Ancona, Z.; Kramer, L.; Straka, M.; Gautreau, T.",
"abstract": "AbstractOver 4,400 large-scale solar photovoltaic (LSPV) facilities operate in the United States as of December 2021, representing more than 60 gigawatts of electric energy capacity. Of these, over 3,900 are ground-mounted LSPV facilities with capacities of 1 megawatt direct current (MWdc) or more. Ground-mounted LSPV installations continue increasing, with more than 400 projects appearing online in 2021 alone; however, a comprehensive, publicly available georectified dataset including spatial f",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Climate change impacts on planned supply–demand match in global wind and solar energy systems",
"doi": "10.1038/s41560-023-01304-w",
"url": "https://doi.org/10.1038/s41560-023-01304-w",
"journal": "Nature Energy",
"year": 2023,
"authors": "Liu, L.; He, G.; Wu, M.; Liu, G.; Zhang, H.",
"abstract": "AbstractClimate change modulates both energy demand and wind and solar energy supply but a globally synthetic analysis of supply–demand match (SDM) is lacking. Here, we use 12 state-of-the-art climate models to assess climate change impacts on SDM, quantified by the fraction of demand met by local wind or solar supply. For energy systems with varying dependence on wind or solar supply, up to 32% or 44% of non-Antarctic land areas, respectively, are projected to experience robust SDM reductions b",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Renewable Energy Resource Mapping",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Revised estimates of racial and ethnic disparities in rooftop photovoltaic deployment in the United States",
"doi": "10.1038/s41893-023-01134-4",
"url": "https://doi.org/10.1038/s41893-023-01134-4",
"journal": "Nature Sustainability",
"year": 2023,
"authors": "Dokshin, F.; Thiede, B.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Reply to: Revised estimates of racial and ethnic disparities in rooftop photovoltaic deployment in the United States",
"doi": "10.1038/s41893-023-01135-3",
"url": "https://doi.org/10.1038/s41893-023-01135-3",
"journal": "Nature Sustainability",
"year": 2023,
"authors": "Sunter, D.; Castellanos, S.; Kammen, D.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Using solar farms as a platform for the ecological restoration of arid soils",
"doi": "10.1038/s41893-023-01108-6",
"url": "https://doi.org/10.1038/s41893-023-01108-6",
"journal": "Nature Sustainability",
"year": 2023,
"authors": "",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Land Use (土地利用)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Improved photovoltaic performance and robustness of all-polymer solar cells enabled by a polyfullerene guest acceptor",
"doi": "10.1038/s41467-023-37738-9",
"url": "https://doi.org/10.1038/s41467-023-37738-9",
"journal": "Nature Communications",
"year": 2023,
"authors": "Yu, H.; Wang, Y.; Zou, X.; Yin, J.; Shi, X.",
"abstract": "AbstractFullerene acceptors typically possess excellent electron-transporting properties and can work as guest components in ternary organic solar cells to enhance the charge extraction and efficiencies. However, conventional fullerene small molecules typically suffer from undesirable segregation and dimerization, thus limiting their applications in organic solar cells. Herein we report the use of a poly(fullerene-alt-xylene) acceptor (PFBO-C12) as guest component enables a significant efficienc",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "High-efficiency bio-inspired hybrid multi-generation photovoltaic leaf",
"doi": "10.1038/s41467-023-38984-7",
"url": "https://doi.org/10.1038/s41467-023-38984-7",
"journal": "Nature Communications",
"year": 2023,
"authors": "Huang, G.; Xu, J.; Markides, C.",
"abstract": "AbstractMost solar energy incident (>70%) upon commercial photovoltaic panels is dissipated as heat, increasing their operating temperature, and leading to significant deterioration in electrical performance. The solar utilisation efficiency of commercial photovoltaic panels is typically below 25%. Here, we demonstrate a hybrid multi-generation photovoltaic leaf concept that employs a biomimetic transpiration structure made of eco-friendly, low-cost and widely-available materials for effectiv",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Electrical performance of a fully reconfigurable series-parallel photovoltaic module",
"doi": "10.1038/s41467-023-43927-3",
"url": "https://doi.org/10.1038/s41467-023-43927-3",
"journal": "Nature Communications",
"year": 2023,
"authors": "Calcabrini, A.; Muttillo, M.; Zeman, M.; Manganiello, P.; Isabella, O.",
"abstract": "AbstractReconfigurable photovoltaic modules are a promising approach to improve the energy yield of partially shaded systems. So far, the feasibility of this concept has been evaluated through simulations or simplified experiments. In this work, we analyse the outdoor performance of a full-scale prototype of a series-parallel photovoltaic module with six reconfigurable blocks. Over a 4-month-long period, its performance was compared to a reference photovoltaic module with static interconnections",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Prolonged hydrogen production by engineered green algae photovoltaic power stations",
"doi": "10.1038/s41467-023-42529-3",
"url": "https://doi.org/10.1038/s41467-023-42529-3",
"journal": "Nature Communications",
"year": 2023,
"authors": "Gwon, H.; Park, G.; Yun, J.; Ryu, W.; Ahn, H.",
"abstract": "AbstractInterest in securing energy production channels from renewable sources is higher than ever due to the daily observation of the impacts of climate change. A key renewable energy harvesting strategy achieving carbon neutral cycles is artificial photosynthesis. Solar-to-fuel routes thus far relied on elaborately crafted semiconductors, undermining the cost-efficiency of the system. Furthermore, fuels produced required separation prior to utilization. As an artificial photosynthesis design, ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Precise synthesis and photovoltaic properties of giant molecule acceptors",
"doi": "10.1038/s41467-023-43846-3",
"url": "https://doi.org/10.1038/s41467-023-43846-3",
"journal": "Nature Communications",
"year": 2023,
"authors": "Zhuo, H.; Li, X.; Zhang, J.; Zhu, C.; He, H.",
"abstract": "AbstractSeries of giant molecule acceptors DY, TY and QY with two, three and four small molecule acceptor subunits are synthesized by a stepwise synthetic method and used for systematically investigating the influence of subunit numbers on the structure-property relationship from small molecule acceptor YDT to giant molecule acceptors and to polymerized small molecule acceptor PY-IT. Among these acceptors-based devices, the TY-based film shows proper donor/acceptor phase separation, higher charg",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Global land and water limits to electrolytic hydrogen production using wind and solar resources",
"doi": "10.1038/s41467-023-41107-x",
"url": "https://doi.org/10.1038/s41467-023-41107-x",
"journal": "Nature Communications",
"year": 2023,
"authors": "Tonelli, D.; Rosa, L.; Gabrielli, P.; Caldeira, K.; Parente, A.",
"abstract": "Abstract\n Proposals for achieving net-zero emissions by 2050 include scaling-up electrolytic hydrogen production, however, this poses technical, economic, and environmental challenges. One such challenge is for policymakers to ensure a sustainable future for the environment including freshwater and land resources while facilitating low-carbon hydrogen production using renewable wind and solar energy. We establish a country-by-country reference scenario for hydrogen demand in 205",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Photovoltaic fields largely outperform afforestation efficiency in global climate change mitigation strategies",
"doi": "10.1093/pnasnexus/pgad352",
"url": "https://doi.org/10.1093/pnasnexus/pgad352",
"journal": "npj Clean Energy",
"year": 2023,
"authors": "Stern, R.; Muller, J.; Rotenberg, E.; Amer, M.; Segev, L.",
"abstract": "Abstract\n Suppression of carbon emissions through photovoltaic (PV) energy and carbon sequestration through afforestation provides complementary climate change mitigation (CCM) strategies. However, a quantification of the “break-even time” (BET) required to offset the warming impacts of the reduced surface reflectivity of incoming solar radiation (albedo effect) is needed, though seldom accounted for in CCM strategies. Here, we quantify the CCM potential of PV fields and afforestat",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Toward carbon neutrality: Projecting a desert-based photovoltaic power network circumnavigating the globe",
"doi": "10.1093/pnasnexus/pgad097",
"url": "https://doi.org/10.1093/pnasnexus/pgad097",
"journal": "npj Clean Energy",
"year": 2023,
"authors": "Zhou, Y.; Liu, J.; Ge, W.; He, C.; Ma, J.",
"abstract": "Abstract\n Carbon, the human's most reliable fuel type in the past, must be neutralized in this century toward the Paris Agreement temperature goals. Solar power is widely believed a key fossil fuel substitute but suffers from the needs of large space occupation and huge energy storage for peak shaving. Here, we propose a solar network circumnavigating the globe to connecting large-scale desert photovoltaics among continents. By evaluating the generation potential of desert photovol",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "An all ambient, room temperature–processed solar cell from a bare silicon wafer",
"doi": "10.1093/pnasnexus/pgad067",
"url": "https://doi.org/10.1093/pnasnexus/pgad067",
"journal": "npj Clean Energy",
"year": 2023,
"authors": "Okamoto, K.; Fujita, Y.; Nishigaya, K.; Tanabe, K.",
"abstract": "Abstract\n Solar cells are a promising optoelectronic device for the simultaneous solution of energy resource and environmental problems. However, their high cost and slow, laborious production process so far severely hinder a sufficient widespread of clean, renewable photovoltaic energy as a major alternative electricity generator. This undesirable situation is mainly attributed to the fact that photovoltaic devices have been manufactured through a series of vacuum and high-tempera",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Hybrid nanofluid flow within cooling tube of photovoltaic-thermoelectric solar unit",
"doi": "10.1038/s41598-023-35428-6",
"url": "https://doi.org/10.1038/s41598-023-35428-6",
"journal": "Scientific Reports",
"year": 2023,
"authors": "Khalili, Z.; Sheikholeslami, M.; Momayez, L.",
"abstract": "AbstractIn this work, the thermoelectric generator (TEG) layer has been combined with conventional layers of photovoltaic-thermal (PVT) modules to use the waste heat and increase the efficiency. To reduce the cell temperature, there exists a cooling duct in the bottom of the PVT-TEG unit. Type of fluid within the duct and structure of duct can change the performance of the system. So, hybrid nanofluid (mixture of Fe3O4 and MWCNT with water) has been replaced instead of pure water and three vario",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "On the local warming potential of urban rooftop photovoltaic solar panels in cities",
"doi": "10.1038/s41598-023-40280-9",
"url": "https://doi.org/10.1038/s41598-023-40280-9",
"journal": "Scientific Reports",
"year": 2023,
"authors": "Khan, A.; Santamouris, M.",
"abstract": "AbstractUnderstanding and evaluating the implications of photovoltaic solar panels (PVSPs) deployment on urban settings, as well as the pessimistic effects of densely populated areas on PVSPs efficiency, is becoming incredibly valuable. Thus, the deployment of low-efficiency, low-cost, and widely available PVSPs may diminish total solar reflectance, raising the risks of PVSPs-based urban heating, particularly during the summertime heatwaves. This study employs and assesses physical parameterizat",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Author Correction: Hybrid nanofluid flow within cooling tube of photovoltaic-thermoelectric solar unit",
"doi": "10.1038/s41598-023-38125-6",
"url": "https://doi.org/10.1038/s41598-023-38125-6",
"journal": "Scientific Reports",
"year": 2023,
"authors": "Khalili, Z.; Sheikholeslami, M.; Momayez, L.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Total equivalent energy efficiency metric for building-integrated photovoltaic windows",
"doi": "10.1016/j.joule.2023.11.010",
"url": "https://doi.org/10.1016/j.joule.2023.11.010",
"journal": "Joule",
"year": 2023,
"authors": "Bing, J.; McKenzie, D.; Stals, T.; Kypriotis, M.; Zheng, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "A general illumination method to predict bifacial photovoltaic system performance",
"doi": "10.1016/j.joule.2022.12.005",
"url": "https://doi.org/10.1016/j.joule.2022.12.005",
"journal": "Joule",
"year": 2023,
"authors": "Tonita, E.; Valdivia, C.; Russell, A.; Martinez-Szewczyk, M.; Bertoni, M.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "The carbon intensity of integrated photovoltaics",
"doi": "10.1016/j.joule.2023.09.010",
"url": "https://doi.org/10.1016/j.joule.2023.09.010",
"journal": "Joule",
"year": 2023,
"authors": "Virtuani, A.; Borja Block, A.; Wyrsch, N.; Ballif, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Resource potential mapping of bifacial photovoltaic systems in India",
"doi": "10.1016/j.isci.2023.108017",
"url": "https://doi.org/10.1016/j.isci.2023.108017",
"journal": "iScience",
"year": 2023,
"authors": "Johnson, J.; Manikandan, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "India’s photovoltaic potential amidst air pollution and land constraints",
"doi": "10.1016/j.isci.2023.107856",
"url": "https://doi.org/10.1016/j.isci.2023.107856",
"journal": "iScience",
"year": 2023,
"authors": "Ghosh, S.; Kumar, A.; Ganguly, D.; Dey, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Techno-economic assessment of implementing photovoltaic water villas in Maldives",
"doi": "10.1016/j.isci.2023.106658",
"url": "https://doi.org/10.1016/j.isci.2023.106658",
"journal": "iScience",
"year": 2023,
"authors": "Qi, L.; Wang, Y.; Song, J.; Yin, C.; Yan, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Small area high voltage photovoltaic module for high tolerance to partial shading",
"doi": "10.1016/j.isci.2023.106745",
"url": "https://doi.org/10.1016/j.isci.2023.106745",
"journal": "iScience",
"year": 2023,
"authors": "Fauzan, L.; Yun, M.; Sim, Y.; Lee, D.; Cha, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Solar-powered simultaneous highly efficient seawater desalination and highly specific target extraction with smart DNA hydrogels",
"doi": "10.1126/sciadv.adj1677",
"url": "https://doi.org/10.1126/sciadv.adj1677",
"journal": "Science Advances",
"year": 2023,
"authors": "Liang, H.; Mu, Y.; Yin, M.; He, P.; Guo, W.",
"abstract": "Obtaining freshwater and important minerals from seawater with solar power facilitates the sustainable development of human society. Hydrogels have demonstrated great solar-powered water evaporation potential, but highly efficient and specific target extraction remains to be expanded. Here, we report the simultaneous highly efficient seawater desalination and specific extraction of uranium with smart DNA hydrogels. The DNA hydrogel greatly promoted the evaporation of water, with the water evapor",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "An all-Africa dataset of energy model “supply regions” for solar photovoltaic and wind power",
"doi": "10.1038/s41597-022-01786-5",
"url": "https://doi.org/10.1038/s41597-022-01786-5",
"journal": "Scientific Data",
"year": 2022,
"authors": "Sterl, S.; Hussain, B.; Miketa, A.; Li, Y.; Merven, B.",
"abstract": "AbstractWith solar and wind power generation reaching unprecedented growth rates globally, much research effort has recently gone into a comprehensive mapping of the worldwide potential of these variable renewable electricity (VRE) sources. From a perspective of energy systems analysis, the locations with the strongest resources may not necessarily be the best candidates for investment in new power plants, since the distance from existing grid and road infrastructures and the temporal variabilit",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "An Artificial Intelligence Dataset for Solar Energy Locations in India",
"doi": "10.1038/s41597-022-01499-9",
"url": "https://doi.org/10.1038/s41597-022-01499-9",
"journal": "Scientific Data",
"year": 2022,
"authors": "Ortiz, A.; Negandhi, D.; Mysorekar, S.; Nagaraju, S.; Kiesecker, J.",
"abstract": "AbstractRapid development of renewable energy sources, particularly solar photovoltaics (PV), is critical to mitigate climate change. As a result, India has set ambitious goals to install 500 gigawatts of solar energy capacity by 2030. Given the large footprint projected to meet renewables energy targets, the potential for land use conflicts over environmental values is high. To expedite development of solar energy, land use planners will need access to up-to-date and accurate geo-spatial inform",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Land Use (土地利用)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Outdoor performance evaluation of a 2D materials-based perovskite solar farm",
"doi": "10.1038/s41560-022-01037-2",
"url": "https://doi.org/10.1038/s41560-022-01037-2",
"journal": "Nature Energy",
"year": 2022,
"authors": "",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Harnessing infrared solar energy with plasmonic energy upconversion",
"doi": "10.1038/s41893-022-00975-9",
"url": "https://doi.org/10.1038/s41893-022-00975-9",
"journal": "Nature Sustainability",
"year": 2022,
"authors": "Lian, Z.; Kobayashi, Y.; Vequizo, J.; Ranasinghe, C.; Yamakata, A.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Publisher Correction: Harnessing infrared solar energy with plasmonic energy upconversion",
"doi": "10.1038/s41893-022-01015-2",
"url": "https://doi.org/10.1038/s41893-022-01015-2",
"journal": "Nature Sustainability",
"year": 2022,
"authors": "Lian, Z.; Kobayashi, Y.; Vequizo, J.; Ranasinghe, C.; Yamakata, A.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Solar power challenges",
"doi": "10.1038/s41893-021-00845-w",
"url": "https://doi.org/10.1038/s41893-021-00845-w",
"journal": "Nature Sustainability",
"year": 2022,
"authors": "Laing, T.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "The aluminium demand risk of terawatt photovoltaics for net zero emissions by 2050",
"doi": "10.1038/s41893-021-00838-9",
"url": "https://doi.org/10.1038/s41893-021-00838-9",
"journal": "Nature Sustainability",
"year": 2022,
"authors": "Lennon, A.; Lunardi, M.; Hallam, B.; Dias, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Giant bulk photovoltaic effect driven by the wall-to-wall charge shift in WS2 nanotubes",
"doi": "10.1038/s41467-022-31018-8",
"url": "https://doi.org/10.1038/s41467-022-31018-8",
"journal": "Nature Communications",
"year": 2022,
"authors": "Kim, B.; Park, N.; Kim, J.",
"abstract": "AbstractThe intrinsic light–matter characteristics of transition-metal dichalcogenides have not only been of great scientific interest but have also provided novel opportunities for the development of advanced optoelectronic devices. Among the family of transition-metal dichalcogenide structures, the one-dimensional nanotube is particularly attractive because it produces a spontaneous photocurrent that is prohibited in its higher-dimensional counterparts. Here, we show that WS2 nanotubes exhibit",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Coupling aqueous zinc batteries and perovskite solar cells for simultaneous energy harvest, conversion and storage",
"doi": "10.1038/s41467-021-27791-7",
"url": "https://doi.org/10.1038/s41467-021-27791-7",
"journal": "Nature Communications",
"year": 2022,
"authors": "Chen, P.; Li, T.; Yang, Y.; Li, G.; Gao, X.",
"abstract": "AbstractSimultaneously harvesting, converting and storing solar energy in a single device represents an ideal technological approach for the next generation of power sources. Herein, we propose a device consisting of an integrated carbon-based perovskite solar cell module capable of harvesting solar energy (and converting it into electricity) and a rechargeable aqueous zinc metal cell. The electrochemical energy storage cell utilizes heterostructural Co2P-CoP-NiCoO2 nanometric arrays and zinc me",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Feasibility of hybrid in-stream generator–photovoltaic systems for Amazonian off-grid communities",
"doi": "10.1093/pnasnexus/pgac077",
"url": "https://doi.org/10.1093/pnasnexus/pgac077",
"journal": "npj Clean Energy",
"year": 2022,
"authors": "Brown, E.; Johansen, I.; Bortoleto, A.; Pokhrel, Y.; Chaudhari, S.",
"abstract": "Abstract\n While there have been efforts to supply off-grid energy in the Amazon, these attempts have focused on low upfront costs and deployment rates. These “get-energy-quick” methods have almost solely adopted diesel generators, ignoring the environmental and social risks associated with the known noise and pollution of combustion engines. Alternatively, it is recommended, herein, to supply off-grid needs with renewable, distributed microgrids comprised of photovoltaics (PV) and ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Exploring the operational potential of the forest-photovoltaic utilizing the simulated solar tree",
"doi": "10.1038/s41598-022-17102-5",
"url": "https://doi.org/10.1038/s41598-022-17102-5",
"journal": "Scientific Reports",
"year": 2022,
"authors": "Um, D.",
"abstract": "AbstractThe aim of this study was to explore the operational potential of forest-photovoltaic by simulating solar tree installation. The forest-photovoltaic concept is to maintain carbon absorption activities in the lower part while acquiring solar energy by installing a photovoltaic structure on the upper part of forest land. This study was conducted by simulating solar tree installation using Google Earth satellite imagery in a mountainous area where an agrophotovoltaic system was already inst",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Diverse cloud and aerosol impacts on solar photovoltaic potential in southern China and northern India",
"doi": "10.1038/s41598-022-24208-3",
"url": "https://doi.org/10.1038/s41598-022-24208-3",
"journal": "Scientific Reports",
"year": 2022,
"authors": "Yang, J.; Yi, B.; Wang, S.; Liu, Y.; Li, Y.",
"abstract": "AbstractCloud and aerosol are two important modulators that influence the solar radiation reaching the earth’s surface. It is intriguing to find diverse impacts of clouds and aerosols over Southern China (SC) and Northern India (NI) which result in remarkable differences in the plane-of-array irradiance (POAI) that signifies the maximum available solar photovoltaic potential by combining the latest satellite retrieval results and modeling tools. By separating the impacts of cloud and aerosol on ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Regional dataset (China)",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Solar energy storage as salt for cooling?",
"doi": "10.1016/j.joule.2022.02.012",
"url": "https://doi.org/10.1016/j.joule.2022.02.012",
"journal": "Joule",
"year": 2022,
"authors": "Swaminathan, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Nexus of solar and thermal photovoltaic technology could help solve the energy storage problem",
"doi": "10.1016/j.joule.2022.05.015",
"url": "https://doi.org/10.1016/j.joule.2022.05.015",
"journal": "Joule",
"year": 2022,
"authors": "Lenert, A.; Forrest, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Multilevel peel-off patterning of a prototype semitransparent organic photovoltaic module",
"doi": "10.1016/j.joule.2022.06.015",
"url": "https://doi.org/10.1016/j.joule.2022.06.015",
"journal": "Joule",
"year": 2022,
"authors": "Huang, X.; Fan, D.; Li, Y.; Forrest, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Beaming power: Photovoltaic laser power converters for power-by-light",
"doi": "10.1016/j.joule.2021.11.014",
"url": "https://doi.org/10.1016/j.joule.2021.11.014",
"journal": "Joule",
"year": 2022,
"authors": "Algora, C.; García, I.; Delgado, M.; Peña, R.; Vázquez, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Perovskite solar cells for building integrated photovoltaics—glazing applications",
"doi": "10.1016/j.joule.2022.06.003",
"url": "https://doi.org/10.1016/j.joule.2022.06.003",
"journal": "Joule",
"year": 2022,
"authors": "Bing, J.; Caro, L.; Talathi, H.; Chang, N.; Mckenzie, D.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Photovoltaic windows cut energy use and CO2 emissions by 40% in highly glazed buildings",
"doi": "10.1016/j.oneear.2022.10.014",
"url": "https://doi.org/10.1016/j.oneear.2022.10.014",
"journal": "One Earth",
"year": 2022,
"authors": "Wheeler, V.; Kim, J.; Daligault, T.; Rosales, B.; Engtrakul, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Into a cooler future with electricity generated from solar photovoltaic",
"doi": "10.1016/j.isci.2022.104208",
"url": "https://doi.org/10.1016/j.isci.2022.104208",
"journal": "iScience",
"year": 2022,
"authors": "Kan, X.; Hedenus, F.; Reichenberg, L.; Hohmeyer, O.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Opportunity of rooftop solar photovoltaic as a cost-effective and environment-friendly power source in megacities",
"doi": "10.1016/j.isci.2022.104890",
"url": "https://doi.org/10.1016/j.isci.2022.104890",
"journal": "iScience",
"year": 2022,
"authors": "Shi, M.; Lu, X.; Jiang, H.; Mu, Q.; Chen, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Construction and performance analysis of a solar thermophotovoltaic system targeting on the efficient utilization of AM0 space solar radiation",
"doi": "10.1016/j.isci.2022.105373",
"url": "https://doi.org/10.1016/j.isci.2022.105373",
"journal": "iScience",
"year": 2022,
"authors": "Chen, B.; Shan, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "The role of innovation for economy and sustainability of photovoltaic modules",
"doi": "10.1016/j.isci.2022.105208",
"url": "https://doi.org/10.1016/j.isci.2022.105208",
"journal": "iScience",
"year": 2022,
"authors": "Peters, I.; Hauch, J.; Brabec, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Printable high-efficiency organic ionic photovoltaic materials discovered by high-throughput first-principle calculations",
"doi": "10.1016/j.isci.2022.105639",
"url": "https://doi.org/10.1016/j.isci.2022.105639",
"journal": "iScience",
"year": 2022,
"authors": "Huang, P.; Yang, J.; Han, D.; Lu, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Accelerating the simulation of annual bifacial illumination of real photovoltaic systems with ray tracing",
"doi": "10.1016/j.isci.2021.103698",
"url": "https://doi.org/10.1016/j.isci.2021.103698",
"journal": "iScience",
"year": 2022,
"authors": "Ernst, M.; Conechado, G.; Asselineau, C.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Hybrid thermionic-photovoltaic converter with graphene-on-semiconductor heterojunction anode for efficient electricity generation",
"doi": "10.1016/j.isci.2022.105051",
"url": "https://doi.org/10.1016/j.isci.2022.105051",
"journal": "iScience",
"year": 2022,
"authors": "Qiu, H.; Lin, S.; Xu, H.; Hao, G.; Xiao, G.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Environmental and technical impacts of floating photovoltaic plants as an emerging clean energy technology",
"doi": "10.1016/j.isci.2022.105253",
"url": "https://doi.org/10.1016/j.isci.2022.105253",
"journal": "iScience",
"year": 2022,
"authors": "Pouran, H.; Padilha Campos Lopes, M.; Nogueira, T.; Alves Castelo Branco, D.; Sheng, Y.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "High-resolution electricity generation model demonstrates suitability of high-altitude floating solar power",
"doi": "10.1016/j.isci.2022.104394",
"url": "https://doi.org/10.1016/j.isci.2022.104394",
"journal": "iScience",
"year": 2022,
"authors": "Eyring, N.; Kittner, N.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "High-resolution imagery/data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Electricity systems in the limit of free solar photovoltaics and continent-scale transmission",
"doi": "10.1016/j.isci.2022.104108",
"url": "https://doi.org/10.1016/j.isci.2022.104108",
"journal": "iScience",
"year": 2022,
"authors": "Duan, L.; Ruggles, T.; Caldeira, K.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Magnetic zinc-air batteries for storing wind and solar energy",
"doi": "10.1016/j.isci.2022.103837",
"url": "https://doi.org/10.1016/j.isci.2022.103837",
"journal": "iScience",
"year": 2022,
"authors": "Wang, K.; Pei, P.; Zuo, Y.; Wei, M.; Wang, H.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "The quantity-quality transition in the value of expanding wind and solar power generation",
"doi": "10.1016/j.isci.2022.104140",
"url": "https://doi.org/10.1016/j.isci.2022.104140",
"journal": "iScience",
"year": 2022,
"authors": "Antonini, E.; Ruggles, T.; Farnham, D.; Caldeira, K.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Addressing gain-bandwidth trade-off by a monolithically integrated photovoltaic transistor",
"doi": "10.1126/sciadv.abq0187",
"url": "https://doi.org/10.1126/sciadv.abq0187",
"journal": "Science Advances",
"year": 2022,
"authors": "Li, Y.; Chen, G.; Zhao, S.; Liu, C.; Zhao, N.",
"abstract": "\n The gain-bandwidth trade-off limits the development of high-performance photodetectors; i.e., the mutual restraint between the response speed and gain has intrinsically limited performance optimization of photomultiplication phototransistors and photodiodes. Here, we show that a monolithically integrated photovoltaic transistor can solve this dilemma. In this structure, the photovoltage generated by the superimposed perovskite solar cell, acting as a float gate, is amplified by the ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Ultrafast response of spontaneous photovoltaic effect in 3R-MoS\n <sub>2</sub>\n –based heterostructures",
"doi": "10.1126/sciadv.ade3759",
"url": "https://doi.org/10.1126/sciadv.ade3759",
"journal": "Science Advances",
"year": 2022,
"authors": "Wu, J.; Yang, D.; Liang, J.; Werner, M.; Ostroumov, E.",
"abstract": "\n Rhombohedrally stacked MoS\n 2\n has been shown to exhibit spontaneous polarization down to the bilayer limit and can sustain a strong depolarization field when sandwiched between graphene. Such a field gives rise to a spontaneous photovoltaic effect without needing any p-n junction. In this work, we show that the photovoltaic effect has an external quantum efficiency of 10% for devices with only two atomic layers of MoS\n 2\n at low temperatu",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Electrostatic dust removal using adsorbed moisture–assisted charge induction for sustainable operation of solar panels",
"doi": "10.1126/sciadv.abm0078",
"url": "https://doi.org/10.1126/sciadv.abm0078",
"journal": "Science Advances",
"year": 2022,
"authors": "Panat, S.; Varanasi, K.",
"abstract": "Dust accumulation on solar panels is a major challenge, as it blocks a large portion of sunlight. Solar panels are therefore cleaned regularly using large quantities of pure water. Consumption of water for cleaning, especially in deserts, poses a substantial sustainability challenge. Here, we present a waterless approach for dust removal from solar panels using electrostatic induction. We find that dust particles, despite primarily consisting of insulating silica, can be electrostatically repell",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "A measured energy use, solar production, and building air leakage dataset for a zero energy commercial building",
"doi": "10.1038/s41597-021-01082-8",
"url": "https://doi.org/10.1038/s41597-021-01082-8",
"journal": "Scientific Data",
"year": 2021,
"authors": "Agee, P.; Nikdel, L.; Roberts, S.",
"abstract": "AbstractThis paper provides an open dataset of measured energy use, solar energy production, and building air leakage data from a 328 m2 (3,531 ft2) all-electric, zero energy commercial building in Virginia, USA. Over two years of energy use data were collected at 1-hour intervals using circuit-level energy monitors. Over six years of solar energy production data were measured at 1-hour resolution by 56 microinverters (presented as daily and monthly data in this dataset). The building air leakag",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "Role of the social factors in success of solar photovoltaic reuse and recycle programmes",
"doi": "10.1038/s41560-021-00888-5",
"url": "https://doi.org/10.1038/s41560-021-00888-5",
"journal": "Nature Energy",
"year": 2021,
"authors": "Walzberg, J.; Carpenter, A.; Heath, G.",
"abstract": "Abstract\n By 2050, the cumulative mass of end-of-life photovoltaic (PV) modules may reach 80 Mt globally. The impacts could be mitigated by module recycling, repair and reuse; however, previous studies of PV circularity omit the consideration of critical social factors. Here we used an agent-based model to integrate social aspects with techno-economic factors, which provides a more realistic assessment of the circularity potential for previously studied interventions that assess",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Feedbacks among electric vehicle adoption, charging, and the cost and installation of rooftop solar photovoltaics",
"doi": "10.1038/s41560-020-00746-w",
"url": "https://doi.org/10.1038/s41560-020-00746-w",
"journal": "Nature Energy",
"year": 2021,
"authors": "Kaufmann, R.; Newberry, D.; Xin, C.; Gopal, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Buildings (建筑物)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Urban & Building Integrated (城市与建筑集成)"
},
{
"title": "National growth dynamics of wind and solar power compared to the growth required for global climate targets",
"doi": "10.1038/s41560-021-00863-0",
"url": "https://doi.org/10.1038/s41560-021-00863-0",
"journal": "Nature Energy",
"year": 2021,
"authors": "Cherp, A.; Vinichenko, V.; Tosun, J.; Gordon, J.; Jewell, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Life cycle assessment of recycling strategies for perovskite photovoltaic modules",
"doi": "10.1038/s41893-021-00737-z",
"url": "https://doi.org/10.1038/s41893-021-00737-z",
"journal": "Nature Sustainability",
"year": 2021,
"authors": "Tian, X.; Stranks, S.; You, F.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Resource & Potential (资源与潜力)"
},
{
"title": "Closing the loop for perovskite solar modules",
"doi": "10.1038/s41893-021-00735-1",
"url": "https://doi.org/10.1038/s41893-021-00735-1",
"journal": "Nature Sustainability",
"year": 2021,
"authors": "Parisi, M.; Sinicropi, A.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Energy harvesting optical modulators with sub-attojoule per bit electrical energy consumption",
"doi": "10.1038/s41467-021-22460-1",
"url": "https://doi.org/10.1038/s41467-021-22460-1",
"journal": "Nature Communications",
"year": 2021,
"authors": "de Cea, M.; Atabaki, A.; Ram, R.",
"abstract": "AbstractThe light input to a semiconductor optical modulator can constitute an electrical energy supply through the photovoltaic effect, which is unexploited in conventional modulators. In this work, we leverage this effect to demonstrate a silicon modulator with sub-aJ/bit electrical energy consumption at sub-GHz speeds, relevant for massively parallel input/output systems such as neural interfaces. We use the parasitic photovoltaic current to self-charge the modulator and a single transistor t",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Novel symmetrical bifacial flexible CZTSSe thin film solar cells for indoor photovoltaic applications",
"doi": "10.1038/s41467-021-23343-1",
"url": "https://doi.org/10.1038/s41467-021-23343-1",
"journal": "Nature Communications",
"year": 2021,
"authors": "Deng, H.; Sun, Q.; Yang, Z.; Li, W.; Yan, Q.",
"abstract": "AbstractEnvironment-friendly flexible Cu2ZnSn(S,Se)4 (CZTSSe) solar cells show great potentials for indoor photovoltaic market. Indoor lighting is weak and multi-directional, thus the researches of photovoltaic device structures, techniques and performances face new challenges. Here, we design symmetrical bifacial CZTSSe solar cells on flexible Mo-foil substrate to efficiently harvest the indoor energy. Such devices are fabricated by double-sided deposition techniques to ensure bifacial consiste",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Potential (潜力评估)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Pure spin photocurrent in non-centrosymmetric crystals: bulk spin photovoltaic effect",
"doi": "10.1038/s41467-021-24541-7",
"url": "https://doi.org/10.1038/s41467-021-24541-7",
"journal": "Nature Communications",
"year": 2021,
"authors": "Xu, H.; Wang, H.; Zhou, J.; Li, J.",
"abstract": "AbstractSpin current generators are critical components for spintronics-based information processing. In this work, we theoretically and computationally investigate the bulk spin photovoltaic (BSPV) effect for creating DC spin current under light illumination. The only requirement for BSPV is inversion symmetry breaking, thus it applies to a broad range of materials and can be readily integrated with existing semiconductor technologies. The BSPV effect is a cousin of the bulk photovoltaic (BPV) ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Enhanced bulk photovoltaic effect in two-dimensional ferroelectric CuInP2S6",
"doi": "10.1038/s41467-021-26200-3",
"url": "https://doi.org/10.1038/s41467-021-26200-3",
"journal": "Nature Communications",
"year": 2021,
"authors": "Li, Y.; Fu, J.; Mao, X.; Chen, C.; Liu, H.",
"abstract": "Abstract\n \n The photocurrent generation in photovoltaics relies essentially on the interface of p-n junction or Schottky barrier with the photoelectric efficiency constrained by the Shockley-Queisser limit. The recent progress has shown a promising route to surpass this limit via the bulk photovoltaic effect for crystals without inversion symmetry. Here we report the bulk photovoltaic effect in two-dimensional ferroelectric CuInP\n 2\n ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Direct observation of trap-assisted recombination in organic photovoltaic devices",
"doi": "10.1038/s41467-021-23870-x",
"url": "https://doi.org/10.1038/s41467-021-23870-x",
"journal": "Nature Communications",
"year": 2021,
"authors": "Zeiske, S.; Sandberg, O.; Zarrabi, N.; Li, W.; Meredith, P.",
"abstract": "AbstractTrap-assisted recombination caused by localised sub-gap states is one of the most important first-order loss mechanism limiting the power-conversion efficiency of all solar cells. The presence and relevance of trap-assisted recombination in organic photovoltaic devices is still a matter of some considerable ambiguity and debate, hindering the field as it seeks to deliver ever higher efficiencies and ultimately a viable new solar photovoltaic technology. In this work, we show that trap-as",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Anomalous circular bulk photovoltaic effect in BiFeO3 thin films with stripe-domain pattern",
"doi": "10.1038/s41467-020-20446-z",
"url": "https://doi.org/10.1038/s41467-020-20446-z",
"journal": "Nature Communications",
"year": 2021,
"authors": "Knoche, D.; Steimecke, M.; Yun, Y.; Mühlenbein, L.; Bhatnagar, A.",
"abstract": "AbstractMultiferroic bismuth ferrite, BiFeO3, offers a vast landscape to study the interplay between different ferrroic orders. Another aspect which is equally exciting, and yet underutilized, is the possibility of large-scale ordering of domains. Along with symmetry-driven bulk photovoltaic effect, BiFeO3 presents opportunities to conceptualize novel light-based devices. In this work, we investigate the evolution of the bulk photovoltaic effect in BiFeO3 thin films with stripe-domain pattern as",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "High resolution global spatiotemporal assessment of rooftop solar photovoltaics potential for renewable electricity generation",
"doi": "10.1038/s41467-021-25720-2",
"url": "https://doi.org/10.1038/s41467-021-25720-2",
"journal": "Nature Communications",
"year": 2021,
"authors": "Joshi, S.; Mittal, S.; Holloway, P.; Shukla, P.; Ó Gallachóir, B.",
"abstract": "AbstractRooftop solar photovoltaics currently account for 40% of the global solar photovoltaics installed capacity and one-fourth of the total renewable capacity additions in 2018. Yet, only limited information is available on its global potential and associated costs at a high spatiotemporal resolution. Here, we present a high-resolution global assessment of rooftop solar photovoltaics potential using big data, machine learning and geospatial analysis. We analyse 130 million km2of global land s",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Sources of uncertainty in long-term global scenarios of solar photovoltaic technology",
"doi": "10.1038/s41558-021-00998-8",
"url": "https://doi.org/10.1038/s41558-021-00998-8",
"journal": "Nature Climate Change",
"year": 2021,
"authors": "Jaxa-Rozen, M.; Trutnevyte, E.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Drivers of photovoltaic uncertainty",
"doi": "10.1038/s41558-021-01002-z",
"url": "https://doi.org/10.1038/s41558-021-01002-z",
"journal": "Nature Climate Change",
"year": 2021,
"authors": "Eker, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Application of large-scale grid-connected solar photovoltaic system for voltage stability improvement of weak national grids",
"doi": "10.1038/s41598-021-04300-w",
"url": "https://doi.org/10.1038/s41598-021-04300-w",
"journal": "Scientific Reports",
"year": 2021,
"authors": "Adetokun, B.; Ojo, J.; Muriithi, C.",
"abstract": "AbstractThis paper investigates the application of large-scale solar photovoltaic (SPV) system for voltage stability improvement of weak national grids. Large-scale SPV integration has been investigated on the Nigerian power system to enhance voltage stability and as a viable alternative to the aged shunt reactors currently being used in the Nigerian national grid to mitigate overvoltage issues in Northern Nigeria. Two scenarios of increasing SPV penetration level (PL) are investigated in this w",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Monitoring of Photovoltaic System Performance Using Outdoor Suns-VOC",
"doi": "10.1016/j.joule.2020.11.007",
"url": "https://doi.org/10.1016/j.joule.2020.11.007",
"journal": "Joule",
"year": 2021,
"authors": "Killam, A.; Karas, J.; Augusto, A.; Bowden, S.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Accurate photovoltaic measurement of organic cells for indoor applications",
"doi": "10.1016/j.joule.2021.03.029",
"url": "https://doi.org/10.1016/j.joule.2021.03.029",
"journal": "Joule",
"year": 2021,
"authors": "Cui, Y.; Hong, L.; Zhang, T.; Meng, H.; Yan, H.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "All-polymer indoor photovoltaic modules",
"doi": "10.1016/j.isci.2021.103104",
"url": "https://doi.org/10.1016/j.isci.2021.103104",
"journal": "iScience",
"year": 2021,
"authors": "Zhang, Y.; Wang, N.; Wang, Y.; Zhang, J.; Liu, J.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Monitoring photovoltaic soiling: assessment, challenges, and perspectives of current and potential strategies",
"doi": "10.1016/j.isci.2021.102165",
"url": "https://doi.org/10.1016/j.isci.2021.102165",
"journal": "iScience",
"year": 2021,
"authors": "Bessa, J.; Micheli, L.; Almonacid, F.; Fernández, E.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Land Use (土地利用)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Strongly enhanced and tunable photovoltaic effect in ferroelectric-paraelectric superlattices",
"doi": "10.1126/sciadv.abe4206",
"url": "https://doi.org/10.1126/sciadv.abe4206",
"journal": "Science Advances",
"year": 2021,
"authors": "Yun, Y.; Mühlenbein, L.; Knoche, D.; Lotnyk, A.; Bhatnagar, A.",
"abstract": "Sandwiching a ferroelectric between two paraelectrics squeezes out larger photovoltaic current.",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Revealing generation, migration, and dissociation of electron-hole pairs and current emergence in an organic photovoltaic cell",
"doi": "10.1126/sciadv.abf7672",
"url": "https://doi.org/10.1126/sciadv.abf7672",
"journal": "Science Advances",
"year": 2021,
"authors": "Xu, Z.; Zhou, Y.; Yam, C.; Groß, L.; De Sio, A.",
"abstract": "Photoexcitation, electron-hole pair migration, charge separation, and current generation are simulated quantum mechanically.",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Spin photovoltaic effect in magnetic van der Waals heterostructures",
"doi": "10.1126/sciadv.abg8094",
"url": "https://doi.org/10.1126/sciadv.abg8094",
"journal": "Science Advances",
"year": 2021,
"authors": "Song, T.; Anderson, E.; Tu, M.; Seyler, K.; Taniguchi, T.",
"abstract": "\n Spin-photovoltaic effect in 2D magnet CrI\n 3\n exhibits interplay between magneto-excitons, photon energy, and light helicity.\n ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "A harmonised, high-coverage, open dataset of solar photovoltaic installations in the UK",
"doi": "10.1038/s41597-020-00739-0",
"url": "https://doi.org/10.1038/s41597-020-00739-0",
"journal": "Scientific Data",
"year": 2020,
"authors": "Stowell, D.; Kelly, J.; Tanner, D.; Taylor, J.; Jones, E.",
"abstract": "AbstractSolar photovoltaic (PV) is an increasingly significant fraction of electricity generation. Efficient management, and innovations such as short-term forecasting and machine vision, demand high-resolution geographic datasets of PV installations. However, official and public sources have notable deficiencies: spatial imprecision, gaps in coverage and lack of crucial meta data, especially for small-scale solar panel installations. We present the results of a major crowd-sourcing campaign to ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Figshare / Dryad / Zenodo",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Reduced ecosystem services of desert plants from ground-mounted solar energy development",
"doi": "10.1038/s41893-020-0574-x",
"url": "https://doi.org/10.1038/s41893-020-0574-x",
"journal": "Nature Sustainability",
"year": 2020,
"authors": "Grodsky, S.; Hernandez, R.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "DigiEnergy",
"subcategory": "Load Forecasting & Demand Management",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Climate change extremes and photovoltaic power output",
"doi": "10.1038/s41893-020-00643-w",
"url": "https://doi.org/10.1038/s41893-020-00643-w",
"journal": "Nature Sustainability",
"year": 2020,
"authors": "Feron, S.; Cordero, R.; Damiani, A.; Jackson, R.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Photovoltaic panel cooling by atmospheric water sorption–evaporation cycle",
"doi": "10.1038/s41893-020-0535-4",
"url": "https://doi.org/10.1038/s41893-020-0535-4",
"journal": "Nature Sustainability",
"year": 2020,
"authors": "Li, R.; Shi, Y.; Wu, M.; Hong, S.; Wang, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Global reduction of solar power generation efficiency due to aerosols and panel soiling",
"doi": "10.1038/s41893-020-0553-2",
"url": "https://doi.org/10.1038/s41893-020-0553-2",
"journal": "Nature Sustainability",
"year": 2020,
"authors": "Li, X.; Mauzerall, D.; Bergin, M.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Global scale dataset",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Impacts of solar intermittency on future photovoltaic reliability",
"doi": "10.1038/s41467-020-18602-6",
"url": "https://doi.org/10.1038/s41467-020-18602-6",
"journal": "Nature Communications",
"year": 2020,
"authors": "Yin, J.; Molini, A.; Porporato, A.",
"abstract": "AbstractAs photovoltaic power is expanding rapidly worldwide, it is imperative to assess its promise under future climate scenarios. While a great deal of research has been devoted to trends in mean solar radiation, less attention has been paid to its intermittent character, a key challenge when compounded with uncertainties related to climate variability. Using both satellite data and climate model outputs, we characterize solar radiation intermittency to assess future photovoltaic reliability.",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Remote Sensing (遥感图像)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Remote Sensing & Computer Vision (遥感与计算机视觉)"
},
{
"title": "Solar photovoltaic interventions have reduced rural poverty in China",
"doi": "10.1038/s41467-020-15826-4",
"url": "https://doi.org/10.1038/s41467-020-15826-4",
"journal": "Nature Communications",
"year": 2020,
"authors": "Zhang, H.; Wu, K.; Qiu, Y.; Chan, G.; Wang, S.",
"abstract": "AbstractSince 2013, China has implemented a large-scale initiative to systematically deploy solar photovoltaic (PV) projects to alleviate poverty in rural areas. To provide new understanding of China’s targeted poverty alleviation strategy, we use a panel dataset of 211 pilot counties that received targeted PV investments from 2013 to 2016, and find that the PV poverty alleviation pilot policy increases per-capita disposable income in a county by approximately 7%-8%. The effect of PV investment ",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Land Use (土地利用)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Regional dataset (China)",
"pv_category_refined": "Grid, Management & Sustainability (电网、管理与可持续性)"
},
{
"title": "Unraveling the influence of non-fullerene acceptor molecular packing on photovoltaic performance of organic solar cells",
"doi": "10.1038/s41467-020-19853-z",
"url": "https://doi.org/10.1038/s41467-020-19853-z",
"journal": "Nature Communications",
"year": 2020,
"authors": "Ye, L.; Weng, K.; Xu, J.; Du, X.; Chandrabose, S.",
"abstract": "AbstractIn non-fullerene organic solar cells, the long-range structure ordering induced by end-group π–π stacking of fused-ring non-fullerene acceptors is considered as the critical factor in realizing efficient charge transport and high power conversion efficiency. Here, we demonstrate that side-chain engineering of non-fullerene acceptors could drive the fused-ring backbone assembly from a π–π stacking mode to an intermixed packing mode, and to a non-stacking mode to refine its solid-state pro",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Predicted Power Output of Silicon-Based Bifacial Tandem Photovoltaic Systems",
"doi": "10.1016/j.joule.2019.12.017",
"url": "https://doi.org/10.1016/j.joule.2019.12.017",
"journal": "Joule",
"year": 2020,
"authors": "Onno, A.; Rodkey, N.; Asgharzadeh, A.; Manzoor, S.; Yu, Z.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Reverse Manufacturing Enables Perovskite Photovoltaics to Reach the Carbon Footprint Limit of a Glass Substrate",
"doi": "10.1016/j.joule.2020.02.001",
"url": "https://doi.org/10.1016/j.joule.2020.02.001",
"journal": "Joule",
"year": 2020,
"authors": "Wagner, L.; Mastroianni, S.; Hinsch, A.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Mendeley Data",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Location-Specific Spectral and Thermal Effects in Tracking and Fixed Tilt Photovoltaic Systems",
"doi": "10.1016/j.isci.2020.101634",
"url": "https://doi.org/10.1016/j.isci.2020.101634",
"journal": "iScience",
"year": 2020,
"authors": "Ripalda, J.; Chemisana, D.; Llorens, J.; García, I.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Other Specialized PV Research (其他光伏专项研究)"
},
{
"title": "Using Existing Infrastructure to Realize Low-Cost and Flexible Photovoltaic Power Generation in Areas with High-Power Demand in China",
"doi": "10.1016/j.isci.2020.101867",
"url": "https://doi.org/10.1016/j.isci.2020.101867",
"journal": "iScience",
"year": 2020,
"authors": "Jiang, M.; Li, J.; Wei, W.; Miao, J.; Zhang, P.",
"abstract": "",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Generation (发电量)",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Regional dataset (China)",
"pv_category_refined": "Performance & Generation (性能与发电量)"
},
{
"title": "Black phosphorus quantum dots in inorganic perovskite thin films for efficient photovoltaic application",
"doi": "10.1126/sciadv.aay5661",
"url": "https://doi.org/10.1126/sciadv.aay5661",
"journal": "Science Advances",
"year": 2020,
"authors": "Gong, X.; Guan, L.; Li, Q.; Li, Y.; Zhang, T.",
"abstract": "Black phosphorus quantum dots for efficient photovoltaic application.",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Materials & Device Physics (材料与器件物理)"
},
{
"title": "Life cycle energy use and environmental implications of high-performance perovskite tandem solar cells",
"doi": "10.1126/sciadv.abb0055",
"url": "https://doi.org/10.1126/sciadv.abb0055",
"journal": "Science Advances",
"year": 2020,
"authors": "Tian, X.; Stranks, S.; You, F.",
"abstract": "Scalable and high-efficiency perovskite tandem solar cells with long lifetime pave the way for sustainable photovoltaics.",
"data_url": "",
"source": "CrossRef",
"direction": "CleanTech",
"subcategory": "Solar PV & Storage",
"direction_label": "Novel Low/Zero Carbon Technologies",
"pv_category": "Other PV Data",
"data_source": "Check Article",
"data_size": "Varies",
"features": "Open-access PV research data",
"pv_category_refined": "Performance & Generation (性能与发电量)"
}
] |