PV-Ausrichtung angepasst, Neighborhood formatiert

This commit is contained in:
2025-01-03 14:48:00 +01:00
parent eb130b6be2
commit 65a56bb5a2
2 changed files with 29 additions and 16 deletions

View File

@@ -20,8 +20,6 @@ from pvlib.temperature import TEMPERATURE_MODEL_PARAMETERS
latitude = 47.2675
longitude = 11.3910
tz = 'Europe/Vienna'
surface_tilt = 0
surface_azimuth = 180
year = 2019
# Daten für Datenbank -> Module + WR
@@ -33,8 +31,8 @@ inverter = database_inverter['ABB__PVI_4_2_OUTD_US__208V_']
# PV-Anlage definieren
modules_per_string = 10
strings_per_inverter = 2
surface_tilt = 0
surface_azimuth = 180
surface_tilt = 20
surface_azimuth = 150
# Temperaturparameter definieren
temperature_parameters = TEMPERATURE_MODEL_PARAMETERS['sapm']['open_rack_glass_glass']
@@ -62,7 +60,7 @@ def create_production_profile():
# Hier ist Süden Azimuth = 0°, bei PVLib ist es 180°
poa_data, meta, inputs = pvlib.iotools.get_pvgis_hourly(latitude=latitude, longitude=longitude, start=year, end=year, raddatabase='PVGIS-SARAH3', components=True, surface_tilt=surface_tilt,
surface_azimuth=surface_azimuth-180, outputformat='json', usehorizon=True, userhorizon=None, pvcalculation=False, peakpower=None,
surface_azimuth=surface_azimuth-150, outputformat='json', usehorizon=True, userhorizon=None, pvcalculation=False, peakpower=None,
pvtechchoice='crystSi', mountingplace='free', loss=0, trackingtype=0, optimal_surface_tilt=False, optimalangles=False,
url='https://re.jrc.ec.europa.eu/api/', map_variables=True, timeout=30)