[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
6cd46bf261
commit
ff209bbd76
@ -22,10 +22,10 @@ logger = logging.getLogger(__name__)
|
||||
|
||||
import json
|
||||
|
||||
import geopandas as gpd
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
import xarray as xr
|
||||
import geopandas as gpd
|
||||
from shapely.geometry import Polygon
|
||||
|
||||
|
||||
@ -86,13 +86,11 @@ def prepare_egs_data(egs_file):
|
||||
return egs_data
|
||||
|
||||
|
||||
def get_capacity_factors(
|
||||
network_regions_file,
|
||||
air_temperatures_file
|
||||
):
|
||||
def get_capacity_factors(network_regions_file, air_temperatures_file):
|
||||
"""
|
||||
Performance of EGS is higher for lower temperatures, due to more efficient air cooling
|
||||
Data from Ricks et al.: The Role of Flexible Geothermal Power in Decarbonized Elec Systems
|
||||
Performance of EGS is higher for lower temperatures, due to more efficient
|
||||
air cooling Data from Ricks et al.: The Role of Flexible Geothermal Power
|
||||
in Decarbonized Elec Systems.
|
||||
"""
|
||||
|
||||
delta_T = [-15, -10, -5, 0, 5, 10, 15, 20]
|
||||
@ -127,7 +125,6 @@ def get_capacity_factors(
|
||||
return capacity_factors
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
if "snakemake" not in globals():
|
||||
from _helpers import mock_snakemake
|
||||
|
Loading…
Reference in New Issue
Block a user