diff --git a/scripts/build_cop_profiles/run.py b/scripts/build_cop_profiles/run.py index d21b863d..1b2c0a35 100644 --- a/scripts/build_cop_profiles/run.py +++ b/scripts/build_cop_profiles/run.py @@ -3,6 +3,43 @@ # # SPDX-License-Identifier: MIT +""" +Approximate heat pump coefficient-of-performance (COP) profiles for different heat sources and systems. + +For central heating, this is based on Jensen et al. (2018) (c.f. `CentralHeatingCopApproximator `_) and for decentral heating, the approximation is based on Staffell et al. (2012) (c.f. `DecentralHeatingCopApproximator `_). + +Relevant Settings +----------------- + +.. code:: yaml + sector: + heat_pump_sink_T_decentral_heating: + district_heating: + forward_temperature: + return_temperature: + heat_source_cooling: + heat_pump_cop_approximation: + refrigerant: + heat_exchanger_pinch_point_temperature_difference + isentropic_compressor_efficiency: + heat_loss: + heat_pump_sources: + urban central: + urban decentral: + rural: + snapshots: + +Inputs +------ +- `resources//regions_onshore.geojson`: Onshore regions +- `resources//temp_soil_total`: Ground temperature +- `resources//temp_air_total`: Air temperature + +Outputs +------- +- `resources//cop_profiles.nc`: Heat pump coefficient-of-performance (COP) profiles +""" + import sys import geopandas as gpd