Remove useless prints
This commit is contained in:
parent
6bca2dfda4
commit
03141b74c8
|
@ -5,14 +5,11 @@ Copyright © 2020 Project Author Atiya
|
||||||
"""
|
"""
|
||||||
from city_model_structure.machine import Machine
|
from city_model_structure.machine import Machine
|
||||||
|
|
||||||
|
|
||||||
class LcaCalculations:
|
class LcaCalculations:
|
||||||
"""
|
"""
|
||||||
LCA Calculations class
|
LCA Calculations class
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
print("lca calculations class")
|
|
||||||
|
|
||||||
def emission_disposal_machines(self, ):
|
def emission_disposal_machines(self, ):
|
||||||
return Machine.work_efficiency * Machine.energy_consumption_rate * Machine.carbon_emission_factor
|
return Machine.work_efficiency * Machine.energy_consumption_rate * Machine.carbon_emission_factor
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,6 @@ class DoeIdf:
|
||||||
self._city = city
|
self._city = city
|
||||||
|
|
||||||
path = str(base_path / doe_idf_file)
|
path = str(base_path / doe_idf_file)
|
||||||
print(path)
|
|
||||||
with open(path) as xml:
|
with open(path) as xml:
|
||||||
self._schedule_library = xmltodict.parse(xml.read())
|
self._schedule_library = xmltodict.parse(xml.read())
|
||||||
|
|
||||||
|
@ -107,7 +106,6 @@ class DoeIdf:
|
||||||
for entry in schedules_day[f'{days_schedules[day_index]}']:
|
for entry in schedules_day[f'{days_schedules[day_index]}']:
|
||||||
values.append(entry)
|
values.append(entry)
|
||||||
|
|
||||||
print(values)
|
|
||||||
schedule.values = values
|
schedule.values = values
|
||||||
|
|
||||||
if 'Weekdays' in days_schedules[day_index]:
|
if 'Weekdays' in days_schedules[day_index]:
|
||||||
|
|
|
@ -22,7 +22,6 @@ class ConcordiaEnergyConsumption(ConcordiaFileReport):
|
||||||
building_measures = [self._measures["Date time"], self._measures[self._sensor_point[self._sensors[i]]]]
|
building_measures = [self._measures["Date time"], self._measures[self._sensor_point[self._sensors[i]]]]
|
||||||
building_headers = ["Date time", "Energy consumption"]
|
building_headers = ["Date time", "Energy consumption"]
|
||||||
building_energy_consumption = pd.concat(building_measures, keys=building_headers, axis=1)
|
building_energy_consumption = pd.concat(building_measures, keys=building_headers, axis=1)
|
||||||
print(building_energy_consumption)
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
sensor = ConcordiaEnergySensor(self._sensors[i])
|
sensor = ConcordiaEnergySensor(self._sensors[i])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user