Reviewed d18599 and adjusted the exporter consequently

This commit is contained in:
Pilar 2022-12-01 15:38:13 -05:00
parent 9941a27b8b
commit 36e534452d

View File

@ -81,7 +81,7 @@ class MonthlyEnergyBalance:
file += 'name: ' + building.name + '\n' file += 'name: ' + building.name + '\n'
file += 'year of construction: ' + str(building.year_of_construction) + '\n' file += 'year of construction: ' + str(building.year_of_construction) + '\n'
file += 'function: ' + building.function + '\n' file += 'function: ' + building.function + '\n'
file += 'floor area: ' + str(building.internal_zones[0].area) + '\n' file += 'floor area: ' + str(building.floor_area) + '\n'
file += 'storeys: ' + str(building.storeys_above_ground) + '\n' file += 'storeys: ' + str(building.storeys_above_ground) + '\n'
file += 'heated_volume: ' + str(0.85 * building.volume) + '\n' file += 'heated_volume: ' + str(0.85 * building.volume) + '\n'
file += 'volume: ' + str(building.volume) + '\n' file += 'volume: ' + str(building.volume) + '\n'