system_assignation/imports/weather/epw_weather_parameters.py

112 lines
5.8 KiB
Python
Raw Normal View History

2021-04-13 15:09:13 -04:00
"""
EpwWeatherParameters class to extract weather parameters from a defined region in .epw format (EnergyPlus Weather)
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
"""
import sys
2021-08-27 12:51:30 -04:00
from pathlib import Path
import pandas as pd
import helpers.constants as cte
2021-04-13 15:09:13 -04:00
class EpwWeatherParameters:
"""
EpwWeatherParameters class
"""
def __init__(self, city, path, file_name):
self._weather_values = None
self._city = city
self._path = Path(path / file_name)
try:
file = open(self._path, 'r')
line = file.readline().split(',')
2021-04-13 19:00:28 -04:00
city.climate_reference_city = line[1]
city.latitude = line[6]
city.longitude = line[7]
city.time_zone = line[8]
2021-04-13 15:09:13 -04:00
for i in range(0, 2):
line = file.readline().split(',')
line = file.readline().split(',')
number_records = int(line[1])
depth_measurement_ground_temperature = []
ground_temperature = []
for i in range(0, number_records):
depth_measurement_ground_temperature.append(line[i*16+2])
temperatures = []
for j in range(0, 12):
temperatures.append(line[i*16+j+6])
ground_temperature.append(temperatures)
file.close()
except SystemExit:
sys.stderr.write(f'Error: weather file {self._path} not found. Please download it from '
2021-08-27 12:51:30 -04:00
f'https://energyplus.net/weather and place it in folder data\\weather\\epw\n')
2021-04-13 15:09:13 -04:00
sys.exit()
try:
self._weather_values = pd.read_csv(self._path, header=0, skiprows=7,
names=['year', 'month', 'day', 'hour', 'minute',
'data_source_and_uncertainty_flags',
'dry_bulb_temperature_c', 'dew_point_temperature_c',
'relative_humidity_perc',
'atmospheric_station_pressure_pa',
'extraterrestrial_horizontal_radiation_wh_m2',
'extraterrestrial_direct_normal_radiation_wh_m2',
'horizontal_infrared_radiation_intensity_wh_m2',
'global_horizontal_radiation_wh_m2', 'direct_normal_radiation_wh_m2',
'diffuse_horizontal_radiation_wh_m2',
'global_horizontal_illuminance_lux',
'direct_normal_illuminance_lux', 'diffuse_horizontal_illuminance_lux',
'zenith_luminance_cd_m2',
'wind_direction_deg', 'wind_speed_m_s', 'total_sky_cover',
'opaque_sky_cover', 'visibility_km',
'ceiling_heigh_m_s', 'present_weather_observation',
'present_weather_codes',
'precipitable_water_mm', 'aerosol_optical_depth_10_3_ths',
'snow_depth_cm',
'days_since_last_snowfall', 'albedo', 'liquid_precipitation_depth_mm',
'liquid_precipitation_quality_hr'])
except SystemExit:
sys.stderr.write(f'Error: wrong formatting of weather file {self._path}\n')
sys.exit()
2021-04-13 15:09:13 -04:00
for building in self._city.buildings:
if cte.HOUR in building.external_temperature:
del building.external_temperature[cte.HOUR]
2021-04-13 15:09:13 -04:00
new_value = pd.DataFrame(self._weather_values[['dry_bulb_temperature_c']].to_numpy(), columns=['epw'])
2021-04-13 19:00:28 -04:00
number_invalid_records = new_value[new_value.epw == 99.9].count().epw
2021-04-13 15:09:13 -04:00
if number_invalid_records > 0:
sys.stderr.write(f'Warning: {self._path} invalid records (value of 99.9) in dry bulb temperature\n')
if cte.HOUR not in building.external_temperature:
building.external_temperature[cte.HOUR] = new_value
2021-04-13 15:09:13 -04:00
else:
pd.concat([building.external_temperature[cte.HOUR], new_value], axis=1)
2021-04-13 15:09:13 -04:00
new_value = pd.DataFrame(self._weather_values[['global_horizontal_radiation_wh_m2']].to_numpy(), columns=['epw'])
2021-04-13 19:00:28 -04:00
number_invalid_records = new_value[new_value.epw == 9999].count().epw
2021-04-13 15:09:13 -04:00
if number_invalid_records > 0:
sys.stderr.write(f'Warning: {self._path} invalid records (value of 9999) in global horizontal radiation\n')
if cte.HOUR not in building.global_horizontal:
building.global_horizontal[cte.HOUR] = new_value
2021-04-13 15:09:13 -04:00
else:
pd.concat([building.global_horizontal[cte.HOUR], new_value], axis=1)
2021-04-13 15:09:13 -04:00
new_value = pd.DataFrame(self._weather_values[['diffuse_horizontal_radiation_wh_m2']].to_numpy(), columns=['epw'])
2021-04-13 19:00:28 -04:00
number_invalid_records = new_value[new_value.epw == 9999].count().epw
2021-04-13 15:09:13 -04:00
if number_invalid_records > 0:
sys.stderr.write(f'Warning: {self._path} invalid records (value of 9999) in diffuse horizontal radiation\n')
if cte.HOUR not in building.diffuse:
building.diffuse[cte.HOUR] = new_value
2021-04-13 15:09:13 -04:00
else:
pd.concat([building.diffuse[cte.HOUR], new_value], axis=1)
2021-04-13 15:09:13 -04:00
new_value = pd.DataFrame(self._weather_values[['direct_normal_radiation_wh_m2']].to_numpy(), columns=['epw'])
2021-04-13 19:00:28 -04:00
number_invalid_records = new_value[new_value.epw == 9999].count().epw
2021-04-13 15:09:13 -04:00
if number_invalid_records > 0:
sys.stderr.write(f'Warning: {self._path} invalid records (value of 9999) in direct horizontal radiation\n')
if cte.HOUR not in building.beam:
building.beam[cte.HOUR] = new_value
2021-04-13 15:09:13 -04:00
else:
pd.concat([building.beam[cte.HOUR], new_value], axis=1)