Datasets:
File size: 125,168 Bytes
bfc11de | 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 | @article{10_1038_s41597-025-06437-z,
title = {Microstructure & physicochemical properties dataset of NaCl-based salt mixtures for concentrating solar power},
journal = {Scientific Data},
year = {2026},
doi = {10.1038/s41597-025-06437-z},
url = {https://doi.org/10.1038/s41597-025-06437-z}
}
@article{10_1038_s41597-026-06544-5,
title = {An electronic product carbon footprint dataset for question answering},
journal = {Scientific Data},
year = {2026},
doi = {10.1038/s41597-026-06544-5},
url = {https://doi.org/10.1038/s41597-026-06544-5}
}
@article{10_1038_s41597-026-06789-0,
title = {Carbon footprint dataset of concrete based on field surveys at commercial mixing plants in Shandong, China},
journal = {Scientific Data},
year = {2026},
doi = {10.1038/s41597-026-06789-0},
url = {https://doi.org/10.1038/s41597-026-06789-0}
}
@article{10_1038_s41560-026-01977-z,
title = {Heterogeneity in public attitudes and preferences for the deployment of aquifer thermal energy storage},
journal = {Nature Energy},
year = {2026},
doi = {10.1038/s41560-026-01977-z},
url = {https://doi.org/10.1038/s41560-026-01977-z}
}
@article{10_1038_s41560-025-01916-4,
title = {Collaboration can secure carbon capture’s future},
journal = {Nature Energy},
year = {2026},
doi = {10.1038/s41560-025-01916-4},
url = {https://doi.org/10.1038/s41560-025-01916-4}
}
@article{10_1038_s41893-025-01754-y,
title = {Global gridded dataset of heating and cooling degree days under climate change scenarios},
journal = {Nature Sustainability},
year = {2026},
doi = {10.1038/s41893-025-01754-y},
url = {https://doi.org/10.1038/s41893-025-01754-y}
}
@article{10_1038_s41467-026-68829-y,
title = {Carbon sequestration for geological negative emissions of the shale gas value chain in China},
journal = {Nature Communications},
year = {2026},
doi = {10.1038/s41467-026-68829-y},
url = {https://doi.org/10.1038/s41467-026-68829-y}
}
@article{10_1038_s41467-026-69868-1,
title = {Self-driven recycling of spent Li-ion battery materials with electricity generation},
journal = {Nature Communications},
year = {2026},
doi = {10.1038/s41467-026-69868-1},
url = {https://doi.org/10.1038/s41467-026-69868-1}
}
@article{10_1038_s41467-025-67595-7,
title = {Aligning EU energy security and climate mitigation through targeted transition strategies},
journal = {Nature Communications},
year = {2026},
doi = {10.1038/s41467-025-67595-7},
url = {https://doi.org/10.1038/s41467-025-67595-7}
}
@article{10_1038_s41598-026-38720-3,
title = {A multi strategy optimization framework using AI digital twins for smart grid carbon emission reduction},
journal = {Scientific Reports},
year = {2026},
doi = {10.1038/s41598-026-38720-3},
url = {https://doi.org/10.1038/s41598-026-38720-3}
}
@article{10_1038_s41598-026-37485-z,
title = {Optimized scheduling of integrated energy systems considering waste-to-power plants and advanced adiabatic air compression energy storage machines},
journal = {Scientific Reports},
year = {2026},
doi = {10.1038/s41598-026-37485-z},
url = {https://doi.org/10.1038/s41598-026-37485-z}
}
@article{10_1038_s41598-025-33497-3,
title = {Optimized economic scheduling of demand response in integrated energy systems considering dynamic energy efficiency and dynamic carbon trading},
journal = {Scientific Reports},
year = {2026},
doi = {10.1038/s41598-025-33497-3},
url = {https://doi.org/10.1038/s41598-025-33497-3}
}
@article{10_1016_j_joule_2025_102218,
title = {Climate change will increase high-temperature risks, degradation, and costs of rooftop photovoltaics globally},
journal = {Joule},
year = {2026},
doi = {10.1016/j.joule.2025.102218},
url = {https://doi.org/10.1016/j.joule.2025.102218}
}
@article{10_1016_j_crsus_2025_100554,
title = {Democratizing life cycle assessment by developing a streamlined model of greenhouse gas emissions from US natural gas supply chains},
journal = {Cell Reports Sustainability},
year = {2026},
doi = {10.1016/j.crsus.2025.100554},
url = {https://doi.org/10.1016/j.crsus.2025.100554}
}
@article{10_1016_j_crsus_2025_100609,
title = {Aligning circular economy and low-carbon economy for a sustainable built environment},
journal = {Cell Reports Sustainability},
year = {2026},
doi = {10.1016/j.crsus.2025.100609},
url = {https://doi.org/10.1016/j.crsus.2025.100609}
}
@article{10_1016_j_isci_2025_114479,
title = {Heterogeneous impacts of fear and policy on building energy use during COVID-19 in South Korea},
journal = {iScience},
year = {2026},
doi = {10.1016/j.isci.2025.114479},
url = {https://doi.org/10.1016/j.isci.2025.114479}
}
@article{10_1126_sciadv_aeb8653,
title = {Unpacking the growth of global agricultural greenhouse gas emissions},
journal = {Science Advances},
year = {2026},
doi = {10.1126/sciadv.aeb8653},
url = {https://doi.org/10.1126/sciadv.aeb8653}
}
@article{10_1126_sciadv_adw5226,
title = {Reassessing boreal wildfire drivers enables high-resolution mapping of emissions for climate adaptation},
journal = {Science Advances},
year = {2026},
doi = {10.1126/sciadv.adw5226},
url = {https://doi.org/10.1126/sciadv.adw5226}
}
@article{10_1038_s41597-025-04975-0,
title = {Global dataset combining open-source hydropower plant and reservoir data},
journal = {Scientific Data},
year = {2025},
doi = {10.1038/s41597-025-04975-0},
url = {https://doi.org/10.1038/s41597-025-04975-0}
}
@article{10_1038_s41597-025-04985-y,
title = {Global photovoltaic solar panel dataset from 2019 to 2022},
journal = {Scientific Data},
year = {2025},
doi = {10.1038/s41597-025-04985-y},
url = {https://doi.org/10.1038/s41597-025-04985-y}
}
@article{10_1038_s41597-024-04321-w,
title = {A dataset of structural breaks in greenhouse gas emissions for climate policy evaluation},
journal = {Scientific Data},
year = {2025},
doi = {10.1038/s41597-024-04321-w},
url = {https://doi.org/10.1038/s41597-024-04321-w}
}
@article{10_1038_s41597-025-06391-w,
title = {Vulcan version 4.0 high-resolution annual carbon dioxide emissions in the U.S. for the 2010–2022 time period},
journal = {Scientific Data},
year = {2025},
doi = {10.1038/s41597-025-06391-w},
url = {https://doi.org/10.1038/s41597-025-06391-w}
}
@article{10_1038_s41597-025-05938-1,
title = {Disaggregated Municipal Energy Consumption and Emissions in End-use Sectors in Germany and Spain for 2022},
journal = {Scientific Data},
year = {2025},
doi = {10.1038/s41597-025-05938-1},
url = {https://doi.org/10.1038/s41597-025-05938-1}
}
@article{10_1038_s41560-025-01892-9,
title = {Global greenhouse gas emissions mitigation potential of existing and planned hydrogen projects},
journal = {Nature Energy},
year = {2025},
doi = {10.1038/s41560-025-01892-9},
url = {https://doi.org/10.1038/s41560-025-01892-9}
}
@article{10_1038_s41560-025-01921-7,
title = {Implications of policy-driven transmission expansion for costs, emissions and reliability in the USA},
journal = {Nature Energy},
year = {2025},
doi = {10.1038/s41560-025-01921-7},
url = {https://doi.org/10.1038/s41560-025-01921-7}
}
@article{10_1038_s41560-025-01799-5,
title = {Author Correction: US industrial policy may reduce electric vehicle battery supply chain vulnerabilities and influence technology choice},
journal = {Nature Energy},
year = {2025},
doi = {10.1038/s41560-025-01799-5},
url = {https://doi.org/10.1038/s41560-025-01799-5}
}
@article{10_1038_s41560-025-01897-4,
title = {Policymakers and academics envision energy demand reductions beyond typical policies in the United Kingdom},
journal = {Nature Energy},
year = {2025},
doi = {10.1038/s41560-025-01897-4},
url = {https://doi.org/10.1038/s41560-025-01897-4}
}
@article{10_1038_s41560-025-01898-3,
title = {Policymaker-led scenarios and public dialogue facilitate energy demand analysis for net-zero futures},
journal = {Nature Energy},
year = {2025},
doi = {10.1038/s41560-025-01898-3},
url = {https://doi.org/10.1038/s41560-025-01898-3}
}
@article{10_1038_s41560-025-01703-1,
title = {Demand-side strategies enable rapid and deep cuts in buildings and transport emissions to 2050},
journal = {Nature Energy},
year = {2025},
doi = {10.1038/s41560-025-01703-1},
url = {https://doi.org/10.1038/s41560-025-01703-1}
}
@article{10_1038_s41893-025-01626-5,
title = {Strategizing renewable energy transitions to preserve sediment transport integrity},
journal = {Nature Sustainability},
year = {2025},
doi = {10.1038/s41893-025-01626-5},
url = {https://doi.org/10.1038/s41893-025-01626-5}
}
@article{10_1038_s41893-025-01696-5,
title = {Energy- and cost-efficient CO2 capture from dilute emissions by pyridinic-graphene membranes},
journal = {Nature Sustainability},
year = {2025},
doi = {10.1038/s41893-025-01696-5},
url = {https://doi.org/10.1038/s41893-025-01696-5}
}
@article{10_1038_s41893-025-01618-5,
title = {Embodied emissions of chemicals within the EU Carbon Border Adjustment Mechanism},
journal = {Nature Sustainability},
year = {2025},
doi = {10.1038/s41893-025-01618-5},
url = {https://doi.org/10.1038/s41893-025-01618-5}
}
@article{10_1038_s41893-025-01561-5,
title = {Effects of demand and recycling on the when and where of lithium extraction},
journal = {Nature Sustainability},
year = {2025},
doi = {10.1038/s41893-025-01561-5},
url = {https://doi.org/10.1038/s41893-025-01561-5}
}
@article{10_1038_s41893-024-01505-5,
title = {Electrochemical lithium recycling from spent batteries with electricity generation},
journal = {Nature Sustainability},
year = {2025},
doi = {10.1038/s41893-024-01505-5},
url = {https://doi.org/10.1038/s41893-024-01505-5}
}
@article{10_1038_s41893-024-01506-4,
title = {Economic costs of wind erosion in the United States},
journal = {Nature Sustainability},
year = {2025},
doi = {10.1038/s41893-024-01506-4},
url = {https://doi.org/10.1038/s41893-024-01506-4}
}
@article{10_1038_s41467-025-59466-y,
title = {Urban and non-urban contributions to the social cost of carbon},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-59466-y},
url = {https://doi.org/10.1038/s41467-025-59466-y}
}
@article{10_1038_s41467-025-59913-w,
title = {Carbon trade biases and the emerging mesoscale structure of the European Emissions Trading System network},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-59913-w},
url = {https://doi.org/10.1038/s41467-025-59913-w}
}
@article{10_1038_s41467-025-64440-9,
title = {Emerging green steel markets surrounding the EU emissions trading system and carbon border adjustment mechanism},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-64440-9},
url = {https://doi.org/10.1038/s41467-025-64440-9}
}
@article{10_1038_s41467-025-59029-1,
title = {Quantifying the trade-offs between renewable energy visibility and system costs},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-59029-1},
url = {https://doi.org/10.1038/s41467-025-59029-1}
}
@article{10_1038_s41467-025-62409-2,
title = {Gram-scale selective telomerization of isoprene and CO2 toward 100% renewable materials},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-62409-2},
url = {https://doi.org/10.1038/s41467-025-62409-2}
}
@article{10_1038_s41467-025-59201-7,
title = {Quantifying the global climate feedback from energy-based adaptation},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-59201-7},
url = {https://doi.org/10.1038/s41467-025-59201-7}
}
@article{10_1038_s41467-025-56006-6,
title = {Energy and climate policy implications on the deployment of low-carbon ammonia technologies},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-56006-6},
url = {https://doi.org/10.1038/s41467-025-56006-6}
}
@article{10_1038_s41467-025-66072-5,
title = {Planning the electric vehicle transition by integrating spatial information and social networks},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-66072-5},
url = {https://doi.org/10.1038/s41467-025-66072-5}
}
@article{10_1038_s41467-025-60711-7,
title = {The urgent electrolyte sustainability challenges for electric vehicle batteries},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-60711-7},
url = {https://doi.org/10.1038/s41467-025-60711-7}
}
@article{10_1038_s41467-025-61481-y,
title = {Lithium-ion battery recycling relieves the threat to material scarcity amid China’s electric vehicle ambitions},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-61481-y},
url = {https://doi.org/10.1038/s41467-025-61481-y}
}
@article{10_1038_s41467-025-58463-5,
title = {Temperate forests can deliver future wood demand and climate-change mitigation dependent on afforestation and circularity},
journal = {Nature Communications},
year = {2025},
doi = {10.1038/s41467-025-58463-5},
url = {https://doi.org/10.1038/s41467-025-58463-5}
}
@article{10_1038_s41558-025-02280-7,
title = {Avoiding misuses of energy-economic modelling in climate policymaking},
journal = {Nature Climate Change},
year = {2025},
doi = {10.1038/s41558-025-02280-7},
url = {https://doi.org/10.1038/s41558-025-02280-7}
}
@article{10_1038_s41558-025-02497-6,
title = {Modelling the impacts of policy sequencing on energy decarbonization},
journal = {Nature Climate Change},
year = {2025},
doi = {10.1038/s41558-025-02497-6},
url = {https://doi.org/10.1038/s41558-025-02497-6}
}
@article{10_1038_s41558-025-02330-0,
title = {Individualized cost–benefit analysis does not fit for demand-side mitigation},
journal = {Nature Climate Change},
year = {2025},
doi = {10.1038/s41558-025-02330-0},
url = {https://doi.org/10.1038/s41558-025-02330-0}
}
@article{10_1038_s41558-025-02331-z,
title = {Reply to: Individualized cost–benefit analysis does not fit for demand-side mitigation},
journal = {Nature Climate Change},
year = {2025},
doi = {10.1038/s41558-025-02331-z},
url = {https://doi.org/10.1038/s41558-025-02331-z}
}
@article{10_1038_s41558-025-02250-z,
title = {Governance challenges for domestic cross-border carbon capture and storage},
journal = {Nature Climate Change},
year = {2025},
doi = {10.1038/s41558-025-02250-z},
url = {https://doi.org/10.1038/s41558-025-02250-z}
}
@article{10_1093_pnasnexus_pgaf079,
title = {Influence of climate change and accidents on perception differs among energy technologies},
journal = {npj Clean Energy},
year = {2025},
doi = {10.1093/pnasnexus/pgaf079},
url = {https://doi.org/10.1093/pnasnexus/pgaf079}
}
@article{10_1093_pnasnexus_pgaf342,
title = {Single-fibril Förster resonance energy transfer imaging and deep learning reveal concentration dependence of amyloid β 42 aggregation pathways},
journal = {npj Clean Energy},
year = {2025},
doi = {10.1093/pnasnexus/pgaf342},
url = {https://doi.org/10.1093/pnasnexus/pgaf342}
}
@article{10_1093_pnasnexus_pgaf037,
title = {Global consistency of urban scaling evidenced by remote sensing},
journal = {npj Clean Energy},
year = {2025},
doi = {10.1093/pnasnexus/pgaf037},
url = {https://doi.org/10.1093/pnasnexus/pgaf037}
}
@article{10_1093_pnasnexus_pgaf191,
title = {Climate action literacy interventions increase commitments to more effective mitigation behaviors},
journal = {npj Clean Energy},
year = {2025},
doi = {10.1093/pnasnexus/pgaf191},
url = {https://doi.org/10.1093/pnasnexus/pgaf191}
}
@article{10_1093_pnasnexus_pgaf356,
title = {The equity implications of pecuniary externalities on an electric grid},
journal = {npj Clean Energy},
year = {2025},
doi = {10.1093/pnasnexus/pgaf356},
url = {https://doi.org/10.1093/pnasnexus/pgaf356}
}
@article{10_1038_s44284-025-00312-z,
title = {Satellite analysis of methane emissions connects war and urban sustainability},
journal = {Nature Cities},
year = {2025},
doi = {10.1038/s44284-025-00312-z},
url = {https://doi.org/10.1038/s44284-025-00312-z}
}
@article{10_1038_s44284-025-00303-0,
title = {Synergistic action on mitigation and adaptation pilot policies to enhance low-carbon resilience of Chinese cities},
journal = {Nature Cities},
year = {2025},
doi = {10.1038/s44284-025-00303-0},
url = {https://doi.org/10.1038/s44284-025-00303-0}
}
@article{10_1038_s44284-025-00259-1,
title = {Low-carbon solutions for water infiltration in urban buildings under climate change},
journal = {Nature Cities},
year = {2025},
doi = {10.1038/s44284-025-00259-1},
url = {https://doi.org/10.1038/s44284-025-00259-1}
}
@article{10_1038_s41598-025-12410-y,
title = {Integrating energy justice and economic realities through insights on energy expenditures, inequality, and renewable energy attitudes},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-12410-y},
url = {https://doi.org/10.1038/s41598-025-12410-y}
}
@article{10_1038_s41598-025-32105-8,
title = {Solar photovoltaic feed-in tariffs: viability analysis and policy recommendations},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-32105-8},
url = {https://doi.org/10.1038/s41598-025-32105-8}
}
@article{10_1038_s41598-025-16262-4,
title = {An examination of the decoupling effect and influential mechanisms of energy consumption and economic growth in Chinese urban areas},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-16262-4},
url = {https://doi.org/10.1038/s41598-025-16262-4}
}
@article{10_1038_s41598-025-00975-7,
title = {The impact of China pilot carbon market policy on electricity carbon emissions},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-00975-7},
url = {https://doi.org/10.1038/s41598-025-00975-7}
}
@article{10_1038_s41598-025-99814-y,
title = {The impact of carbon emissions trading on innovation bubbles in manufacturing enterprises},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-99814-y},
url = {https://doi.org/10.1038/s41598-025-99814-y}
}
@article{10_1038_s41598-025-87098-1,
title = {Research on the impact of the digital economy on carbon emissions based on the dual perspectives of carbon emission reduction and carbon efficiency},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-87098-1},
url = {https://doi.org/10.1038/s41598-025-87098-1}
}
@article{10_1038_s41598-025-11581-y,
title = {Individual perceptions of renewable energy investment in Somali firms},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-11581-y},
url = {https://doi.org/10.1038/s41598-025-11581-y}
}
@article{10_1038_s41598-025-10404-4,
title = {Optimal energy management of multi-carrier energy system considering uncertainty in renewable generation},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-10404-4},
url = {https://doi.org/10.1038/s41598-025-10404-4}
}
@article{10_1038_s41598-025-17491-3,
title = {Agricultural carbon footprints, renewable energy and sustainable development in Asia},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-17491-3},
url = {https://doi.org/10.1038/s41598-025-17491-3}
}
@article{10_1038_s41598-025-06768-2,
title = {Capabilities of battery and compressed air storage in the economic energy scheduling and flexibility regulation of multi-microgrids including non-renewable/renewable units},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-06768-2},
url = {https://doi.org/10.1038/s41598-025-06768-2}
}
@article{10_1038_s41598-025-87689-y,
title = {Robust fuzzy dynamic integrated environmental-economic-social scheduling considering demand response and user’s satisfaction with electricity under multiple uncertainties},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-87689-y},
url = {https://doi.org/10.1038/s41598-025-87689-y}
}
@article{10_1038_s41598-025-86042-7,
title = {Mitigating anthropogenic climate change with aqueous green energy},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-86042-7},
url = {https://doi.org/10.1038/s41598-025-86042-7}
}
@article{10_1038_s41598-025-23661-0,
title = {Solar potential assessment using machine learning and climate change projections for long-term energy planning},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-23661-0},
url = {https://doi.org/10.1038/s41598-025-23661-0}
}
@article{10_1038_s41598-025-90583-2,
title = {A novel approach to wind energy modeling in the context of climate change at Zaafrana region in Egypt},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-90583-2},
url = {https://doi.org/10.1038/s41598-025-90583-2}
}
@article{10_1038_s41598-025-24815-w,
title = {The role of environmental awareness, renewable energy, and green innovation in shaping climate change perceptions},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-24815-w},
url = {https://doi.org/10.1038/s41598-025-24815-w}
}
@article{10_1038_s41598-025-10704-9,
title = {A smart grid data sharing scheme supporting policy update and traceability},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-10704-9},
url = {https://doi.org/10.1038/s41598-025-10704-9}
}
@article{10_1038_s41598-025-04984-4,
title = {Artificial intelligence-augmented smart grid architecture for cyber intrusion detection and mitigation in electric vehicle charging infrastructure},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-04984-4},
url = {https://doi.org/10.1038/s41598-025-04984-4}
}
@article{10_1038_s41598-025-88389-3,
title = {Identification and suppression of low-frequency oscillations using PMU measurements based power system model in smart grid},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-88389-3},
url = {https://doi.org/10.1038/s41598-025-88389-3}
}
@article{10_1038_s41598-025-29052-9,
title = {Flexible renewable integrated energy system capabilities to improve voltage stability with power quality and economic environmental operation of smart grid},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-29052-9},
url = {https://doi.org/10.1038/s41598-025-29052-9}
}
@article{10_1038_s41598-025-02238-x,
title = {Comprehensive performance analysis of an electric vehicle using multi-mode Indian drive cycles},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-02238-x},
url = {https://doi.org/10.1038/s41598-025-02238-x}
}
@article{10_1038_s41598-025-18863-5,
title = {Strategic design of wind energy and battery storage for efficient and sustainable energy systems},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-18863-5},
url = {https://doi.org/10.1038/s41598-025-18863-5}
}
@article{10_1038_s41598-025-18799-w,
title = {A spatial decision making framework using neutrosophic VIKOR for wind energy investment in Turkey},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-18799-w},
url = {https://doi.org/10.1038/s41598-025-18799-w}
}
@article{10_1038_s41598-025-09732-2,
title = {Economic and environmental assessment of different energy storage methods for hybrid energy systems},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-09732-2},
url = {https://doi.org/10.1038/s41598-025-09732-2}
}
@article{10_1038_s41598-025-24518-2,
title = {Carbon footprint analysis and carbon neutrality potential of desalination by reverse osmosis for different applications basd on life cycle assessment method},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-24518-2},
url = {https://doi.org/10.1038/s41598-025-24518-2}
}
@article{10_1038_s41598-025-09293-4,
title = {Uncovering the carbon footprint of minimally invasive axillary osmidrosis surgery in China through life cycle assessment},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-09293-4},
url = {https://doi.org/10.1038/s41598-025-09293-4}
}
@article{10_1038_s41598-024-83407-2,
title = {Carbon footprint analysis and emission reduction pathways of Bogie frame manufacturing process in Urban Rail Transportation},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-024-83407-2},
url = {https://doi.org/10.1038/s41598-024-83407-2}
}
@article{10_1038_s41598-025-86383-3,
title = {Temporal-spatial evolution and formation mechanism of energy consumption carbon footprint at county scale in the Yellow River Basin},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-86383-3},
url = {https://doi.org/10.1038/s41598-025-86383-3}
}
@article{10_1038_s41598-025-87733-x,
title = {Carbon footprint assessment and reconstruction redesign of recycled discarded military training uniforms},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-87733-x},
url = {https://doi.org/10.1038/s41598-025-87733-x}
}
@article{10_1038_s41598-025-01495-0,
title = {Quantifying the energy and emissions implications of consumption redistribution in the UK through sustainable consumption corridors},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-01495-0},
url = {https://doi.org/10.1038/s41598-025-01495-0}
}
@article{10_1038_s41598-025-24430-9,
title = {Assessment of electrode materials in EDM of SS316L: energy consumption, electrode wear, dielectric consumption, GHG emissions, and economic viability for sustainable development},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-24430-9},
url = {https://doi.org/10.1038/s41598-025-24430-9}
}
@article{10_1038_s41598-025-85175-z,
title = {An intelligent incentive-based demand response program for exhaustive environment constrained techno-economic analysis of microgrid system},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-85175-z},
url = {https://doi.org/10.1038/s41598-025-85175-z}
}
@article{10_1038_s41598-025-11561-2,
title = {Day-ahead economic dispatch of wind-integrated microgrids using coordinated energy storage and hybrid demand response strategies},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-11561-2},
url = {https://doi.org/10.1038/s41598-025-11561-2}
}
@article{10_1038_s41598-025-86232-3,
title = {Advanced microgrid optimization using price-elastic demand response and greedy rat swarm optimization for economic and environmental efficiency},
journal = {Scientific Reports},
year = {2025},
doi = {10.1038/s41598-025-86232-3},
url = {https://doi.org/10.1038/s41598-025-86232-3}
}
@article{10_1016_j_oneear_2024_11_013,
title = {Climate change, biodiversity, and the energy transition: The potential role of the UN’s declaration on peasants’ rights},
journal = {One Earth},
year = {2025},
doi = {10.1016/j.oneear.2024.11.013},
url = {https://doi.org/10.1016/j.oneear.2024.11.013}
}
@article{10_1016_j_oneear_2024_12_008,
title = {Co-deploying biochar and bioenergy with carbon capture and storage improves cost-effectiveness and sustainability of China’s carbon neutrality},
journal = {One Earth},
year = {2025},
doi = {10.1016/j.oneear.2024.12.008},
url = {https://doi.org/10.1016/j.oneear.2024.12.008}
}
@article{10_1016_j_crsus_2024_100303,
title = {Technoeconomic analysis of distributed energy resources for rapid deployment of the US national charging network},
journal = {Cell Reports Sustainability},
year = {2025},
doi = {10.1016/j.crsus.2024.100303},
url = {https://doi.org/10.1016/j.crsus.2024.100303}
}
@article{10_1016_j_crsus_2025_100423,
title = {Sustainability trade-offs across modeled floating solar waterscapes of the Northeastern United States},
journal = {Cell Reports Sustainability},
year = {2025},
doi = {10.1016/j.crsus.2025.100423},
url = {https://doi.org/10.1016/j.crsus.2025.100423}
}
@article{10_1016_j_crsus_2025_100339,
title = {Unit-level monitoring data reveal the effectiveness of China’s national emissions trading scheme},
journal = {Cell Reports Sustainability},
year = {2025},
doi = {10.1016/j.crsus.2025.100339},
url = {https://doi.org/10.1016/j.crsus.2025.100339}
}
@article{10_1016_j_crsus_2025_100408,
title = {Comparative techno-economic analysis of synthetic renewable natural gas production via reactive CO2 capture and conversion},
journal = {Cell Reports Sustainability},
year = {2025},
doi = {10.1016/j.crsus.2025.100408},
url = {https://doi.org/10.1016/j.crsus.2025.100408}
}
@article{10_1016_j_crsus_2025_100556,
title = {Sustainability challenges demand social science insights},
journal = {Cell Reports Sustainability},
year = {2025},
doi = {10.1016/j.crsus.2025.100556},
url = {https://doi.org/10.1016/j.crsus.2025.100556}
}
@article{10_1016_j_crsus_2025_100520,
title = {Rising sea level reduces carbon sequestration and CO2 and N2O fluxes while promoting CH4 flux from mangroves},
journal = {Cell Reports Sustainability},
year = {2025},
doi = {10.1016/j.crsus.2025.100520},
url = {https://doi.org/10.1016/j.crsus.2025.100520}
}
@article{10_1016_j_isci_2025_112781,
title = {Sustained growth in process-related greenhouse gas emissions undermines China’s mitigation efforts},
journal = {iScience},
year = {2025},
doi = {10.1016/j.isci.2025.112781},
url = {https://doi.org/10.1016/j.isci.2025.112781}
}
@article{10_1016_j_isci_2025_113132,
title = {Techno-economic analysis for a 100% renewable hybrid energy systems integration in a research facility in Morocco},
journal = {iScience},
year = {2025},
doi = {10.1016/j.isci.2025.113132},
url = {https://doi.org/10.1016/j.isci.2025.113132}
}
@article{10_1016_j_isci_2025_112493,
title = {Assessing the techno-economic benefits of LEMs for different grid topologies and prosumer shares},
journal = {iScience},
year = {2025},
doi = {10.1016/j.isci.2025.112493},
url = {https://doi.org/10.1016/j.isci.2025.112493}
}
@article{10_1016_j_isci_2025_111781,
title = {Translatable reporting of energy demand and rates in electrochemical carbon capture},
journal = {iScience},
year = {2025},
doi = {10.1016/j.isci.2025.111781},
url = {https://doi.org/10.1016/j.isci.2025.111781}
}
@article{10_1016_j_isci_2025_112121,
title = {A hybrid demand-side policy for balanced economic emission in microgrid systems},
journal = {iScience},
year = {2025},
doi = {10.1016/j.isci.2025.112121},
url = {https://doi.org/10.1016/j.isci.2025.112121}
}
@article{10_1126_sciadv_ads0836,
title = {A photovoltaic-electrolysis system with high solar-to-hydrogen efficiency under practical current densities},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.ads0836},
url = {https://doi.org/10.1126/sciadv.ads0836}
}
@article{10_1126_sciadv_adr5973,
title = {Ultrafast energy transfer beyond the Förster approximation in organic photovoltaic blends with non-fullerene acceptors},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adr5973},
url = {https://doi.org/10.1126/sciadv.adr5973}
}
@article{10_1126_sciadv_adx5580,
title = {The role of offshore wind and solar PV resources in global low-carbon transition},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adx5580},
url = {https://doi.org/10.1126/sciadv.adx5580}
}
@article{10_1126_sciadv_ady9164,
title = {Carbon catalysts for CO
<sub>2</sub>
conversion: From carbon emissions to zero-carbon solutions},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.ady9164},
url = {https://doi.org/10.1126/sciadv.ady9164}
}
@article{10_1126_sciadv_adn8819,
title = {Continued permafrost ecosystem carbon loss under net-zero and negative emissions},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adn8819},
url = {https://doi.org/10.1126/sciadv.adn8819}
}
@article{10_1126_sciadv_adz0440,
title = {Spatiotemporal toughness modulation in hydrogels through on-demand cross-linking},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adz0440},
url = {https://doi.org/10.1126/sciadv.adz0440}
}
@article{10_1126_sciadv_adr9239,
title = {On-demand heralded MIR single-photon source using a cascaded quantum system},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adr9239},
url = {https://doi.org/10.1126/sciadv.adr9239}
}
@article{10_1126_sciadv_adr3589,
title = {Decreasing importance of carbon-climate feedbacks in the Southern Ocean in a warming climate},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adr3589},
url = {https://doi.org/10.1126/sciadv.adr3589}
}
@article{10_1126_sciadv_adn7915,
title = {Climate mitigation potential for targeted forestation after considering climate change, fires, and albedo},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adn7915},
url = {https://doi.org/10.1126/sciadv.adn7915}
}
@article{10_1126_sciadv_adr9635,
title = {Volcanic emission of reduced sulfur species shaped the climate of early Mars},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adr9635},
url = {https://doi.org/10.1126/sciadv.adr9635}
}
@article{10_1126_sciadv_ado3440,
title = {<i>Ppp1r3b</i>
is a metabolic switch that shifts hepatic energy storage from lipid to glycogen},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.ado3440},
url = {https://doi.org/10.1126/sciadv.ado3440}
}
@article{10_1126_sciadv_adu9332,
title = {Crustal to mantle melt storage during the evolution of Hawaiian volcanoes},
journal = {Science Advances},
year = {2025},
doi = {10.1126/sciadv.adu9332},
url = {https://doi.org/10.1126/sciadv.adu9332}
}
@article{10_1038_s41597-024-03474-y,
title = {CaRDS - the statewide California Residential water Demand and Supply open dataset},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-03474-y},
url = {https://doi.org/10.1038/s41597-024-03474-y}
}
@article{10_1038_s41597-024-03509-4,
title = {A thermosurvey dataset: Older adults’ experiences and adaptation to urban heat and climate change},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-03509-4},
url = {https://doi.org/10.1038/s41597-024-03509-4}
}
@article{10_1038_s41597-024-03121-6,
title = {Emissions-weighted carbon price: sources and methods},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-03121-6},
url = {https://doi.org/10.1038/s41597-024-03121-6}
}
@article{10_1038_s41597-024-03201-7,
title = {A global dataset of carbon pumping by the world’s largest tropical rivers},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-03201-7},
url = {https://doi.org/10.1038/s41597-024-03201-7}
}
@article{10_1038_s41597-023-02867-9,
title = {A global dataset of biochar application effects on crop yield, soil properties, and greenhouse gas emissions},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-023-02867-9},
url = {https://doi.org/10.1038/s41597-023-02867-9}
}
@article{10_1038_s41597-024-03033-5,
title = {China’s low-carbon policy intensity dataset from national- to prefecture-level over 2007–2022},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-03033-5},
url = {https://doi.org/10.1038/s41597-024-03033-5}
}
@article{10_1038_s41597-024-03529-0,
title = {A comprehensive city-level final energy consumption dataset including renewable energy for China, 2005–2021},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-03529-0},
url = {https://doi.org/10.1038/s41597-024-03529-0}
}
@article{10_1038_s41597-024-02930-z,
title = {Urban water and electricity demand data for understanding climate change impacts on the water-energy nexus},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-02930-z},
url = {https://doi.org/10.1038/s41597-024-02930-z}
}
@article{10_1038_s41597-024-03304-1,
title = {A unified dataset for pre-processed climate indicators weighted by gridded economic activity},
journal = {Scientific Data},
year = {2024},
doi = {10.1038/s41597-024-03304-1},
url = {https://doi.org/10.1038/s41597-024-03304-1}
}
@article{10_1038_s41560-024-01545-3,
title = {Policy credibility is a key component for an effective and efficient EU Emissions Trading System},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01545-3},
url = {https://doi.org/10.1038/s41560-024-01545-3}
}
@article{10_1038_s41560-024-01649-w,
title = {US industrial policy may reduce electric vehicle battery supply chain vulnerabilities and influence technology choice},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01649-w},
url = {https://doi.org/10.1038/s41560-024-01649-w}
}
@article{10_1038_s41560-024-01666-9,
title = {A wind of change in sustainability},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01666-9},
url = {https://doi.org/10.1038/s41560-024-01666-9}
}
@article{10_1038_s41560-024-01617-4,
title = {Economic potential of wind and solar in American Indian communities},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01617-4},
url = {https://doi.org/10.1038/s41560-024-01617-4}
}
@article{10_1038_s41560-024-01516-8,
title = {Artificial intelligence-aided wind plant optimization for nationwide evaluation of land use and economic benefits of wake steering},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01516-8},
url = {https://doi.org/10.1038/s41560-024-01516-8}
}
@article{10_1038_s41560-024-01614-7,
title = {Non-aqueous alkoxide-mediated electrochemical carbon capture},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01614-7},
url = {https://doi.org/10.1038/s41560-024-01614-7}
}
@article{10_1038_s41560-024-01505-x,
title = {EU carbon prices signal high policy credibility and farsighted actors},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01505-x},
url = {https://doi.org/10.1038/s41560-024-01505-x}
}
@article{10_1038_s41560-024-01532-8,
title = {Large-scale spatially explicit analysis of carbon capture at cellulosic biorefineries},
journal = {Nature Energy},
year = {2024},
doi = {10.1038/s41560-024-01532-8},
url = {https://doi.org/10.1038/s41560-024-01532-8}
}
@article{10_1038_s41893-024-01425-4,
title = {Democratic discrepancies in urban sustainable development},
journal = {Nature Sustainability},
year = {2024},
doi = {10.1038/s41893-024-01425-4},
url = {https://doi.org/10.1038/s41893-024-01425-4}
}
@article{10_1038_s41893-024-01420-9,
title = {Oversimplification and misestimation of nitrous oxide emissions from wastewater treatment plants},
journal = {Nature Sustainability},
year = {2024},
doi = {10.1038/s41893-024-01420-9},
url = {https://doi.org/10.1038/s41893-024-01420-9}
}
@article{10_1038_s41893-024-01442-3,
title = {A renewable and socially accepted energy system for astronomical telescopes},
journal = {Nature Sustainability},
year = {2024},
doi = {10.1038/s41893-024-01442-3},
url = {https://doi.org/10.1038/s41893-024-01442-3}
}
@article{10_1038_s41467-024-46826-3,
title = {The potential of urban irrigation for counteracting carbon-climate feedback},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-46826-3},
url = {https://doi.org/10.1038/s41467-024-46826-3}
}
@article{10_1038_s41467-024-50088-4,
title = {Potential of artificial intelligence in reducing energy and carbon emissions of commercial buildings at scale},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-50088-4},
url = {https://doi.org/10.1038/s41467-024-50088-4}
}
@article{10_1038_s41467-024-54039-x,
title = {Estimating countries’ additional carbon accountability for closing the mitigation gap based on past and future emissions},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-54039-x},
url = {https://doi.org/10.1038/s41467-024-54039-x}
}
@article{10_1038_s41467-024-49502-8,
title = {Mutual reinforcement of land-based carbon dioxide removal and international emissions trading in deep decarbonization scenarios},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-49502-8},
url = {https://doi.org/10.1038/s41467-024-49502-8}
}
@article{10_1038_s41467-024-55438-w,
title = {Author Correction: Estimating countries’ additional carbon accountability for closing the mitigation gap based on past and future emissions},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-55438-w},
url = {https://doi.org/10.1038/s41467-024-55438-w}
}
@article{10_1038_s41467-024-54626-y,
title = {A blockchain consensus mechanism for real-time regulation of renewable energy power systems},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-54626-y},
url = {https://doi.org/10.1038/s41467-024-54626-y}
}
@article{10_1038_s41467-024-46511-5,
title = {A multi-demand operating system underlying diverse cognitive tasks},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-46511-5},
url = {https://doi.org/10.1038/s41467-024-46511-5}
}
@article{10_1038_s41467-024-49868-9,
title = {An electricity-driven mobility circular economy with lifecycle carbon footprints for climate-adaptive carbon neutrality transformation},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-49868-9},
url = {https://doi.org/10.1038/s41467-024-49868-9}
}
@article{10_1038_s41467-024-51251-7,
title = {Future hydrogen economies imply environmental trade-offs and a supply-demand mismatch},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-51251-7},
url = {https://doi.org/10.1038/s41467-024-51251-7}
}
@article{10_1038_s41467-024-50091-9,
title = {Unlocking the potential of biogas systems for energy production and climate solutions in rural communities},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-50091-9},
url = {https://doi.org/10.1038/s41467-024-50091-9}
}
@article{10_1038_s41467-024-47656-z,
title = {Speed of environmental change frames relative ecological risk in climate change and climate intervention scenarios},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-47656-z},
url = {https://doi.org/10.1038/s41467-024-47656-z}
}
@article{10_1038_s41467-024-53644-0,
title = {How grid reinforcement costs differ by the income of electric vehicle users},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-53644-0},
url = {https://doi.org/10.1038/s41467-024-53644-0}
}
@article{10_1038_s41467-024-48554-0,
title = {On the potential of vehicle-to-grid and second-life batteries to provide energy and material security},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-48554-0},
url = {https://doi.org/10.1038/s41467-024-48554-0}
}
@article{10_1038_s41467-024-51554-9,
title = {Effects of electric vehicle charging stations on the economic vitality of local businesses},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-51554-9},
url = {https://doi.org/10.1038/s41467-024-51554-9}
}
@article{10_1038_s41467-024-50040-6,
title = {Offshore wind and wave energy can reduce total installed capacity required in zero-emissions grids},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-50040-6},
url = {https://doi.org/10.1038/s41467-024-50040-6}
}
@article{10_1038_s41467-024-53557-y,
title = {Competing effects of wind and buoyancy forcing on ocean oxygen trends in recent decades},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-53557-y},
url = {https://doi.org/10.1038/s41467-024-53557-y}
}
@article{10_1038_s41467-024-45677-2,
title = {Historical changes in wind-driven ocean circulation drive pattern of Pacific warming},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-45677-2},
url = {https://doi.org/10.1038/s41467-024-45677-2}
}
@article{10_1038_s41467-024-50978-7,
title = {Efficient energy conversion mechanism and energy storage strategy for triboelectric nanogenerators},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-50978-7},
url = {https://doi.org/10.1038/s41467-024-50978-7}
}
@article{10_1038_s41467-024-54634-y,
title = {Carbon footprint distributions of lithium-ion batteries and their materials},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-54634-y},
url = {https://doi.org/10.1038/s41467-024-54634-y}
}
@article{10_1038_s41467-024-51769-w,
title = {An economic demand-based framework for prioritization strategies in response to transient amino acid limitations},
journal = {Nature Communications},
year = {2024},
doi = {10.1038/s41467-024-51769-w},
url = {https://doi.org/10.1038/s41467-024-51769-w}
}
@article{10_1038_s41558-024-01978-4,
title = {Climate change will impact the value and optimal adoption of residential rooftop solar},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-01978-4},
url = {https://doi.org/10.1038/s41558-024-01978-4}
}
@article{10_1038_s41558-024-02162-4,
title = {Assessing the impacts of fertility and retirement policies on China’s carbon emissions},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-02162-4},
url = {https://doi.org/10.1038/s41558-024-02162-4}
}
@article{10_1038_s41558-024-02148-2,
title = {How demand-side mitigation can help shape effective climate policies},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-02148-2},
url = {https://doi.org/10.1038/s41558-024-02148-2}
}
@article{10_1038_s41558-024-02146-4,
title = {Using cost–benefit analyses to identify key opportunities in demand-side mitigation},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-02146-4},
url = {https://doi.org/10.1038/s41558-024-02146-4}
}
@article{10_1038_s41558-024-02092-1,
title = {The role of electric grid research in addressing climate change},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-02092-1},
url = {https://doi.org/10.1038/s41558-024-02092-1}
}
@article{10_1038_s41558-024-02112-0,
title = {Major step up in carbon capture and storage needed to keep warming below 2 °C},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-02112-0},
url = {https://doi.org/10.1038/s41558-024-02112-0}
}
@article{10_1038_s41558-024-02023-0,
title = {Cross-border CO2 transport decreases public acceptance of carbon capture and storage},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-02023-0},
url = {https://doi.org/10.1038/s41558-024-02023-0}
}
@article{10_1038_s41558-024-02104-0,
title = {Feasible deployment of carbon capture and storage and the requirements of climate targets},
journal = {Nature Climate Change},
year = {2024},
doi = {10.1038/s41558-024-02104-0},
url = {https://doi.org/10.1038/s41558-024-02104-0}
}
@article{10_1093_pnasnexus_pgae091,
title = {Ubiquitous filter feeders shape open ocean microbial community structure and function},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae091},
url = {https://doi.org/10.1093/pnasnexus/pgae091}
}
@article{10_1093_pnasnexus_pgae030,
title = {The role of advanced nuclear reactors and fuel cycles in a future energy system},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae030},
url = {https://doi.org/10.1093/pnasnexus/pgae030}
}
@article{10_1093_pnasnexus_pgae427,
title = {Quantifying energy transition vulnerability helps more just and inclusive decarbonization},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae427},
url = {https://doi.org/10.1093/pnasnexus/pgae427}
}
@article{10_1093_pnasnexus_pgae028,
title = {Food–energy–water nexus optimization brings substantial reduction of urban resource consumption and greenhouse gas emissions},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae028},
url = {https://doi.org/10.1093/pnasnexus/pgae028}
}
@article{10_1093_pnasnexus_pgae360,
title = {Prioritizing social vulnerability in urban heat mitigation},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae360},
url = {https://doi.org/10.1093/pnasnexus/pgae360}
}
@article{10_1093_pnasnexus_pgae172,
title = {Incorporating platinum circular economy into China’s hydrogen pathways toward carbon neutrality},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae172},
url = {https://doi.org/10.1093/pnasnexus/pgae172}
}
@article{10_1093_pnasnexus_pgae351,
title = {China's progress in synergetic governance of climate change and multiple environmental issues},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae351},
url = {https://doi.org/10.1093/pnasnexus/pgae351}
}
@article{10_1093_pnasnexus_pgae389,
title = {Deciphering the variability in air-sea gas transfer due to sea state and wind history},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae389},
url = {https://doi.org/10.1093/pnasnexus/pgae389}
}
@article{10_1093_pnasnexus_pgae594,
title = {Enhancing molecular oxygen activation by nitrogen-doped carbon encapsulating FeNi alloys with ultra-low Pt loading},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae594},
url = {https://doi.org/10.1093/pnasnexus/pgae594}
}
@article{10_1093_pnasnexus_pgae081,
title = {Release of ballast material during sea-ice melt enhances carbon export in the Arctic Ocean},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae081},
url = {https://doi.org/10.1093/pnasnexus/pgae081}
}
@article{10_1093_pnasnexus_pgae388,
title = {An integrated experimental–modeling approach to identify key processes for carbon mineralization in fractured mafic and ultramafic rocks},
journal = {npj Clean Energy},
year = {2024},
doi = {10.1093/pnasnexus/pgae388},
url = {https://doi.org/10.1093/pnasnexus/pgae388}
}
@article{10_1038_s44284-024-00035-7,
title = {Green roofs save energy in cities and fight regional climate change},
journal = {Nature Cities},
year = {2024},
doi = {10.1038/s44284-024-00035-7},
url = {https://doi.org/10.1038/s44284-024-00035-7}
}
@article{10_1038_s44284-023-00005-5,
title = {Quantifying the energy impact of heat mitigation technologies at the urban scale},
journal = {Nature Cities},
year = {2024},
doi = {10.1038/s44284-023-00005-5},
url = {https://doi.org/10.1038/s44284-023-00005-5}
}
@article{10_1038_s44284-024-00070-4,
title = {Cities as carbon sinks can also provide additional mitigation and adaptation co-benefits},
journal = {Nature Cities},
year = {2024},
doi = {10.1038/s44284-024-00070-4},
url = {https://doi.org/10.1038/s44284-024-00070-4}
}
@article{10_1038_s44284-024-00088-8,
title = {Outsourced carbon mitigation efforts of Chinese cities from 2012 to 2017},
journal = {Nature Cities},
year = {2024},
doi = {10.1038/s44284-024-00088-8},
url = {https://doi.org/10.1038/s44284-024-00088-8}
}
@article{10_1038_s44284-024-00052-6,
title = {Early engagement and co-benefits strengthen cities’ climate commitments},
journal = {Nature Cities},
year = {2024},
doi = {10.1038/s44284-024-00052-6},
url = {https://doi.org/10.1038/s44284-024-00052-6}
}
@article{10_1038_s41598-024-70729-4,
title = {Active learning-based machine learning approach for enhancing environmental sustainability in green building energy consumption},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-70729-4},
url = {https://doi.org/10.1038/s41598-024-70729-4}
}
@article{10_1038_s41598-024-81836-7,
title = {Urban Water-Energy consumption Prediction Influenced by Climate Change utilizing an innovative deep learning method},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-81836-7},
url = {https://doi.org/10.1038/s41598-024-81836-7}
}
@article{10_1038_s41598-024-70260-6,
title = {The impact of the European Union emissions trading system on carbon dioxide emissions: a matrix completion analysis},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-70260-6},
url = {https://doi.org/10.1038/s41598-024-70260-6}
}
@article{10_1038_s41598-024-59531-4,
title = {Research on coupling optimization of carbon emissions and carbon leakage in international construction projects},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-59531-4},
url = {https://doi.org/10.1038/s41598-024-59531-4}
}
@article{10_1038_s41598-024-58262-w,
title = {Studying tourism development and its impact on carbon emissions},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-58262-w},
url = {https://doi.org/10.1038/s41598-024-58262-w}
}
@article{10_1038_s41598-024-55868-y,
title = {The trajectory of carbon emissions and terrestrial carbon sinks at the provincial level in China},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-55868-y},
url = {https://doi.org/10.1038/s41598-024-55868-y}
}
@article{10_1038_s41598-024-59081-9,
title = {Digital inclusive finance, green technological innovation, and carbon emissions from a spatial perspective},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-59081-9},
url = {https://doi.org/10.1038/s41598-024-59081-9}
}
@article{10_1038_s41598-024-56434-2,
title = {Determinants and their spatial heterogeneity of carbon emissions in resource-based cities, China},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-56434-2},
url = {https://doi.org/10.1038/s41598-024-56434-2}
}
@article{10_1038_s41598-024-57471-7,
title = {Reshaping the energy landscape of Crete through renewable energy valleys},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-57471-7},
url = {https://doi.org/10.1038/s41598-024-57471-7}
}
@article{10_1038_s41598-024-81173-9,
title = {Assessing the impact of renewable energy integration on energy efficiency within the China-Pakistan economic corridor (CPEC)},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-81173-9},
url = {https://doi.org/10.1038/s41598-024-81173-9}
}
@article{10_1038_s41598-024-73679-z,
title = {Enhancing environmental quality and economic growth through potential effects of energy efficiency and renewable energy in Asian economies},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-73679-z},
url = {https://doi.org/10.1038/s41598-024-73679-z}
}
@article{10_1038_s41598-024-54007-x,
title = {Limited increases in Arctic offshore oil and gas production with climate change and the implications for energy markets},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-54007-x},
url = {https://doi.org/10.1038/s41598-024-54007-x}
}
@article{10_1038_s41598-024-59473-x,
title = {Construction of power network security risk assessment model based on LSA-SVM algorithm in the background of smart grid},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-59473-x},
url = {https://doi.org/10.1038/s41598-024-59473-x}
}
@article{10_1038_s41598-024-66107-9,
title = {Integrated nutrient management on oat + grasspea intercropping system: an evaluation of system productivity, economics, energetics and carbon footprint},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-66107-9},
url = {https://doi.org/10.1038/s41598-024-66107-9}
}
@article{10_1038_s41598-024-72706-3,
title = {A Multi-Layer Techno-Economic-Environmental Energy Management Optimization in Cooperative Multi-Microgrids with Demand Response Program and Uncertainties Consideration},
journal = {Scientific Reports},
year = {2024},
doi = {10.1038/s41598-024-72706-3},
url = {https://doi.org/10.1038/s41598-024-72706-3}
}
@article{10_1016_j_joule_2024_06_006,
title = {Cost-efficient recycling of organic photovoltaic devices},
journal = {Joule},
year = {2024},
doi = {10.1016/j.joule.2024.06.006},
url = {https://doi.org/10.1016/j.joule.2024.06.006}
}
@article{10_1016_j_joule_2023_12_002,
title = {The importance of dynamic operation and renewable energy source on the economic feasibility of green ammonia},
journal = {Joule},
year = {2024},
doi = {10.1016/j.joule.2023.12.002},
url = {https://doi.org/10.1016/j.joule.2023.12.002}
}
@article{10_1016_j_joule_2024_03_015,
title = {A taxonomy to guide the next generation of support mechanisms for electricity storage},
journal = {Joule},
year = {2024},
doi = {10.1016/j.joule.2024.03.015},
url = {https://doi.org/10.1016/j.joule.2024.03.015}
}
@article{10_1016_j_oneear_2024_09_002,
title = {Hope and hype for negative emissions},
journal = {One Earth},
year = {2024},
doi = {10.1016/j.oneear.2024.09.002},
url = {https://doi.org/10.1016/j.oneear.2024.09.002}
}
@article{10_1016_j_oneear_2023_11_013,
title = {Robust projections of increasing land carbon storage in boreal and temperate forests under future climate change scenarios},
journal = {One Earth},
year = {2024},
doi = {10.1016/j.oneear.2023.11.013},
url = {https://doi.org/10.1016/j.oneear.2023.11.013}
}
@article{10_1016_j_oneear_2024_11_005,
title = {One-tenth of the EU’s sustainable biomethane coupled with carbon capture and storage can enable net-zero ammonia production},
journal = {One Earth},
year = {2024},
doi = {10.1016/j.oneear.2024.11.005},
url = {https://doi.org/10.1016/j.oneear.2024.11.005}
}
@article{10_1016_j_crsus_2023_100007,
title = {A techno-economic survey of energy storage media for long-duration energy storage applications},
journal = {Cell Reports Sustainability},
year = {2024},
doi = {10.1016/j.crsus.2023.100007},
url = {https://doi.org/10.1016/j.crsus.2023.100007}
}
@article{10_1016_j_crsus_2024_100151,
title = {Geospatial techno-economic and environmental assessment of different energy options for solid sorbent direct air capture},
journal = {Cell Reports Sustainability},
year = {2024},
doi = {10.1016/j.crsus.2024.100151},
url = {https://doi.org/10.1016/j.crsus.2024.100151}
}
@article{10_1016_j_crsus_2024_100268,
title = {An empirical agent-based model of consumer co-adoption of low-carbon technologies to inform energy policy},
journal = {Cell Reports Sustainability},
year = {2024},
doi = {10.1016/j.crsus.2024.100268},
url = {https://doi.org/10.1016/j.crsus.2024.100268}
}
@article{10_1016_j_crsus_2024_100126,
title = {The role of negative emissions technologies in the UK’s net-zero strategy},
journal = {Cell Reports Sustainability},
year = {2024},
doi = {10.1016/j.crsus.2024.100126},
url = {https://doi.org/10.1016/j.crsus.2024.100126}
}
@article{10_1016_j_crsus_2024_100179,
title = {Future soil organic carbon stocks in China under climate change},
journal = {Cell Reports Sustainability},
year = {2024},
doi = {10.1016/j.crsus.2024.100179},
url = {https://doi.org/10.1016/j.crsus.2024.100179}
}
@article{10_1016_j_isci_2024_110691,
title = {Seasonal hydrogen energy storage sizing: Two-stage economic-safety optimization for integrated energy systems in northwest China},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.110691},
url = {https://doi.org/10.1016/j.isci.2024.110691}
}
@article{10_1016_j_isci_2024_110311,
title = {Examining urban resilience through a food-water-energy nexus lens to understand the effects of climate change},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.110311},
url = {https://doi.org/10.1016/j.isci.2024.110311}
}
@article{10_1016_j_isci_2024_110054,
title = {Deep mitigation for trade-embodied carbon emissions among the Belt and Road Initiative countries},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.110054},
url = {https://doi.org/10.1016/j.isci.2024.110054}
}
@article{10_1016_j_isci_2024_109897,
title = {Actual cost of electricity: An economic index to overcome levelized cost of electricity limits},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.109897},
url = {https://doi.org/10.1016/j.isci.2024.109897}
}
@article{10_1016_j_isci_2024_109554,
title = {Infrastructure adequacy for electricity trading in East Africa},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.109554},
url = {https://doi.org/10.1016/j.isci.2024.109554}
}
@article{10_1016_j_isci_2024_111062,
title = {Wind and solar energy in Small Island Developing States for mitigating global climate change},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.111062},
url = {https://doi.org/10.1016/j.isci.2024.111062}
}
@article{10_1016_j_isci_2024_110232,
title = {Sustainable bioenergy contributes to cost-effective climate change mitigation in China},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.110232},
url = {https://doi.org/10.1016/j.isci.2024.110232}
}
@article{10_1016_j_isci_2024_108975,
title = {Changing economics of China’s power system suggest that batteries and renewables may be a lower cost way to meet peak demand growth than coal},
journal = {iScience},
year = {2024},
doi = {10.1016/j.isci.2024.108975},
url = {https://doi.org/10.1016/j.isci.2024.108975}
}
@article{10_1126_sciadv_adn8544,
title = {PM
<sub>2.5</sub>
exposure disparities persist despite strict vehicle emissions controls in California},
journal = {Science Advances},
year = {2024},
doi = {10.1126/sciadv.adn8544},
url = {https://doi.org/10.1126/sciadv.adn8544}
}
@article{10_1126_sciadv_adn5217,
title = {Climate sensitivity and relative humidity changes in global storm-resolving model simulations of climate change},
journal = {Science Advances},
year = {2024},
doi = {10.1126/sciadv.adn5217},
url = {https://doi.org/10.1126/sciadv.adn5217}
}
@article{10_1126_sciadv_adl1079,
title = {Precision and bias of carbon storage estimations in wetland and mangrove sediments},
journal = {Science Advances},
year = {2024},
doi = {10.1126/sciadv.adl1079},
url = {https://doi.org/10.1126/sciadv.adl1079}
}
@article{10_1038_s41597-023-02544-x,
title = {Points for energy renovation (PointER): A point cloud dataset of a million buildings linked to energy features},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-02544-x},
url = {https://doi.org/10.1038/s41597-023-02544-x}
}
@article{10_1038_s41597-023-02466-8,
title = {Chinese electricity-focused input-output dataset with detailed coal power and alternative energy for 2018},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-02466-8},
url = {https://doi.org/10.1038/s41597-023-02466-8}
}
@article{10_1038_s41597-023-02448-w,
title = {A Dataset for Electricity Market Studies on Western and Northeastern Power Grids in the United States},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-02448-w},
url = {https://doi.org/10.1038/s41597-023-02448-w}
}
@article{10_1038_s41597-023-02271-3,
title = {A synthetic dataset of Danish residential electricity prosumers},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-02271-3},
url = {https://doi.org/10.1038/s41597-023-02271-3}
}
@article{10_1038_s41597-023-02708-9,
title = {A Large Ensemble Global Dataset for Climate Impact Assessments},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-02708-9},
url = {https://doi.org/10.1038/s41597-023-02708-9}
}
@article{10_1038_s41597-023-01956-z,
title = {CLIMBra - Climate Change Dataset for Brazil},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-01956-z},
url = {https://doi.org/10.1038/s41597-023-01956-z}
}
@article{10_1038_s41597-023-01991-w,
title = {A 21-year dataset (2000–2020) of gap-free global daily surface soil moisture at 1-km grid resolution},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-01991-w},
url = {https://doi.org/10.1038/s41597-023-01991-w}
}
@article{10_1038_s41597-023-02754-3,
title = {Positron emission tomography dataset of [11C]carbon dioxide storage in coal for geo-sequestration application},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-02754-3},
url = {https://doi.org/10.1038/s41597-023-02754-3}
}
@article{10_1038_s41597-023-02815-7,
title = {A dataset of low-carbon energy transition index for Chinese cities 2003–2019},
journal = {Scientific Data},
year = {2023},
doi = {10.1038/s41597-023-02815-7},
url = {https://doi.org/10.1038/s41597-023-02815-7}
}
@article{10_1038_s41560-023-01313-9,
title = {Mechanisms for improved open-circuit voltage in ternary organic solar cells},
journal = {Nature Energy},
year = {2023},
doi = {10.1038/s41560-023-01313-9},
url = {https://doi.org/10.1038/s41560-023-01313-9}
}
@article{10_1038_s41560-023-01232-9,
title = {Challenges resulting from urban density and climate change for the EU energy transition},
journal = {Nature Energy},
year = {2023},
doi = {10.1038/s41560-023-01232-9},
url = {https://doi.org/10.1038/s41560-023-01232-9}
}
@article{10_1038_s41560-023-01304-w,
title = {Climate change impacts on planned supply–demand match in global wind and solar energy systems},
journal = {Nature Energy},
year = {2023},
doi = {10.1038/s41560-023-01304-w},
url = {https://doi.org/10.1038/s41560-023-01304-w}
}
@article{10_1038_s41560-023-01355-z,
title = {Energy consumption of current and future production of lithium-ion and post lithium-ion battery cells},
journal = {Nature Energy},
year = {2023},
doi = {10.1038/s41560-023-01355-z},
url = {https://doi.org/10.1038/s41560-023-01355-z}
}
@article{10_1038_s41893-022-01033-0,
title = {Designing diversified renewable energy systems to balance multisector performance},
journal = {Nature Sustainability},
year = {2023},
doi = {10.1038/s41893-022-01033-0},
url = {https://doi.org/10.1038/s41893-022-01033-0}
}
@article{10_1038_s41893-022-01056-7,
title = {Afforesting arid land with renewable electricity and desalination to mitigate climate change},
journal = {Nature Sustainability},
year = {2023},
doi = {10.1038/s41893-022-01056-7},
url = {https://doi.org/10.1038/s41893-022-01056-7}
}
@article{10_1038_s41893-022-01038-9,
title = {Biogas production in United States dairy farms incentivized by electricity policy changes},
journal = {Nature Sustainability},
year = {2023},
doi = {10.1038/s41893-022-01038-9},
url = {https://doi.org/10.1038/s41893-022-01038-9}
}
@article{10_1038_s41893-023-01066-z,
title = {Looking for massive carbon capture},
journal = {Nature Sustainability},
year = {2023},
doi = {10.1038/s41893-023-01066-z},
url = {https://doi.org/10.1038/s41893-023-01066-z}
}
@article{10_1038_s41467-023-42529-3,
title = {Prolonged hydrogen production by engineered green algae photovoltaic power stations},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-42529-3},
url = {https://doi.org/10.1038/s41467-023-42529-3}
}
@article{10_1038_s41467-023-41458-5,
title = {Impacts of climate change, population growth, and power sector decarbonization on urban building energy use},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-41458-5},
url = {https://doi.org/10.1038/s41467-023-41458-5}
}
@article{10_1038_s41467-023-37728-x,
title = {The effect of sustainable mobility transition policies on cumulative urban transport emissions and energy demand},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-37728-x},
url = {https://doi.org/10.1038/s41467-023-37728-x}
}
@article{10_1038_s41467-023-42111-x,
title = {Warming proportional to cumulative carbon emissions not explained by heat and carbon sharing mixing processes},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-42111-x},
url = {https://doi.org/10.1038/s41467-023-42111-x}
}
@article{10_1038_s41467-023-43660-x,
title = {Projecting future carbon emissions from cement production in developing countries},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-43660-x},
url = {https://doi.org/10.1038/s41467-023-43660-x}
}
@article{10_1038_s41467-023-44049-6,
title = {Limitations to sustainable renewable jet fuels production attributed to cost than energy-water-food resource availability},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-44049-6},
url = {https://doi.org/10.1038/s41467-023-44049-6}
}
@article{10_1038_s41467-023-39791-w,
title = {2D MXenes polar catalysts for multi-renewable energy harvesting applications},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-39791-w},
url = {https://doi.org/10.1038/s41467-023-39791-w}
}
@article{10_1038_s41467-023-40356-0,
title = {The contribution of corporate initiatives to global renewable electricity deployment},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-40356-0},
url = {https://doi.org/10.1038/s41467-023-40356-0}
}
@article{10_1038_s41467-023-41875-6,
title = {Meteorological drivers of resource adequacy failures in current and high renewable Western U.S. power systems},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-41875-6},
url = {https://doi.org/10.1038/s41467-023-41875-6}
}
@article{10_1038_s41467-023-40560-y,
title = {How climate policy commitments influence energy systems and the economies of US states},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-40560-y},
url = {https://doi.org/10.1038/s41467-023-40560-y}
}
@article{10_1038_s41467-023-42925-9,
title = {The asymmetric effects of climate risk on higher-moment connectedness among carbon, energy and metals markets},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-42925-9},
url = {https://doi.org/10.1038/s41467-023-42925-9}
}
@article{10_1038_s41467-023-38182-5,
title = {Hidden delays of climate mitigation benefits in the race for electric vehicle deployment},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-38182-5},
url = {https://doi.org/10.1038/s41467-023-38182-5}
}
@article{10_1038_s41467-023-41107-x,
title = {Global land and water limits to electrolytic hydrogen production using wind and solar resources},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-41107-x},
url = {https://doi.org/10.1038/s41467-023-41107-x}
}
@article{10_1038_s41467-023-41992-2,
title = {Rebound effects undermine carbon footprint reduction potential of autonomous electric vehicles},
journal = {Nature Communications},
year = {2023},
doi = {10.1038/s41467-023-41992-2},
url = {https://doi.org/10.1038/s41467-023-41992-2}
}
@article{10_1038_s41558-023-01759-5,
title = {Climate change exacerbates snow-water-energy challenges for European ski tourism},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01759-5},
url = {https://doi.org/10.1038/s41558-023-01759-5}
}
@article{10_1038_s41558-023-01737-x,
title = {Contribution of prioritized urban nature-based solutions allocation to carbon neutrality},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01737-x},
url = {https://doi.org/10.1038/s41558-023-01737-x}
}
@article{10_1038_s41558-023-01756-8,
title = {Retrofitted carbon capture and storage for negative emissions in China’s co-firing plants},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01756-8},
url = {https://doi.org/10.1038/s41558-023-01756-8}
}
@article{10_1038_s41558-023-01736-y,
title = {Co-firing plants with retrofitted carbon capture and storage for power-sector emissions mitigation},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01736-y},
url = {https://doi.org/10.1038/s41558-023-01736-y}
}
@article{10_1038_s41558-023-01606-7,
title = {Carbon emissions and economic impacts of an EU embargo on Russian fossil fuels},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01606-7},
url = {https://doi.org/10.1038/s41558-023-01606-7}
}
@article{10_1038_s41558-023-01729-x,
title = {Author Correction: Widespread shift from ecosystem energy to water limitation with climate change},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01729-x},
url = {https://doi.org/10.1038/s41558-023-01729-x}
}
@article{10_1038_s41558-023-01695-4,
title = {Slowdown of Antarctic Bottom Water export driven by climatic wind and sea-ice changes},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01695-4},
url = {https://doi.org/10.1038/s41558-023-01695-4}
}
@article{10_1038_s41558-023-01605-8,
title = {Future warming from global food consumption},
journal = {Nature Climate Change},
year = {2023},
doi = {10.1038/s41558-023-01605-8},
url = {https://doi.org/10.1038/s41558-023-01605-8}
}
@article{10_1093_pnasnexus_pgad321,
title = {Probabilistic projections of granular energy technology diffusion at subnational level},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad321},
url = {https://doi.org/10.1093/pnasnexus/pgad321}
}
@article{10_1093_pnasnexus_pgad269,
title = {Membrane free-energy landscapes derived from atomistic dynamics explain nonuniversal cholesterol-induced stiffening},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad269},
url = {https://doi.org/10.1093/pnasnexus/pgad269}
}
@article{10_1093_pnasnexus_pgad178,
title = {Pore formation driven by particle impact in laser powder-blown directed energy deposition},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad178},
url = {https://doi.org/10.1093/pnasnexus/pgad178}
}
@article{10_1093_pnasnexus_pgad352,
title = {Photovoltaic fields largely outperform afforestation efficiency in global climate change mitigation strategies},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad352},
url = {https://doi.org/10.1093/pnasnexus/pgad352}
}
@article{10_1093_pnasnexus_pgad391,
title = {Observing network effect of shipping emissions from space: A natural experiment in the world’s busiest port},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad391},
url = {https://doi.org/10.1093/pnasnexus/pgad391}
}
@article{10_1093_pnasnexus_pgad052,
title = {Cementing CO2 into C-S-H: A step toward concrete carbon neutrality},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad052},
url = {https://doi.org/10.1093/pnasnexus/pgad052}
}
@article{10_1093_pnasnexus_pgad209,
title = {Implementation of carbon pricing in an aging world calls for targeted protection schemes},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad209},
url = {https://doi.org/10.1093/pnasnexus/pgad209}
}
@article{10_1093_pnasnexus_pgad345,
title = {Near-term investments in forest management support long-term carbon sequestration capacity in forests of the United States},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad345},
url = {https://doi.org/10.1093/pnasnexus/pgad345}
}
@article{10_1093_pnasnexus_pgad117,
title = {Solutions to agricultural green water scarcity under climate change},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad117},
url = {https://doi.org/10.1093/pnasnexus/pgad117}
}
@article{10_1093_pnasnexus_pgad448,
title = {Environmental problem shifting from climate change mitigation: A mapping review},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad448},
url = {https://doi.org/10.1093/pnasnexus/pgad448}
}
@article{10_1093_pnasnexus_pgad057,
title = {Increase in grain production potential of China under climate change},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad057},
url = {https://doi.org/10.1093/pnasnexus/pgad057}
}
@article{10_1093_pnasnexus_pgad123,
title = {Multisectoral drivers of decarbonizing battery electric vehicles in China},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad123},
url = {https://doi.org/10.1093/pnasnexus/pgad123}
}
@article{10_1093_pnasnexus_pgad019,
title = {Flying cars economically favor battery electric over fuel cell and internal combustion engine},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad019},
url = {https://doi.org/10.1093/pnasnexus/pgad019}
}
@article{10_1093_pnasnexus_pgad059,
title = {New estimates of the storage permanence and ocean co-benefits of enhanced rock weathering},
journal = {npj Clean Energy},
year = {2023},
doi = {10.1093/pnasnexus/pgad059},
url = {https://doi.org/10.1093/pnasnexus/pgad059}
}
@article{10_1038_s41598-023-42520-4,
title = {The impact of China’s energy saving and emission reduction demonstration city policy on urban green technology innovation},
journal = {Scientific Reports},
year = {2023},
doi = {10.1038/s41598-023-42520-4},
url = {https://doi.org/10.1038/s41598-023-42520-4}
}
@article{10_1038_s41598-023-47370-8,
title = {Spatial correlation network structure of energy-environment efficiency and its driving factors: a case study of the Yangtze River Delta Urban Agglomeration},
journal = {Scientific Reports},
year = {2023},
doi = {10.1038/s41598-023-47370-8},
url = {https://doi.org/10.1038/s41598-023-47370-8}
}
@article{10_1038_s41598-023-31469-z,
title = {Air-conditioning adoption and electricity demand highlight climate change mitigation–adaptation tradeoffs},
journal = {Scientific Reports},
year = {2023},
doi = {10.1038/s41598-023-31469-z},
url = {https://doi.org/10.1038/s41598-023-31469-z}
}
@article{10_1038_s41598-023-33133-y,
title = {Interrelationships between urban travel demand and electricity consumption: a deep learning approach},
journal = {Scientific Reports},
year = {2023},
doi = {10.1038/s41598-023-33133-y},
url = {https://doi.org/10.1038/s41598-023-33133-y}
}
@article{10_1038_s41598-023-32705-2,
title = {EU climate action through an energy poverty lens},
journal = {Scientific Reports},
year = {2023},
doi = {10.1038/s41598-023-32705-2},
url = {https://doi.org/10.1038/s41598-023-32705-2}
}
@article{10_1038_s41598-022-25845-4,
title = {Blending controlled-release urea and urea under ridge-furrow with plastic film mulching improves yield while mitigating carbon footprint in rainfed potato},
journal = {Scientific Reports},
year = {2023},
doi = {10.1038/s41598-022-25845-4},
url = {https://doi.org/10.1038/s41598-022-25845-4}
}
@article{10_1038_s41598-023-28368-8,
title = {Household energy-saving behavior, its consumption, and life satisfaction in 37 countries},
journal = {Scientific Reports},
year = {2023},
doi = {10.1038/s41598-023-28368-8},
url = {https://doi.org/10.1038/s41598-023-28368-8}
}
@article{10_1016_j_joule_2023_05_010,
title = {On the origin of carbon sources in the electrochemical upgrade of CO2 from carbon capture solutions},
journal = {Joule},
year = {2023},
doi = {10.1016/j.joule.2023.05.010},
url = {https://doi.org/10.1016/j.joule.2023.05.010}
}
@article{10_1016_j_joule_2023_01_001,
title = {Future demand for electricity generation materials under different climate mitigation scenarios},
journal = {Joule},
year = {2023},
doi = {10.1016/j.joule.2023.01.001},
url = {https://doi.org/10.1016/j.joule.2023.01.001}
}
@article{10_1016_j_joule_2023_05_015,
title = {Trading rights to consume wind in presence of farm-farm interactions},
journal = {Joule},
year = {2023},
doi = {10.1016/j.joule.2023.05.015},
url = {https://doi.org/10.1016/j.joule.2023.05.015}
}
@article{10_1016_j_oneear_2023_06_005,
title = {Alternative, but expensive, energy transition scenario featuring carbon capture and utilization can preserve existing energy demand technologies},
journal = {One Earth},
year = {2023},
doi = {10.1016/j.oneear.2023.06.005},
url = {https://doi.org/10.1016/j.oneear.2023.06.005}
}
@article{10_1016_j_oneear_2023_09_004,
title = {Solar geoengineering and carbon removal significantly lower economic climate damages},
journal = {One Earth},
year = {2023},
doi = {10.1016/j.oneear.2023.09.004},
url = {https://doi.org/10.1016/j.oneear.2023.09.004}
}
@article{10_1016_j_oneear_2023_03_012,
title = {Demand-side emission reduction through behavior change or technology adoption? Empirical evidence from UK heating, mobility, and electricity use},
journal = {One Earth},
year = {2023},
doi = {10.1016/j.oneear.2023.03.012},
url = {https://doi.org/10.1016/j.oneear.2023.03.012}
}
@article{10_1016_j_oneear_2023_09_007,
title = {Increasing meteorological drought under climate change reduces terrestrial ecosystem productivity and carbon storage},
journal = {One Earth},
year = {2023},
doi = {10.1016/j.oneear.2023.09.007},
url = {https://doi.org/10.1016/j.oneear.2023.09.007}
}
@article{10_1016_j_isci_2023_106658,
title = {Techno-economic assessment of implementing photovoltaic water villas in Maldives},
journal = {iScience},
year = {2023},
doi = {10.1016/j.isci.2023.106658},
url = {https://doi.org/10.1016/j.isci.2023.106658}
}
@article{10_1016_j_isci_2023_106844,
title = {China’s domestic industry redistribution facilitates carbon emissions mitigation},
journal = {iScience},
year = {2023},
doi = {10.1016/j.isci.2023.106844},
url = {https://doi.org/10.1016/j.isci.2023.106844}
}
@article{10_1016_j_isci_2023_106565,
title = {Revisiting electric vehicle life cycle greenhouse gas emissions in China: A marginal emission perspective},
journal = {iScience},
year = {2023},
doi = {10.1016/j.isci.2023.106565},
url = {https://doi.org/10.1016/j.isci.2023.106565}
}
@article{10_1016_j_isci_2023_108026,
title = {Influence of carbon derivatives on carbon capture investments in coal-based power sector, a China perspective},
journal = {iScience},
year = {2023},
doi = {10.1016/j.isci.2023.108026},
url = {https://doi.org/10.1016/j.isci.2023.108026}
}
@article{10_1016_j_isci_2023_106978,
title = {Region-wise evaluation of price-based demand response programs in Japan’s wholesale electricity market considering microeconomic equilibrium},
journal = {iScience},
year = {2023},
doi = {10.1016/j.isci.2023.106978},
url = {https://doi.org/10.1016/j.isci.2023.106978}
}
@article{10_1016_j_isci_2023_106188,
title = {Spatiotemporal analysis of the future carbon footprint of solar electricity in the United States by a dynamic life cycle assessment},
journal = {iScience},
year = {2023},
doi = {10.1016/j.isci.2023.106188},
url = {https://doi.org/10.1016/j.isci.2023.106188}
}
@article{10_1016_j_isci_2023_107669,
title = {Incorporating carbon sequestration toward a water-energy-food-carbon planning with uncertainties},
journal = {iScience},
year = {2023},
doi = {10.1016/j.isci.2023.107669},
url = {https://doi.org/10.1016/j.isci.2023.107669}
}
@article{10_1126_sciadv_adj2778,
title = {Very high-energy gamma-ray emission beyond 10 TeV from GRB 221009A},
journal = {Science Advances},
year = {2023},
doi = {10.1126/sciadv.adj2778},
url = {https://doi.org/10.1126/sciadv.adj2778}
}
@article{10_1126_sciadv_adc9576,
title = {Machine learning for industrial processes: Forecasting amine emissions from a carbon capture plant},
journal = {Science Advances},
year = {2023},
doi = {10.1126/sciadv.adc9576},
url = {https://doi.org/10.1126/sciadv.adc9576}
}
@article{10_1126_sciadv_adg6740,
title = {Will reshoring manufacturing of advanced electric vehicle battery support renewable energy transition and climate targets?},
journal = {Science Advances},
year = {2023},
doi = {10.1126/sciadv.adg6740},
url = {https://doi.org/10.1126/sciadv.adg6740}
}
@article{10_1126_sciadv_adi9932,
title = {Light-stimulated micromotor swarms in an electric field with accurate spatial, temporal, and mode control},
journal = {Science Advances},
year = {2023},
doi = {10.1126/sciadv.adi9932},
url = {https://doi.org/10.1126/sciadv.adi9932}
}
@article{10_1038_s41597-022-01499-9,
title = {An Artificial Intelligence Dataset for Solar Energy Locations in India},
journal = {Scientific Data},
year = {2022},
doi = {10.1038/s41597-022-01499-9},
url = {https://doi.org/10.1038/s41597-022-01499-9}
}
@article{10_1038_s41597-022-01725-4,
title = {A high spatial resolution dataset for anthropogenic atmospheric mercury emissions in China during 1998–2014},
journal = {Scientific Data},
year = {2022},
doi = {10.1038/s41597-022-01725-4},
url = {https://doi.org/10.1038/s41597-022-01725-4}
}
@article{10_1038_s41597-022-01290-w,
title = {U.S. national water and energy land dataset for integrated multisector dynamics research},
journal = {Scientific Data},
year = {2022},
doi = {10.1038/s41597-022-01290-w},
url = {https://doi.org/10.1038/s41597-022-01290-w}
}
@article{10_1038_s41597-022-01478-0,
title = {Energy audit and carbon footprint in trawl fisheries},
journal = {Scientific Data},
year = {2022},
doi = {10.1038/s41597-022-01478-0},
url = {https://doi.org/10.1038/s41597-022-01478-0}
}
@article{10_1038_s41560-022-01095-6,
title = {Attributing agnostically detected large reductions in road CO2 emissions to policy mixes},
journal = {Nature Energy},
year = {2022},
doi = {10.1038/s41560-022-01095-6},
url = {https://doi.org/10.1038/s41560-022-01095-6}
}
@article{10_1038_s41560-021-00957-9,
title = {Techno-economic analysis of renewable fuels for ships carrying bulk cargo in Europe},
journal = {Nature Energy},
year = {2022},
doi = {10.1038/s41560-021-00957-9},
url = {https://doi.org/10.1038/s41560-021-00957-9}
}
@article{10_1038_s41560-022-01167-7,
title = {High-performing organic electronics using terpene green solvents from renewable feedstocks},
journal = {Nature Energy},
year = {2022},
doi = {10.1038/s41560-022-01167-7},
url = {https://doi.org/10.1038/s41560-022-01167-7}
}
@article{10_1038_s41560-021-00958-8,
title = {Integrated hydrological, power system and economic modelling of climate impacts on electricity demand and cost},
journal = {Nature Energy},
year = {2022},
doi = {10.1038/s41560-021-00958-8},
url = {https://doi.org/10.1038/s41560-021-00958-8}
}
@article{10_1038_s41560-022-01056-z,
title = {Development of onshore wind turbine fleet counteracts climate change-induced reduction in global capacity factor},
journal = {Nature Energy},
year = {2022},
doi = {10.1038/s41560-022-01056-z},
url = {https://doi.org/10.1038/s41560-022-01056-z}
}
@article{10_1038_s41560-022-01105-7,
title = {Charging infrastructure access and operation to reduce the grid impacts of deep electric vehicle adoption},
journal = {Nature Energy},
year = {2022},
doi = {10.1038/s41560-022-01105-7},
url = {https://doi.org/10.1038/s41560-022-01105-7}
}
@article{10_1038_s41560-022-01057-y,
title = {Energy demand reduction options for meeting national zero-emission targets in the United Kingdom},
journal = {Nature Energy},
year = {2022},
doi = {10.1038/s41560-022-01057-y},
url = {https://doi.org/10.1038/s41560-022-01057-y}
}
@article{10_1038_s41893-022-00862-3,
title = {Re-thinking procurement incentives for electric vehicles to achieve net-zero emissions},
journal = {Nature Sustainability},
year = {2022},
doi = {10.1038/s41893-022-00862-3},
url = {https://doi.org/10.1038/s41893-022-00862-3}
}
@article{10_1038_s41467-022-33976-5,
title = {Energy requirements and carbon emissions for a low-carbon energy transition},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-33976-5},
url = {https://doi.org/10.1038/s41467-022-33976-5}
}
@article{10_1038_s41467-022-30848-w,
title = {Resilience of urban public electric vehicle charging infrastructure to flooding},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-30848-w},
url = {https://doi.org/10.1038/s41467-022-30848-w}
}
@article{10_1038_s41467-022-28004-5,
title = {Regional trade agreement burdens global carbon emissions mitigation},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-28004-5},
url = {https://doi.org/10.1038/s41467-022-28004-5}
}
@article{10_1038_s41467-022-33585-2,
title = {Uncertainty modulates visual maps during noninstrumental information demand},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-33585-2},
url = {https://doi.org/10.1038/s41467-022-33585-2}
}
@article{10_1038_s41467-022-29620-x,
title = {Electrifying passenger road transport in India requires near-term electricity grid decarbonisation},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-29620-x},
url = {https://doi.org/10.1038/s41467-022-29620-x}
}
@article{10_1038_s41467-022-29520-0,
title = {Reversible Power-to-Gas systems for energy conversion and storage},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-29520-0},
url = {https://doi.org/10.1038/s41467-022-29520-0}
}
@article{10_1038_s41467-022-34447-7,
title = {Electricity consumption variation versus economic structure during COVID-19 on metropolitan statistical areas in the US},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-34447-7},
url = {https://doi.org/10.1038/s41467-022-34447-7}
}
@article{10_1038_s41467-022-31826-y,
title = {Rising ecosystem water demand exacerbates the lengthening of tropical dry seasons},
journal = {Nature Communications},
year = {2022},
doi = {10.1038/s41467-022-31826-y},
url = {https://doi.org/10.1038/s41467-022-31826-y}
}
@article{10_1038_s41558-022-01385-7,
title = {Renewable energy certificates allow companies to overstate their emission reductions},
journal = {Nature Climate Change},
year = {2022},
doi = {10.1038/s41558-022-01385-7},
url = {https://doi.org/10.1038/s41558-022-01385-7}
}
@article{10_1038_s41558-022-01403-8,
title = {Widespread shift from ecosystem energy to water limitation with climate change},
journal = {Nature Climate Change},
year = {2022},
doi = {10.1038/s41558-022-01403-8},
url = {https://doi.org/10.1038/s41558-022-01403-8}
}
@article{10_1038_s41558-022-01443-0,
title = {Climate change threatens terrestrial water storage over the Tibetan Plateau},
journal = {Nature Climate Change},
year = {2022},
doi = {10.1038/s41558-022-01443-0},
url = {https://doi.org/10.1038/s41558-022-01443-0}
}
@article{10_1093_pnasnexus_pgac077,
title = {Feasibility of hybrid in-stream generator–photovoltaic systems for Amazonian off-grid communities},
journal = {npj Clean Energy},
year = {2022},
doi = {10.1093/pnasnexus/pgac077},
url = {https://doi.org/10.1093/pnasnexus/pgac077}
}
@article{10_1093_pnasnexus_pgac314,
title = {Unexpected no significant soil carbon losses in the Tibetan grasslands due to rodent bioturbation},
journal = {npj Clean Energy},
year = {2022},
doi = {10.1093/pnasnexus/pgac314},
url = {https://doi.org/10.1093/pnasnexus/pgac314}
}
@article{10_1093_pnasnexus_pgac195,
title = {Structural measures of personal networks predict migrants’ cultural backgrounds: an explanation from Grid/Group theory},
journal = {npj Clean Energy},
year = {2022},
doi = {10.1093/pnasnexus/pgac195},
url = {https://doi.org/10.1093/pnasnexus/pgac195}
}
@article{10_1093_pnasnexus_pgac131,
title = {Cryocampsis: a biophysical freeze-bending response of shrubs and trees under snow loads},
journal = {npj Clean Energy},
year = {2022},
doi = {10.1093/pnasnexus/pgac131},
url = {https://doi.org/10.1093/pnasnexus/pgac131}
}
@article{10_1038_s41598-022-07922-w,
title = {Heterogeneous climate change impacts on electricity demand in world cities circa mid-century},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-07922-w},
url = {https://doi.org/10.1038/s41598-022-07922-w}
}
@article{10_1038_s41598-022-09077-0,
title = {Author Correction: Heterogeneous climate change impacts on electricity demand in world cities circa mid-century},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-09077-0},
url = {https://doi.org/10.1038/s41598-022-09077-0}
}
@article{10_1038_s41598-022-18935-w,
title = {Linking the long-term variability in global wave energy to swell climate and redefining suitable coasts for energy exploitation},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-18935-w},
url = {https://doi.org/10.1038/s41598-022-18935-w}
}
@article{10_1038_s41598-022-20432-z,
title = {Influence of green technology, green energy consumption, energy efficiency, trade, economic development and FDI on climate change in South Asia},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-20432-z},
url = {https://doi.org/10.1038/s41598-022-20432-z}
}
@article{10_1038_s41598-022-16090-w,
title = {Authentication of smart grid communications using quantum key distribution},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-16090-w},
url = {https://doi.org/10.1038/s41598-022-16090-w}
}
@article{10_1038_s41598-022-10433-3,
title = {Collection mode choice of spent electric vehicle batteries: considering collection competition and third-party economies of scale},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-10433-3},
url = {https://doi.org/10.1038/s41598-022-10433-3}
}
@article{10_1038_s41598-022-18425-z,
title = {Inter-annual variation patterns in the carbon footprint of farmland ecosystems in Guangdong Province, China},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-18425-z},
url = {https://doi.org/10.1038/s41598-022-18425-z}
}
@article{10_1038_s41598-022-10123-0,
title = {Low-carbon economic dispatch considering integrated demand response and multistep carbon trading for multi-energy microgrid},
journal = {Scientific Reports},
year = {2022},
doi = {10.1038/s41598-022-10123-0},
url = {https://doi.org/10.1038/s41598-022-10123-0}
}
@article{10_1016_j_joule_2022_03_009,
title = {National energy security or acceleration of transition? Energy policy after the war in Ukraine},
journal = {Joule},
year = {2022},
doi = {10.1016/j.joule.2022.03.009},
url = {https://doi.org/10.1016/j.joule.2022.03.009}
}
@article{10_1016_j_joule_2022_04_019,
title = {Battery anode interphase construction via carbon capture},
journal = {Joule},
year = {2022},
doi = {10.1016/j.joule.2022.04.019},
url = {https://doi.org/10.1016/j.joule.2022.04.019}
}
@article{10_1016_j_joule_2022_01_004,
title = {Private risk and social resilience in liberalized electricity markets},
journal = {Joule},
year = {2022},
doi = {10.1016/j.joule.2022.01.004},
url = {https://doi.org/10.1016/j.joule.2022.01.004}
}
@article{10_1016_j_joule_2022_07_012,
title = {Policy-driven solar innovation and deployment remains critical for US grid decarbonization},
journal = {Joule},
year = {2022},
doi = {10.1016/j.joule.2022.07.012},
url = {https://doi.org/10.1016/j.joule.2022.07.012}
}
@article{10_1016_j_joule_2022_01_001,
title = {Toward solar-driven carbon recycling},
journal = {Joule},
year = {2022},
doi = {10.1016/j.joule.2022.01.001},
url = {https://doi.org/10.1016/j.joule.2022.01.001}
}
@article{10_1016_j_oneear_2022_03_002,
title = {Building sustainability into battery value chains},
journal = {One Earth},
year = {2022},
doi = {10.1016/j.oneear.2022.03.002},
url = {https://doi.org/10.1016/j.oneear.2022.03.002}
}
@article{10_1016_j_oneear_2022_07_006,
title = {Plant-level mitigation strategies could enable carbon neutrality by 2060 and reduce non-CO2 emissions in China’s iron and steel sector},
journal = {One Earth},
year = {2022},
doi = {10.1016/j.oneear.2022.07.006},
url = {https://doi.org/10.1016/j.oneear.2022.07.006}
}
@article{10_1016_j_oneear_2022_03_008,
title = {Carbon capture and storage investment: Fiddling while the planet burns},
journal = {One Earth},
year = {2022},
doi = {10.1016/j.oneear.2022.03.008},
url = {https://doi.org/10.1016/j.oneear.2022.03.008}
}
@article{10_1016_j_isci_2022_105208,
title = {The role of innovation for economy and sustainability of photovoltaic modules},
journal = {iScience},
year = {2022},
doi = {10.1016/j.isci.2022.105208},
url = {https://doi.org/10.1016/j.isci.2022.105208}
}
@article{10_1016_j_isci_2022_104328,
title = {How do China’s lockdown and post-COVID-19 stimuli impact carbon emissions and economic output? Retrospective estimates and prospective trajectories},
journal = {iScience},
year = {2022},
doi = {10.1016/j.isci.2022.104328},
url = {https://doi.org/10.1016/j.isci.2022.104328}
}
@article{10_1016_j_isci_2022_104815,
title = {Economics of planning electricity transmission considering environmental and health externalities},
journal = {iScience},
year = {2022},
doi = {10.1016/j.isci.2022.104815},
url = {https://doi.org/10.1016/j.isci.2022.104815}
}
@article{10_1016_j_isci_2022_105664,
title = {Optimal deployment for carbon capture enables more than half of China’s coal-fired power plant to achieve low-carbon transformation},
journal = {iScience},
year = {2022},
doi = {10.1016/j.isci.2022.105664},
url = {https://doi.org/10.1016/j.isci.2022.105664}
}
@article{10_1126_sciadv_abm0078,
title = {Electrostatic dust removal using adsorbed moisture–assisted charge induction for sustainable operation of solar panels},
journal = {Science Advances},
year = {2022},
doi = {10.1126/sciadv.abm0078},
url = {https://doi.org/10.1126/sciadv.abm0078}
}
@article{10_1126_sciadv_abl7161,
title = {Escalating carbon emissions from North American boreal forest wildfires and the climate mitigation potential of fire management},
journal = {Science Advances},
year = {2022},
doi = {10.1126/sciadv.abl7161},
url = {https://doi.org/10.1126/sciadv.abl7161}
}
@article{10_1126_sciadv_abn7307,
title = {Geographically resolved social cost of anthropogenic emissions accounting for both direct and climate-mediated effects},
journal = {Science Advances},
year = {2022},
doi = {10.1126/sciadv.abn7307},
url = {https://doi.org/10.1126/sciadv.abn7307}
}
@article{10_1126_sciadv_abn8762,
title = {Impacts of wind power on air quality, premature mortality, and exposure disparities in the United States},
journal = {Science Advances},
year = {2022},
doi = {10.1126/sciadv.abn8762},
url = {https://doi.org/10.1126/sciadv.abn8762}
}
@article{10_1126_sciadv_abl8614,
title = {Semiautomated synthesis of sequence-defined polymers for information storage},
journal = {Science Advances},
year = {2022},
doi = {10.1126/sciadv.abl8614},
url = {https://doi.org/10.1126/sciadv.abl8614}
}
@article{10_1038_s41560-021-00888-5,
title = {Role of the social factors in success of solar photovoltaic reuse and recycle programmes},
journal = {Nature Energy},
year = {2021},
doi = {10.1038/s41560-021-00888-5},
url = {https://doi.org/10.1038/s41560-021-00888-5}
}
@article{10_1038_s41560-021-00933-3,
title = {Modelling of supply and demand-side determinants of liquefied petroleum gas consumption in peri-urban Cameroon, Ghana and Kenya},
journal = {Nature Energy},
year = {2021},
doi = {10.1038/s41560-021-00933-3},
url = {https://doi.org/10.1038/s41560-021-00933-3}
}
@article{10_1038_s41560-021-00900-y,
title = {The role of high-socioeconomic-status people in locking in or rapidly reducing energy-driven greenhouse gas emissions},
journal = {Nature Energy},
year = {2021},
doi = {10.1038/s41560-021-00900-y},
url = {https://doi.org/10.1038/s41560-021-00900-y}
}
@article{10_1038_s41560-021-00871-0,
title = {Global scenarios of household access to modern energy services under climate mitigation policy},
journal = {Nature Energy},
year = {2021},
doi = {10.1038/s41560-021-00871-0},
url = {https://doi.org/10.1038/s41560-021-00871-0}
}
@article{10_1038_s41560-021-00915-5,
title = {Economic, environmental and grid-resilience benefits of converting diesel trains to battery-electric},
journal = {Nature Energy},
year = {2021},
doi = {10.1038/s41560-021-00915-5},
url = {https://doi.org/10.1038/s41560-021-00915-5}
}
@article{10_1038_s41560-021-00904-8,
title = {Climate mitigation scenarios with persistent COVID-19-related energy demand changes},
journal = {Nature Energy},
year = {2021},
doi = {10.1038/s41560-021-00904-8},
url = {https://doi.org/10.1038/s41560-021-00904-8}
}
@article{10_1038_s41893-021-00737-z,
title = {Life cycle assessment of recycling strategies for perovskite photovoltaic modules},
journal = {Nature Sustainability},
year = {2021},
doi = {10.1038/s41893-021-00737-z},
url = {https://doi.org/10.1038/s41893-021-00737-z}
}
@article{10_1038_s41893-021-00740-4,
title = {Global bioenergy with carbon capture and storage potential is largely constrained by sustainable irrigation},
journal = {Nature Sustainability},
year = {2021},
doi = {10.1038/s41893-021-00740-4},
url = {https://doi.org/10.1038/s41893-021-00740-4}
}
@article{10_1038_s41893-021-00807-2,
title = {Growing environmental footprint of plastics driven by coal combustion},
journal = {Nature Sustainability},
year = {2021},
doi = {10.1038/s41893-021-00807-2},
url = {https://doi.org/10.1038/s41893-021-00807-2}
}
@article{10_1038_s41467-021-23870-x,
title = {Direct observation of trap-assisted recombination in organic photovoltaic devices},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-23870-x},
url = {https://doi.org/10.1038/s41467-021-23870-x}
}
@article{10_1038_s41467-021-23634-7,
title = {Limited application of reflective surfaces can mitigate urban heat pollution},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-23634-7},
url = {https://doi.org/10.1038/s41467-021-23634-7}
}
@article{10_1038_s41467-021-27247-y,
title = {Pricing indirect emissions accelerates low—carbon transition of US light vehicle sector},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-27247-y},
url = {https://doi.org/10.1038/s41467-021-27247-y}
}
@article{10_1038_s41467-021-26398-2,
title = {Altered growth conditions more than reforestation counteracted forest biomass carbon emissions 1990–2020},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-26398-2},
url = {https://doi.org/10.1038/s41467-021-26398-2}
}
@article{10_1038_s41467-021-27252-1,
title = {Location-specific co-benefits of carbon emissions reduction from coal-fired power plants in China},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-27252-1},
url = {https://doi.org/10.1038/s41467-021-27252-1}
}
@article{10_1038_s41467-021-21868-z,
title = {Prospective contributions of biomass pyrolysis to China’s 2050 carbon reduction and renewable energy goals},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-21868-z},
url = {https://doi.org/10.1038/s41467-021-21868-z}
}
@article{10_1038_s41467-021-21785-1,
title = {Impacts of long-term temperature change and variability on electricity investments},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-21785-1},
url = {https://doi.org/10.1038/s41467-021-21785-1}
}
@article{10_1038_s41467-021-25504-8,
title = {Large uncertainties in trends of energy demand for heating and cooling under climate change},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-25504-8},
url = {https://doi.org/10.1038/s41467-021-25504-8}
}
@article{10_1038_s41467-021-22211-2,
title = {Alternative carbon price trajectories can avoid excessive carbon removal},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-22211-2},
url = {https://doi.org/10.1038/s41467-021-22211-2}
}
@article{10_1038_s41467-021-26182-2,
title = {A frequency-amplitude coordinator and its optimal energy consumption for biological oscillators},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-26182-2},
url = {https://doi.org/10.1038/s41467-021-26182-2}
}
@article{10_1038_s41467-021-24747-9,
title = {Past and future trends of Egypt’s water consumption and its sources},
journal = {Nature Communications},
year = {2021},
doi = {10.1038/s41467-021-24747-9},
url = {https://doi.org/10.1038/s41467-021-24747-9}
}
@article{10_1038_s41558-020-00975-7,
title = {Plausible energy demand patterns in a growing global economy with climate policy},
journal = {Nature Climate Change},
year = {2021},
doi = {10.1038/s41558-020-00975-7},
url = {https://doi.org/10.1038/s41558-020-00975-7}
}
@article{10_1038_s41558-020-00949-9,
title = {Climate change impacts on renewable energy supply},
journal = {Nature Climate Change},
year = {2021},
doi = {10.1038/s41558-020-00949-9},
url = {https://doi.org/10.1038/s41558-020-00949-9}
}
@article{10_1038_s41558-021-01005-w,
title = {Author Correction: Climate change impacts on renewable energy supply},
journal = {Nature Climate Change},
year = {2021},
doi = {10.1038/s41558-021-01005-w},
url = {https://doi.org/10.1038/s41558-021-01005-w}
}
@article{10_1038_s41558-021-01219-y,
title = {Demand-side solutions to climate change mitigation consistent with high levels of well-being},
journal = {Nature Climate Change},
year = {2021},
doi = {10.1038/s41558-021-01219-y},
url = {https://doi.org/10.1038/s41558-021-01219-y}
}
@article{10_1038_s41558-021-01175-7,
title = {Uncertain storage prospects create a conundrum for carbon capture and storage ambitions},
journal = {Nature Climate Change},
year = {2021},
doi = {10.1038/s41558-021-01175-7},
url = {https://doi.org/10.1038/s41558-021-01175-7}
}
@article{10_1038_s41558-020-00960-0,
title = {A proposed global layout of carbon capture and storage in line with a 2 °C climate target},
journal = {Nature Climate Change},
year = {2021},
doi = {10.1038/s41558-020-00960-0},
url = {https://doi.org/10.1038/s41558-020-00960-0}
}
@article{10_1038_s41598-021-88141-7,
title = {Water, energy and climate benefits of urban greening throughout Europe under different climatic scenarios},
journal = {Scientific Reports},
year = {2021},
doi = {10.1038/s41598-021-88141-7},
url = {https://doi.org/10.1038/s41598-021-88141-7}
}
@article{10_1038_s41598-021-97108-7,
title = {Analyzing climate change impacts on health, energy, water resources, and biodiversity sectors for effective climate change policy in South Korea},
journal = {Scientific Reports},
year = {2021},
doi = {10.1038/s41598-021-97108-7},
url = {https://doi.org/10.1038/s41598-021-97108-7}
}
@article{10_1038_s41598-021-99637-7,
title = {A robust multiple-objective decision-making paradigm based on the water–energy–food security nexus under changing climate uncertainties},
journal = {Scientific Reports},
year = {2021},
doi = {10.1038/s41598-021-99637-7},
url = {https://doi.org/10.1038/s41598-021-99637-7}
}
@article{10_1038_s41598-021-88717-3,
title = {Energy budget and carbon footprint in a wheat and maize system under ridge furrow strategy in dry semi humid areas},
journal = {Scientific Reports},
year = {2021},
doi = {10.1038/s41598-021-88717-3},
url = {https://doi.org/10.1038/s41598-021-88717-3}
}
@article{10_1016_j_joule_2021_06_018,
title = {Techno-economic analysis of long-duration energy storage and flexible power generation technologies to support high-variable renewable energy grids},
journal = {Joule},
year = {2021},
doi = {10.1016/j.joule.2021.06.018},
url = {https://doi.org/10.1016/j.joule.2021.06.018}
}
@article{10_1016_j_joule_2021_06_013,
title = {Cutting through the noise on negative emissions},
journal = {Joule},
year = {2021},
doi = {10.1016/j.joule.2021.06.013},
url = {https://doi.org/10.1016/j.joule.2021.06.013}
}
@article{10_1016_j_joule_2021_11_012,
title = {The tricky geoeconomics of going low carbon},
journal = {Joule},
year = {2021},
doi = {10.1016/j.joule.2021.11.012},
url = {https://doi.org/10.1016/j.joule.2021.11.012}
}
@article{10_1016_j_joule_2020_12_019,
title = {Evaluation in an Emergency: Assessing Transformative Energy Policy amidst the Climate Crisis},
journal = {Joule},
year = {2021},
doi = {10.1016/j.joule.2020.12.019},
url = {https://doi.org/10.1016/j.joule.2020.12.019}
}
@article{10_1016_j_joule_2021_10_012,
title = {Upstream decarbonization through a carbon takeback obligation: An affordable backstop climate policy},
journal = {Joule},
year = {2021},
doi = {10.1016/j.joule.2021.10.012},
url = {https://doi.org/10.1016/j.joule.2021.10.012}
}
@article{10_1016_j_oneear_2021_04_018,
title = {Multiscale design for system-wide peer-to-peer energy trading},
journal = {One Earth},
year = {2021},
doi = {10.1016/j.oneear.2021.04.018},
url = {https://doi.org/10.1016/j.oneear.2021.04.018}
}
@article{10_1016_j_oneear_2021_10_001,
title = {UNFCCC must confront the political economy of net-negative emissions},
journal = {One Earth},
year = {2021},
doi = {10.1016/j.oneear.2021.10.001},
url = {https://doi.org/10.1016/j.oneear.2021.10.001}
}
@article{10_1016_j_oneear_2021_04_001,
title = {Sustainability footprints of a renewable carbon transition for the petrochemical sector within planetary boundaries},
journal = {One Earth},
year = {2021},
doi = {10.1016/j.oneear.2021.04.001},
url = {https://doi.org/10.1016/j.oneear.2021.04.001}
}
@article{10_1016_j_oneear_2021_10_022,
title = {Is there a role for carbon capture and storage in a just transition?},
journal = {One Earth},
year = {2021},
doi = {10.1016/j.oneear.2021.10.022},
url = {https://doi.org/10.1016/j.oneear.2021.10.022}
}
@article{10_1016_j_oneear_2021_10_002,
title = {Carbon capture and storage at the end of a lost decade},
journal = {One Earth},
year = {2021},
doi = {10.1016/j.oneear.2021.10.002},
url = {https://doi.org/10.1016/j.oneear.2021.10.002}
}
@article{10_1016_j_oneear_2021_10_024,
title = {Cost reductions in renewables can substantially erode the value of carbon capture and storage in mitigation pathways},
journal = {One Earth},
year = {2021},
doi = {10.1016/j.oneear.2021.10.024},
url = {https://doi.org/10.1016/j.oneear.2021.10.024}
}
@article{10_1016_j_oneear_2021_09_006,
title = {Global agricultural trade and land system sustainability: Implications for ecosystem carbon storage, biodiversity, and human nutrition},
journal = {One Earth},
year = {2021},
doi = {10.1016/j.oneear.2021.09.006},
url = {https://doi.org/10.1016/j.oneear.2021.09.006}
}
@article{10_1016_j_isci_2021_103389,
title = {How limitations in energy access, poverty, and socioeconomic disparities compromise health interventions for outbreaks in urban settings},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.103389},
url = {https://doi.org/10.1016/j.isci.2021.103389}
}
@article{10_1016_j_isci_2021_103188,
title = {Why a Scialog on negative emissions science?},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.103188},
url = {https://doi.org/10.1016/j.isci.2021.103188}
}
@article{10_1016_j_isci_2021_103053,
title = {The need for a portfolio of solutions rooted in common messaging to facilitate negative emissions science},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.103053},
url = {https://doi.org/10.1016/j.isci.2021.103053}
}
@article{10_1016_j_isci_2021_103499,
title = {Reducing the life cycle environmental impact of electric vehicles through emissions-responsive charging},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.103499},
url = {https://doi.org/10.1016/j.isci.2021.103499}
}
@article{10_1016_j_isci_2021_102730,
title = {Quantifying techno-economic indicators' impact on isolated renewable energy systems},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.102730},
url = {https://doi.org/10.1016/j.isci.2021.102730}
}
@article{10_1016_j_isci_2021_102914,
title = {Evaluating the role of behavior and social class in electric vehicle adoption and charging demands},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.102914},
url = {https://doi.org/10.1016/j.isci.2021.102914}
}
@article{10_1016_j_isci_2021_102787,
title = {Financial viability of electric vehicle lithium-ion battery recycling},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.102787},
url = {https://doi.org/10.1016/j.isci.2021.102787}
}
@article{10_1016_j_isci_2021_102045,
title = {Spurring low-carbon electrosynthesis through energy and innovation policy},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.102045},
url = {https://doi.org/10.1016/j.isci.2021.102045}
}
@article{10_1016_j_isci_2021_103231,
title = {Inequitable and heterogeneous impacts on electricity consumption from COVID-19 mitigation measures},
journal = {iScience},
year = {2021},
doi = {10.1016/j.isci.2021.103231},
url = {https://doi.org/10.1016/j.isci.2021.103231}
}
@article{10_1126_sciadv_abj1372,
title = {Calcification-driven CO
<sub>2</sub>
emissions exceed “Blue Carbon” sequestration in a carbonate seagrass meadow},
journal = {Science Advances},
year = {2021},
doi = {10.1126/sciadv.abj1372},
url = {https://doi.org/10.1126/sciadv.abj1372}
}
@article{10_1126_sciadv_abe4342,
title = {The geographic disparity of historical greenhouse emissions and projected climate change},
journal = {Science Advances},
year = {2021},
doi = {10.1126/sciadv.abe4342},
url = {https://doi.org/10.1126/sciadv.abe4342}
}
@article{10_1038_s41597-020-0434-6,
title = {A synthetic energy dataset for non-intrusive load monitoring in households},
journal = {Scientific Data},
year = {2020},
doi = {10.1038/s41597-020-0434-6},
url = {https://doi.org/10.1038/s41597-020-0434-6}
}
@article{10_1038_s41560-020-0595-8,
title = {Social dynamics of energy behaviour},
journal = {Nature Energy},
year = {2020},
doi = {10.1038/s41560-020-0595-8},
url = {https://doi.org/10.1038/s41560-020-0595-8}
}
@article{10_1038_s41560-020-0553-5,
title = {The importance of social relations in shaping energy demand},
journal = {Nature Energy},
year = {2020},
doi = {10.1038/s41560-020-0553-5},
url = {https://doi.org/10.1038/s41560-020-0553-5}
}
@article{10_1038_s41560-020-0558-0,
title = {Quantifying the impacts of climate change and extreme climate events on energy systems},
journal = {Nature Energy},
year = {2020},
doi = {10.1038/s41560-020-0558-0},
url = {https://doi.org/10.1038/s41560-020-0558-0}
}
@article{10_1038_s41560-020-00733-1,
title = {Multifaceted political and social drivers inform wind energy repowering decisions and potential},
journal = {Nature Energy},
year = {2020},
doi = {10.1038/s41560-020-00733-1},
url = {https://doi.org/10.1038/s41560-020-00733-1}
}
@article{10_1038_s41893-020-00666-3,
title = {Climate co-benefits of air quality and clean energy policy in India},
journal = {Nature Sustainability},
year = {2020},
doi = {10.1038/s41893-020-00666-3},
url = {https://doi.org/10.1038/s41893-020-00666-3}
}
@article{10_1038_s41893-020-0503-z,
title = {Energy use and the sustainability of intensifying food production},
journal = {Nature Sustainability},
year = {2020},
doi = {10.1038/s41893-020-0503-z},
url = {https://doi.org/10.1038/s41893-020-0503-z}
}
@article{10_1038_s41893-020-00643-w,
title = {Climate change extremes and photovoltaic power output},
journal = {Nature Sustainability},
year = {2020},
doi = {10.1038/s41893-020-00643-w},
url = {https://doi.org/10.1038/s41893-020-00643-w}
}
@article{10_1038_s41893-020-0488-7,
title = {Net emission reductions from electric cars and heat pumps in 59 world regions over time},
journal = {Nature Sustainability},
year = {2020},
doi = {10.1038/s41893-020-0488-7},
url = {https://doi.org/10.1038/s41893-020-0488-7}
}
@article{10_1038_s41893-020-0532-7,
title = {Hydrological limits to carbon capture and storage},
journal = {Nature Sustainability},
year = {2020},
doi = {10.1038/s41893-020-0532-7},
url = {https://doi.org/10.1038/s41893-020-0532-7}
}
@article{10_1038_s41467-020-15826-4,
title = {Solar photovoltaic interventions have reduced rural poverty in China},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-15826-4},
url = {https://doi.org/10.1038/s41467-020-15826-4}
}
@article{10_1038_s41467-020-14911-y,
title = {Entropy and interfacial energy driven self-healable polymers},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-14911-y},
url = {https://doi.org/10.1038/s41467-020-14911-y}
}
@article{10_1038_s41467-020-17928-5,
title = {Renewable energy production will exacerbate mining threats to biodiversity},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-17928-5},
url = {https://doi.org/10.1038/s41467-020-17928-5}
}
@article{10_1038_s41467-020-15393-8,
title = {The critical role of humidity in modeling summer electricity demand across the United States},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-15393-8},
url = {https://doi.org/10.1038/s41467-020-15393-8}
}
@article{10_1038_s41467-020-16012-2,
title = {Drought and climate change impacts on cooling water shortages and electricity prices in Great Britain},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-16012-2},
url = {https://doi.org/10.1038/s41467-020-16012-2}
}
@article{10_1038_s41467-020-17500-1,
title = {Grid cells are modulated by local head direction},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-17500-1},
url = {https://doi.org/10.1038/s41467-020-17500-1}
}
@article{10_1038_s41467-020-15883-9,
title = {Mapping global carbon footprint in China},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-15883-9},
url = {https://doi.org/10.1038/s41467-020-15883-9}
}
@article{10_1038_s41467-020-14606-4,
title = {Carbon footprint of global natural gas supplies to China},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-14606-4},
url = {https://doi.org/10.1038/s41467-020-14606-4}
}
@article{10_1038_s41467-020-14806-y,
title = {Energy consumption and cooperation for optimal sensing},
journal = {Nature Communications},
year = {2020},
doi = {10.1038/s41467-020-14806-y},
url = {https://doi.org/10.1038/s41467-020-14806-y}
}
@article{10_1038_s41558-020-00939-x,
title = {Renewable energy targets may undermine their sustainability},
journal = {Nature Climate Change},
year = {2020},
doi = {10.1038/s41558-020-00939-x},
url = {https://doi.org/10.1038/s41558-020-00939-x}
}
@article{10_1038_s41558-020-0812-2,
title = {Emissions trading},
journal = {Nature Climate Change},
year = {2020},
doi = {10.1038/s41558-020-0812-2},
url = {https://doi.org/10.1038/s41558-020-0812-2}
}
@article{10_1038_s41558-020-0848-3,
title = {Global wind patterns and the vulnerability of wind-dispersed species to climate change},
journal = {Nature Climate Change},
year = {2020},
doi = {10.1038/s41558-020-0848-3},
url = {https://doi.org/10.1038/s41558-020-0848-3}
}
@article{10_1038_s41558-020-0885-y,
title = {The climate change mitigation potential of bioenergy with carbon capture and storage},
journal = {Nature Climate Change},
year = {2020},
doi = {10.1038/s41558-020-0885-y},
url = {https://doi.org/10.1038/s41558-020-0885-y}
}
@article{10_1038_s41558-020-0880-3,
title = {A near-term to net zero alternative to the social cost of carbon for setting carbon prices},
journal = {Nature Climate Change},
year = {2020},
doi = {10.1038/s41558-020-0880-3},
url = {https://doi.org/10.1038/s41558-020-0880-3}
}
@article{10_1038_s41598-020-62798-y,
title = {Model of Carbon Footprint Assessment for the Life Cycle of the System of Wastewater Collection, Transport and Treatment},
journal = {Scientific Reports},
year = {2020},
doi = {10.1038/s41598-020-62798-y},
url = {https://doi.org/10.1038/s41598-020-62798-y}
}
@article{10_1016_j_joule_2020_06_017,
title = {Lowering the Energy Cost of Carbon Capture},
journal = {Joule},
year = {2020},
doi = {10.1016/j.joule.2020.06.017},
url = {https://doi.org/10.1016/j.joule.2020.06.017}
}
@article{10_1016_j_joule_2020_02_007,
title = {Negative Emissions Technologies: The Tradeoffs of Air-Capture Economics},
journal = {Joule},
year = {2020},
doi = {10.1016/j.joule.2020.02.007},
url = {https://doi.org/10.1016/j.joule.2020.02.007}
}
@article{10_1016_j_joule_2020_01_019,
title = {Economic Impact of a Unilateral Carbon Price},
journal = {Joule},
year = {2020},
doi = {10.1016/j.joule.2020.01.019},
url = {https://doi.org/10.1016/j.joule.2020.01.019}
}
@article{10_1016_j_joule_2020_10_011,
title = {De-risking Renewable Energy Investments in Developing Countries: A Multilateral Guarantee Mechanism},
journal = {Joule},
year = {2020},
doi = {10.1016/j.joule.2020.10.011},
url = {https://doi.org/10.1016/j.joule.2020.10.011}
}
@article{10_1016_j_joule_2019_11_009,
title = {Long-Duration Electricity Storage Applications, Economics, and Technologies},
journal = {Joule},
year = {2020},
doi = {10.1016/j.joule.2019.11.009},
url = {https://doi.org/10.1016/j.joule.2019.11.009}
}
@article{10_1016_j_oneear_2020_09_013,
title = {The Importance of Developing Climate-Resilient Pathways for Energy Transition and Climate Change Adaptation},
journal = {One Earth},
year = {2020},
doi = {10.1016/j.oneear.2020.09.013},
url = {https://doi.org/10.1016/j.oneear.2020.09.013}
}
@article{10_1016_j_oneear_2020_07_010,
title = {Variable Impacts of Climate Change on Blue Carbon},
journal = {One Earth},
year = {2020},
doi = {10.1016/j.oneear.2020.07.010},
url = {https://doi.org/10.1016/j.oneear.2020.07.010}
}
@article{10_1126_sciadv_aay6792,
title = {Forests: Carbon sequestration, biomass energy, or both?},
journal = {Science Advances},
year = {2020},
doi = {10.1126/sciadv.aay6792},
url = {https://doi.org/10.1126/sciadv.aay6792}
}
@article{10_1126_sciadv_abb0055,
title = {Life cycle energy use and environmental implications of high-performance perovskite tandem solar cells},
journal = {Science Advances},
year = {2020},
doi = {10.1126/sciadv.abb0055},
url = {https://doi.org/10.1126/sciadv.abb0055}
}
|