Changed air source filename. Cleanup

This commit is contained in:
Peter Yefi 2022-04-08 13:38:32 -04:00
parent 6d38d2258f
commit be10bc81f1
9 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ class AirSourceHPExport(HeatPumpExport):
:param base_path: path to energy system files :param base_path: path to energy system files
:param city: the city object :param city: the city object
:param output_path: the file to hold insel simulation results :param output_path: the file to hold insel simulation results
:param sim_type: the simulation type to run: 1 for series, 0 for parallel :param sim_type: the simulation type to run: 0 for series, 1 for parallel
""" """
tmp_file = 'heat_pumps/as_series.txt' if sim_type == 0 else 'heat_pumps/as_parallel.txt' tmp_file = 'heat_pumps/as_series.txt' if sim_type == 0 else 'heat_pumps/as_parallel.txt'
template_path = (base_path / tmp_file) template_path = (base_path / tmp_file)

View File

@ -22,7 +22,7 @@ class AirSourceHeatPumpParameters:
def __init__(self, city, base_path): def __init__(self, city, base_path):
self._city = city self._city = city
self._base_path = (base_path / 'heat_pumps/Air source.xlsx') self._base_path = (base_path / 'heat_pumps/air_source.xlsx')
def _read_file(self) -> Dict: def _read_file(self) -> Dict:
""" """