Title: Report Creation
The report creation class is completed. Compared to the previous version, building system info tables are added, fuel consumption breakdown graphs are also added.
This commit is contained in:
parent
a313dd8624
commit
f8fa5a4ed3
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -14,3 +14,4 @@
|
|||
*.pyc
|
||||
*.jpg
|
||||
*.pdf
|
||||
*.png
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 67 KiB |
Binary file not shown.
Before Width: | Height: | Size: 66 KiB |
Binary file not shown.
Before Width: | Height: | Size: 69 KiB |
47
MEB_test.py
47
MEB_test.py
|
@ -8,8 +8,17 @@ from hub.imports.geometry_factory import GeometryFactory
|
|||
from hub.imports.weather_factory import WeatherFactory
|
||||
from hub.imports.results_factory import ResultFactory
|
||||
from hub.imports.usage_factory import UsageFactory
|
||||
from hub.exports.exports_factory import ExportsFactory
|
||||
from scripts.ep_workflow import energy_plus_workflow
|
||||
import matplotlib.pyplot as plt
|
||||
import random
|
||||
import matplotlib.colors as mcolors
|
||||
import hub.helpers.constants as cte
|
||||
|
||||
# Process geojson
|
||||
geojson_file = process_geojson(x=-73.5681295982132, y=45.49218262677643, diff=0.0001)
|
||||
months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October',
|
||||
'November', 'December']
|
||||
out_path = (Path(__file__).parent / 'out_files')
|
||||
file_path = (Path(__file__).parent.parent / 'input_files' / f'{geojson_file}')
|
||||
print('[simulation start]')
|
||||
|
@ -20,12 +29,38 @@ city = GeometryFactory('geojson',
|
|||
function_field='function',
|
||||
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
|
||||
print(f'city created from {file_path}')
|
||||
|
||||
# Enrich city data
|
||||
ConstructionFactory('nrcan', city).enrich()
|
||||
UsageFactory('nrcan', city).enrich()
|
||||
WeatherFactory('epw', city).enrich()
|
||||
EnergyBuildingsExportsFactory('insel_monthly_energy_balance', city, out_path).export()
|
||||
for building in city.buildings:
|
||||
insel_path = (out_path / f'{building.name}.insel')
|
||||
subprocess.run(['insel', str(insel_path)])
|
||||
ResultFactory('insel_monthly_energy_balance', city, out_path).enrich()
|
||||
print('test')
|
||||
ExportsFactory('sra', city, out_path).export()
|
||||
sra_path = (out_path / f'{city.name}_sra.xml').resolve()
|
||||
subprocess.run(['sra', str(sra_path)])
|
||||
ResultFactory('sra', city, out_path).enrich()
|
||||
EnergyBuildingsExportsFactory('insel_monthly_energy_balance', city, out_path).export_debug()
|
||||
|
||||
# Create grid of plots
|
||||
fig, axs = plt.subplots(3, 2, figsize=(12, 12))
|
||||
|
||||
# Plot monthly heating demands from Monthly Energy Balance
|
||||
for i, building in enumerate(city.buildings):
|
||||
monthly_heating_demand = [peak / 3.6e6 for peak in building.heating_peak_load[cte.MONTH]]
|
||||
ax = axs[i, 0] # Select subplot in the first column
|
||||
ax.plot(months, monthly_heating_demand)
|
||||
ax.set_title(f'Monthly Heating Demand (Building {i+1})')
|
||||
ax.set_xlabel('Month')
|
||||
ax.set_ylabel('Heating Demand')
|
||||
|
||||
# Plot monthly heating demands from EnergyPlus
|
||||
energy_plus_workflow(city)
|
||||
for i, ep in enumerate(city.buildings):
|
||||
monthly_heating_demand = [peak / 3.6e6 for peak in ep.heating_peak_load[cte.MONTH]]
|
||||
ax = axs[i, 1] # Select subplot in the second column
|
||||
ax.plot(months, monthly_heating_demand)
|
||||
ax.set_title(f'Monthly Heating Demand (Building {i+1})')
|
||||
ax.set_xlabel('Month')
|
||||
ax.set_ylabel('Heating Demand')
|
||||
|
||||
plt.tight_layout()
|
||||
plt.show()
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 19 KiB |
Binary file not shown.
Before Width: | Height: | Size: 24 KiB |
|
@ -2,12 +2,15 @@
|
|||
\@writefile{toc}{\contentsline {section}{\numberline {1}Current Status}{1}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces City Buildings Energy Demands}}{1}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Energy Intensity Information}}{1}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Building 175785 Energy Analysis}{1}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Building 176293 Energy Analysis}{1}}
|
||||
\@writefile{toc}{\contentsline {subsection}{\numberline {1.3}Building 182393 Energy Analysis}{1}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Yearly HVAC Demands}}{2}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Yearly DHW Demands}}{2}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Yearly Electricity Demands}}{3}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Building 175785 Monthly Maximum HVAC Loads}}{3}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Building 176293 Monthly Maximum HVAC Loads}}{4}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces Building 182393 Monthly Maximum HVAC Loads}}{4}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Building 175785 Consumption by source and sector breakdown}}{3}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces 175785 Information}}{4}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {4}{\ignorespaces Building 175785 Energy System Characteristics}}{5}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Building 176293 Consumption by source and sector breakdown}}{5}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {5}{\ignorespaces 176293 Information}}{6}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {6}{\ignorespaces Building 176293 Energy System Characteristics}}{7}}
|
||||
\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces Building 182393 Consumption by source and sector breakdown}}{7}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {7}{\ignorespaces 182393 Information}}{8}}
|
||||
\@writefile{lot}{\contentsline {table}{\numberline {8}{\ignorespaces Building 182393 Energy System Characteristics}}{9}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
This is pdfTeX, Version 3.1415926-1.40.11 (MiKTeX 2.9) (preloaded format=pdflatex 2024.3.1) 5 MAR 2024 16:25
|
||||
This is pdfTeX, Version 3.1415926-1.40.11 (MiKTeX 2.9) (preloaded format=pdflatex 2024.3.1) 8 MAR 2024 10:45
|
||||
entering extended mode
|
||||
**energy_system_analysis_report.tex
|
||||
|
||||
|
@ -212,17 +212,173 @@ File: electricity_demand_chart.jpg Graphic file (type jpg)
|
|||
|
||||
<use electricity_demand_chart.jpg>
|
||||
<175785_monthly_maximum_hvac_loads.jpg, id=4, 867.24pt x 433.62pt>
|
||||
File: 175785_monthly_maximum_hvac_loads.jpg Graphic file (type jpg)
|
||||
|
||||
<use 175785_monthly_maximum_hvac_loads.jpg>
|
||||
<176293_monthly_maximum_hvac_loads.jpg, id=5, 867.24pt x 433.62pt>
|
||||
File: 176293_monthly_maximum_hvac_loads.jpg Graphic file (type jpg)
|
||||
<175785_load_duration_curve.jpg, id=5, 867.24pt x 433.62pt>
|
||||
<use 175785_load_duration_curve.jpg>
|
||||
<use 175785_monthly_maximum_hvac_loads.jpg>
|
||||
<use 175785_load_duration_curve.jpg>
|
||||
Overfull \hbox (1.48767pt too wide) in paragraph at lines 65--65
|
||||
[]|\OT1/cmr/m/n/10 Maximum
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 65--65
|
||||
\OT1/cmr/m/n/10 Month-ly
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 65--65
|
||||
\OT1/cmr/m/n/10 H-VAC
|
||||
[]
|
||||
|
||||
File: 175785_monthly_maximum_hvac_loads.jpg Graphic file (type jpg)
|
||||
<use 175785_monthly_maximum_hvac_loads.jpg>
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 65--65
|
||||
[]|\OT1/cmr/m/n/10 Load
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 65--65
|
||||
\OT1/cmr/m/n/10 Du-ra-tion
|
||||
[]
|
||||
|
||||
File: 175785_load_duration_curve.jpg Graphic file (type jpg)
|
||||
<use 175785_load_duration_curve.jpg>
|
||||
Underfull \hbox (badness 7221) in paragraph at lines 96--96
|
||||
[]|\OT1/cmr/m/n/10 Unitary air con-di-tion-er with
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 7221) in paragraph at lines 96--96
|
||||
[]|\OT1/cmr/m/n/10 Unitary air con-di-tion-er with
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 96--96
|
||||
[]|\OT1/cmr/m/n/10 HVAC En-er-gy Con-sump-tion
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 96--96
|
||||
[]|\OT1/cmr/m/n/10 DHW En-er-gy Con-sump-tion
|
||||
[]
|
||||
|
||||
<175785_energy_consumption_breakdown.png, id=6, 867.24pt x 433.62pt>
|
||||
File: 175785_energy_consumption_breakdown.png Graphic file (type png)
|
||||
|
||||
<use 175785_energy_consumption_breakdown.png>
|
||||
<176293_monthly_maximum_hvac_loads.jpg, id=8, 867.24pt x 433.62pt>
|
||||
<use 176293_monthly_maximum_hvac_loads.jpg>
|
||||
<182393_monthly_maximum_hvac_loads.jpg, id=6, 867.24pt x 433.62pt>
|
||||
File: 182393_monthly_maximum_hvac_loads.jpg Graphic file (type jpg)
|
||||
<176293_load_duration_curve.jpg, id=9, 867.24pt x 433.62pt>
|
||||
<use 176293_load_duration_curve.jpg>
|
||||
<use 176293_monthly_maximum_hvac_loads.jpg>
|
||||
<use 176293_load_duration_curve.jpg>
|
||||
Overfull \hbox (1.48767pt too wide) in paragraph at lines 112--112
|
||||
[]|\OT1/cmr/m/n/10 Maximum
|
||||
[]
|
||||
|
||||
<use 182393_monthly_maximum_hvac_loads.jpg> [1
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 112--112
|
||||
\OT1/cmr/m/n/10 Month-ly
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 112--112
|
||||
\OT1/cmr/m/n/10 H-VAC
|
||||
[]
|
||||
|
||||
File: 176293_monthly_maximum_hvac_loads.jpg Graphic file (type jpg)
|
||||
<use 176293_monthly_maximum_hvac_loads.jpg>
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 112--112
|
||||
[]|\OT1/cmr/m/n/10 Load
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 112--112
|
||||
\OT1/cmr/m/n/10 Du-ra-tion
|
||||
[]
|
||||
|
||||
File: 176293_load_duration_curve.jpg Graphic file (type jpg)
|
||||
<use 176293_load_duration_curve.jpg>
|
||||
Underfull \hbox (badness 7221) in paragraph at lines 143--143
|
||||
[]|\OT1/cmr/m/n/10 Unitary air con-di-tion-er with
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 7221) in paragraph at lines 143--143
|
||||
[]|\OT1/cmr/m/n/10 Unitary air con-di-tion-er with
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 143--143
|
||||
[]|\OT1/cmr/m/n/10 HVAC En-er-gy Con-sump-tion
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 143--143
|
||||
[]|\OT1/cmr/m/n/10 DHW En-er-gy Con-sump-tion
|
||||
[]
|
||||
|
||||
<176293_energy_consumption_breakdown.png, id=10, 867.24pt x 433.62pt>
|
||||
File: 176293_energy_consumption_breakdown.png Graphic file (type png)
|
||||
|
||||
<use 176293_energy_consumption_breakdown.png>
|
||||
<182393_monthly_maximum_hvac_loads.jpg, id=11, 867.24pt x 433.62pt>
|
||||
<use 182393_monthly_maximum_hvac_loads.jpg>
|
||||
<182393_load_duration_curve.jpg, id=12, 867.24pt x 433.62pt>
|
||||
<use 182393_load_duration_curve.jpg>
|
||||
<use 182393_monthly_maximum_hvac_loads.jpg>
|
||||
<use 182393_load_duration_curve.jpg>
|
||||
Overfull \hbox (1.48767pt too wide) in paragraph at lines 159--159
|
||||
[]|\OT1/cmr/m/n/10 Maximum
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 159--159
|
||||
\OT1/cmr/m/n/10 Month-ly
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 159--159
|
||||
\OT1/cmr/m/n/10 H-VAC
|
||||
[]
|
||||
|
||||
File: 182393_monthly_maximum_hvac_loads.jpg Graphic file (type jpg)
|
||||
<use 182393_monthly_maximum_hvac_loads.jpg>
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 159--159
|
||||
[]|\OT1/cmr/m/n/10 Load
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 159--159
|
||||
\OT1/cmr/m/n/10 Du-ra-tion
|
||||
[]
|
||||
|
||||
File: 182393_load_duration_curve.jpg Graphic file (type jpg)
|
||||
<use 182393_load_duration_curve.jpg>
|
||||
Underfull \hbox (badness 7221) in paragraph at lines 190--190
|
||||
[]|\OT1/cmr/m/n/10 Unitary air con-di-tion-er with
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 7221) in paragraph at lines 190--190
|
||||
[]|\OT1/cmr/m/n/10 Unitary air con-di-tion-er with
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 190--190
|
||||
[]|\OT1/cmr/m/n/10 HVAC En-er-gy Con-sump-tion
|
||||
[]
|
||||
|
||||
|
||||
Underfull \hbox (badness 10000) in paragraph at lines 190--190
|
||||
[]|\OT1/cmr/m/n/10 DHW En-er-gy Con-sump-tion
|
||||
[]
|
||||
|
||||
<182393_energy_consumption_breakdown.png, id=13, 867.24pt x 433.62pt>
|
||||
File: 182393_energy_consumption_breakdown.png Graphic file (type png)
|
||||
|
||||
<use 182393_energy_consumption_breakdown.png> [1
|
||||
|
||||
|
||||
|
||||
|
@ -230,29 +386,35 @@ pdfTeX warning: pdflatex (file pdftex.map): cannot open font map file
|
|||
] [2 <C:/Users/umroot/PycharmProjects/system_assignation/hvac_demand_chart.jpg>
|
||||
<C:/Users/umroot/PycharmProjects/system_assignation/dhw_demand_chart.jpg>]
|
||||
[3 <C:/Users/umroot/PycharmProjects/system_assignation/electricity_demand_chart
|
||||
.jpg> <C:/Users/umroot/PycharmProjects/system_assignation/175785_monthly_maximu
|
||||
m_hvac_loads.jpg>] [4 <C:/Users/umroot/PycharmProjects/system_assignation/17629
|
||||
3_monthly_maximum_hvac_loads.jpg> <C:/Users/umroot/PycharmProjects/system_assig
|
||||
nation/182393_monthly_maximum_hvac_loads.jpg>]
|
||||
.jpg> <C:/Users/umroot/PycharmProjects/system_assignation/175785_energy_consump
|
||||
tion_breakdown.png>] [4 <C:/Users/umroot/PycharmProjects/system_assignation/175
|
||||
785_monthly_maximum_hvac_loads.jpg> <C:/Users/umroot/PycharmProjects/system_ass
|
||||
ignation/175785_load_duration_curve.jpg>] [5 <C:/Users/umroot/PycharmProjects/s
|
||||
ystem_assignation/176293_energy_consumption_breakdown.png>] [6 <C:/Users/umroot
|
||||
/PycharmProjects/system_assignation/176293_monthly_maximum_hvac_loads.jpg> <C:/
|
||||
Users/umroot/PycharmProjects/system_assignation/176293_load_duration_curve.jpg>
|
||||
] [7 <C:/Users/umroot/PycharmProjects/system_assignation/182393_energy_consumpt
|
||||
ion_breakdown.png>] [8 <C:/Users/umroot/PycharmProjects/system_assignation/1823
|
||||
93_monthly_maximum_hvac_loads.jpg> <C:/Users/umroot/PycharmProjects/system_assi
|
||||
gnation/182393_load_duration_curve.jpg>] [9]
|
||||
(C:\Users\umroot\PycharmProjects\system_assignation\energy_system_analysis_repo
|
||||
rt.aux) )
|
||||
Here is how much of TeX's memory you used:
|
||||
1285 strings out of 495362
|
||||
18361 string characters out of 3182939
|
||||
82226 words of memory out of 3000000
|
||||
4474 multiletter control sequences out of 15000+200000
|
||||
7587 words of font info for 27 fonts, out of 3000000 for 9000
|
||||
1315 strings out of 495362
|
||||
19499 string characters out of 3182939
|
||||
102226 words of memory out of 3000000
|
||||
4497 multiletter control sequences out of 15000+200000
|
||||
7280 words of font info for 26 fonts, out of 3000000 for 9000
|
||||
14 hyphenation exceptions out of 8191
|
||||
25i,9n,32p,227b,254s stack positions out of 5000i,500n,10000p,200000b,50000s
|
||||
25i,13n,32p,227b,364s stack positions out of 5000i,500n,10000p,200000b,50000s
|
||||
<C:\Users\umroot\AppData\Local\MiKTeX\2.9\fonts\pk\ljfour\public\cm\d
|
||||
pi600\cmbx12.pk> <C:\Users\umroot\AppData\Local\MiKTeX\2.9\fonts\pk\ljfour\publ
|
||||
ic\cm\dpi600\cmr10.pk> <C:\Users\umroot\AppData\Local\MiKTeX\2.9\fonts\pk\ljfou
|
||||
r\public\cm\dpi720\cmbx12.pk> <C:\Users\umroot\AppData\Local\MiKTeX\2.9\fonts\p
|
||||
k\ljfour\public\cm\dpi600\cmr12.pk> <C:\Users\umroot\AppData\Local\MiKTeX\2.9\f
|
||||
onts\pk\ljfour\public\cm\dpi600\cmr17.pk>
|
||||
Output written on energy_system_analysis_report.pdf (4 pages, 331003 bytes).
|
||||
pi600\cmr10.pk> <C:\Users\umroot\AppData\Local\MiKTeX\2.9\fonts\pk\ljfour\publi
|
||||
c\cm\dpi720\cmbx12.pk> <C:\Users\umroot\AppData\Local\MiKTeX\2.9\fonts\pk\ljfou
|
||||
r\public\cm\dpi600\cmr12.pk> <C:\Users\umroot\AppData\Local\MiKTeX\2.9\fonts\pk
|
||||
\ljfour\public\cm\dpi600\cmr17.pk>
|
||||
Output written on energy_system_analysis_report.pdf (9 pages, 976110 bytes).
|
||||
PDF statistics:
|
||||
165 PDF objects out of 1000 (max. 8388607)
|
||||
179 PDF objects out of 1000 (max. 8388607)
|
||||
0 named destinations out of 1000 (max. 500000)
|
||||
31 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
61 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
|
||||
|
|
Binary file not shown.
|
@ -53,22 +53,145 @@ Building Name & Total Floor Area m2 & Heating Demand Intensity kWh/m2 & Cooling
|
|||
\includegraphics[width=0.8\textwidth]{electricity_demand_chart.jpg}
|
||||
\caption{Yearly Electricity Demands}
|
||||
\end{figure}
|
||||
\subsection{Building 175785 Energy Analysis}
|
||||
\begin{table}[htbp]
|
||||
\caption{175785 Information}
|
||||
\centering
|
||||
\begin{tabularx}{\textwidth}{|p{1.5cm}|X|}
|
||||
\hline
|
||||
Maximum Monthly HVAC Demands & \includegraphics[width=1\linewidth]{175785_monthly_maximum_hvac_loads.jpg} \\
|
||||
\hline
|
||||
Load Duration Curve & \includegraphics[width=1\linewidth]{175785_load_duration_curve.jpg} \\
|
||||
\hline
|
||||
\end{tabularx}
|
||||
\end{table}
|
||||
\begin{table}[htbp]
|
||||
\caption{Building 175785 Energy System Characteristics}
|
||||
\centering
|
||||
\begin{tabularx}{\textwidth}{|X|X|X|}
|
||||
\hline
|
||||
Detail & Existing System & Proposed System \\
|
||||
\hline
|
||||
Energy System Archetype & system 1 gas & - \\
|
||||
\hline
|
||||
System Schematic & - & - \\
|
||||
\hline
|
||||
Heating System & Unitary air conditioner with baseboard heater fuel fired boiler & - \\
|
||||
\hline
|
||||
Cooling System & Unitary air conditioner air cooled DX with external condenser & - \\
|
||||
\hline
|
||||
DHW System & Unitary air conditioner with baseboard heater fuel fired boiler & - \\
|
||||
\hline
|
||||
Electricity & Grid & - \\
|
||||
\hline
|
||||
Fuel(s) & ['Gas', 'Electricity'] & - \\
|
||||
\hline
|
||||
HVAC Energy Consumption (MWh) & 55.28 & - \\
|
||||
\hline
|
||||
DHW Energy Consumption (MWH) & 40.18 & - \\
|
||||
\hline
|
||||
Yearly Operational Cost (CAD) & - & - \\
|
||||
\hline
|
||||
Life Cycle Cost (CAD) & - & - \\
|
||||
\hline
|
||||
\end{tabularx}
|
||||
\end{table}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[width=0.8\textwidth]{175785_monthly_maximum_hvac_loads.jpg}
|
||||
\caption{Building 175785 Monthly Maximum HVAC Loads}
|
||||
\includegraphics[width=0.8\textwidth]{175785_energy_consumption_breakdown.png}
|
||||
\caption{Building 175785 Consumption by source and sector breakdown}
|
||||
\end{figure}
|
||||
\subsection{Building 176293 Energy Analysis}
|
||||
\begin{table}[htbp]
|
||||
\caption{176293 Information}
|
||||
\centering
|
||||
\begin{tabularx}{\textwidth}{|p{1.5cm}|X|}
|
||||
\hline
|
||||
Maximum Monthly HVAC Demands & \includegraphics[width=1\linewidth]{176293_monthly_maximum_hvac_loads.jpg} \\
|
||||
\hline
|
||||
Load Duration Curve & \includegraphics[width=1\linewidth]{176293_load_duration_curve.jpg} \\
|
||||
\hline
|
||||
\end{tabularx}
|
||||
\end{table}
|
||||
\begin{table}[htbp]
|
||||
\caption{Building 176293 Energy System Characteristics}
|
||||
\centering
|
||||
\begin{tabularx}{\textwidth}{|X|X|X|}
|
||||
\hline
|
||||
Detail & Existing System & Proposed System \\
|
||||
\hline
|
||||
Energy System Archetype & system 1 gas & - \\
|
||||
\hline
|
||||
System Schematic & - & - \\
|
||||
\hline
|
||||
Heating System & Unitary air conditioner with baseboard heater fuel fired boiler & - \\
|
||||
\hline
|
||||
Cooling System & Unitary air conditioner air cooled DX with external condenser & - \\
|
||||
\hline
|
||||
DHW System & Unitary air conditioner with baseboard heater fuel fired boiler & - \\
|
||||
\hline
|
||||
Electricity & Grid & - \\
|
||||
\hline
|
||||
Fuel(s) & ['Gas', 'Electricity'] & - \\
|
||||
\hline
|
||||
HVAC Energy Consumption (MWh) & 48.43 & - \\
|
||||
\hline
|
||||
DHW Energy Consumption (MWH) & 31.75 & - \\
|
||||
\hline
|
||||
Yearly Operational Cost (CAD) & - & - \\
|
||||
\hline
|
||||
Life Cycle Cost (CAD) & - & - \\
|
||||
\hline
|
||||
\end{tabularx}
|
||||
\end{table}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[width=0.8\textwidth]{176293_monthly_maximum_hvac_loads.jpg}
|
||||
\caption{Building 176293 Monthly Maximum HVAC Loads}
|
||||
\includegraphics[width=0.8\textwidth]{176293_energy_consumption_breakdown.png}
|
||||
\caption{Building 176293 Consumption by source and sector breakdown}
|
||||
\end{figure}
|
||||
\subsection{Building 182393 Energy Analysis}
|
||||
\begin{table}[htbp]
|
||||
\caption{182393 Information}
|
||||
\centering
|
||||
\begin{tabularx}{\textwidth}{|p{1.5cm}|X|}
|
||||
\hline
|
||||
Maximum Monthly HVAC Demands & \includegraphics[width=1\linewidth]{182393_monthly_maximum_hvac_loads.jpg} \\
|
||||
\hline
|
||||
Load Duration Curve & \includegraphics[width=1\linewidth]{182393_load_duration_curve.jpg} \\
|
||||
\hline
|
||||
\end{tabularx}
|
||||
\end{table}
|
||||
\begin{table}[htbp]
|
||||
\caption{Building 182393 Energy System Characteristics}
|
||||
\centering
|
||||
\begin{tabularx}{\textwidth}{|X|X|X|}
|
||||
\hline
|
||||
Detail & Existing System & Proposed System \\
|
||||
\hline
|
||||
Energy System Archetype & system 8 gas & - \\
|
||||
\hline
|
||||
System Schematic & - & - \\
|
||||
\hline
|
||||
Heating System & Unitary air conditioner with baseboard heater fuel fired boiler & - \\
|
||||
\hline
|
||||
Cooling System & - & - \\
|
||||
\hline
|
||||
DHW System & Unitary air conditioner with baseboard heater fuel fired boiler & - \\
|
||||
\hline
|
||||
Electricity & Grid & - \\
|
||||
\hline
|
||||
Fuel(s) & ['Gas'] & - \\
|
||||
\hline
|
||||
HVAC Energy Consumption (MWh) & 38.09 & - \\
|
||||
\hline
|
||||
DHW Energy Consumption (MWH) & 17.12 & - \\
|
||||
\hline
|
||||
Yearly Operational Cost (CAD) & - & - \\
|
||||
\hline
|
||||
Life Cycle Cost (CAD) & - & - \\
|
||||
\hline
|
||||
\end{tabularx}
|
||||
\end{table}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[width=0.8\textwidth]{182393_monthly_maximum_hvac_loads.jpg}
|
||||
\caption{Building 182393 Monthly Maximum HVAC Loads}
|
||||
\includegraphics[width=0.8\textwidth]{182393_energy_consumption_breakdown.png}
|
||||
\caption{Building 182393 Consumption by source and sector breakdown}
|
||||
\end{figure}
|
||||
\end{document}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -74,3 +74,6 @@ class EnergyBuildingsExportsFactory:
|
|||
:return: None
|
||||
"""
|
||||
return getattr(self, self._export_type, lambda: None)
|
||||
|
||||
def export_debug(self):
|
||||
return InselMonthlyEnergyBalance(self._city, self._path, self._custom_insel_block)
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -46,90 +46,6 @@
|
|||
"height": 12,
|
||||
"year_of_construction": 1986
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
-73.56802228176146,
|
||||
45.49217205619571
|
||||
],
|
||||
[
|
||||
-73.56798225825526,
|
||||
45.492213743742184
|
||||
],
|
||||
[
|
||||
-73.56811660206223,
|
||||
45.49227791893211
|
||||
],
|
||||
[
|
||||
-73.56815668696326,
|
||||
45.49223626189717
|
||||
],
|
||||
[
|
||||
-73.56802228176146,
|
||||
45.49217205619571
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"id": 176293,
|
||||
"properties": {
|
||||
"name": "01044604",
|
||||
"address": "rue Victor-Hugo (MTL) 1636",
|
||||
"function": "1000",
|
||||
"height": 12,
|
||||
"year_of_construction": 1986
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"geometry": {
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[
|
||||
[
|
||||
-73.56809506939487,
|
||||
45.49209624228538
|
||||
],
|
||||
[
|
||||
-73.56809246893268,
|
||||
45.4920988416879
|
||||
],
|
||||
[
|
||||
-73.56821287000538,
|
||||
45.49216124158406
|
||||
],
|
||||
[
|
||||
-73.56822186852654,
|
||||
45.49216584161625
|
||||
],
|
||||
[
|
||||
-73.56826745951075,
|
||||
45.492118613912375
|
||||
],
|
||||
[
|
||||
-73.56813497596143,
|
||||
45.49205532773507
|
||||
],
|
||||
[
|
||||
-73.56809506939487,
|
||||
45.49209624228538
|
||||
]
|
||||
]
|
||||
]
|
||||
},
|
||||
"id": 182393,
|
||||
"properties": {
|
||||
"name": "01044601",
|
||||
"address": "rue Victor-Hugo (MTL) 1626",
|
||||
"function": "1000",
|
||||
"height": 8,
|
||||
"year_of_construction": 1986
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
13
main.py
13
main.py
|
@ -10,6 +10,8 @@ from hub.imports.weather_factory import WeatherFactory
|
|||
from hub.imports.results_factory import ResultFactory
|
||||
from hub.exports.exports_factory import ExportsFactory
|
||||
from report_creation import EnergySystemAnalysisReport
|
||||
from scripts import random_assignation
|
||||
from hub.imports.energy_systems_factory import EnergySystemsFactory
|
||||
# Specify the GeoJSON file path
|
||||
geojson_file = process_geojson(x=-73.5681295982132, y=45.49218262677643, diff=0.0001)
|
||||
file_path = (Path(__file__).parent.parent / 'input_files' / f'{geojson_file}')
|
||||
|
@ -24,7 +26,7 @@ city = GeometryFactory('geojson',
|
|||
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
|
||||
# Enrich city data
|
||||
ConstructionFactory('nrcan', city).enrich()
|
||||
UsageFactory('nrcan', city).enrich()
|
||||
UsageFactory('comnet', city).enrich()
|
||||
WeatherFactory('epw', city).enrich()
|
||||
ExportsFactory('sra', city, output_path).export()
|
||||
sra_path = (output_path / f'{city.name}_sra.xml').resolve()
|
||||
|
@ -32,6 +34,8 @@ subprocess.run(['sra', str(sra_path)])
|
|||
ResultFactory('sra', city, output_path).enrich()
|
||||
# Run EnergyPlus workflow
|
||||
energy_plus_workflow(city)
|
||||
random_assignation.call_random(city.buildings, random_assignation.residential_systems_percentage)
|
||||
EnergySystemsFactory('montreal_custom', city).enrich()
|
||||
report = EnergySystemAnalysisReport('energy_system_analysis_report.tex', city)
|
||||
report.add_section('Current Status')
|
||||
report.building_energy_info()
|
||||
|
@ -40,8 +44,11 @@ report.add_image('hvac_demand_chart.jpg', caption='Yearly HVAC Demands')
|
|||
report.add_image('dhw_demand_chart.jpg', caption='Yearly DHW Demands')
|
||||
report.add_image('electricity_demand_chart.jpg', caption='Yearly Electricity Demands')
|
||||
report.maximum_monthly_hvac_chart()
|
||||
report.load_duration_curves()
|
||||
for building in city.buildings:
|
||||
report.add_subsection(f'Building {building.name} Energy Analysis')
|
||||
report.add_image(f'{building.name}_monthly_maximum_hvac_loads.jpg', caption=f'Building {building.name} Monthly Maximum HVAC Loads')
|
||||
report.individual_building_info(building)
|
||||
report.building_existing_system_info(building)
|
||||
report.building_fuel_consumption_breakdown(building)
|
||||
report.add_image(f'{building.name}_energy_consumption_breakdown.png', caption=f'Building {building.name} Consumption by source and sector breakdown')
|
||||
report.save_report()
|
||||
report.compile_to_pdf()
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +1,5 @@
|
|||
Processing Schedule Input -- Start
|
||||
found (Current Working Directory)=C:\Users\umroot\PycharmProjects\system_assignation\out_files\cold_temp schedules 175785.dat
|
||||
found (Current Working Directory)=C:\Users\umroot\PycharmProjects\system_assignation\out_files\cold_temp schedules 176293.dat
|
||||
found (Current Working Directory)=C:\Users\umroot\PycharmProjects\system_assignation\out_files\cold_temp schedules 182393.dat
|
||||
Processing Schedule Input -- Complete
|
||||
MonthlyInputCount= 2
|
||||
sizeMonthlyInput= 25
|
||||
|
@ -15,25 +13,25 @@ found (Current Working Directory)=C:\Users\umroot\PycharmProjects\system_assigna
|
|||
numSubTable= 79
|
||||
sizeColumnTag= 800
|
||||
numColumnTag= 618
|
||||
sizeTableEntry= 3200
|
||||
numTableEntry= 1957
|
||||
sizeTableEntry= 1600
|
||||
numTableEntry= 1151
|
||||
sizeCompSizeTableEntry= 0
|
||||
numCompSizeTableEntry= 0
|
||||
NumOfRVariable= 4420
|
||||
NumOfRVariable(Total)= 4420
|
||||
NumOfRVariable(Actual)= 45
|
||||
NumOfRVariable(Summed)= 36
|
||||
NumOfRVariable(Meter)= 36
|
||||
NumOfIVariable= 317
|
||||
NumOfIVariable(Total)= 317
|
||||
NumOfRVariable= 1748
|
||||
NumOfRVariable(Total)= 1748
|
||||
NumOfRVariable(Actual)= 19
|
||||
NumOfRVariable(Summed)= 16
|
||||
NumOfRVariable(Meter)= 16
|
||||
NumOfIVariable= 135
|
||||
NumOfIVariable(Total)= 135
|
||||
NumOfIVariable(Actual)= 0
|
||||
NumOfIVariable(Summed)= 0
|
||||
MaxRVariable= 1000
|
||||
MaxIVariable= 10
|
||||
NumEnergyMeters= 78
|
||||
NumVarMeterArrays= 36
|
||||
NumEnergyMeters= 54
|
||||
NumVarMeterArrays= 16
|
||||
maxUniqueKeyCount= 1500
|
||||
maxNumberOfFigures= 3
|
||||
maxNumberOfFigures= 1
|
||||
MAXHCArrayBounds= 14
|
||||
MaxVerticesPerSurface= 6
|
||||
NumReportList= 500
|
||||
|
@ -48,5 +46,5 @@ found (Current Working Directory)=C:\Users\umroot\PycharmProjects\system_assigna
|
|||
numInternalVariablesUsed= 0
|
||||
numEMSInternalVarsAvailable= 0
|
||||
maxEMSInternalVarsAvailable= 0
|
||||
NumOfNodeConnections= 12
|
||||
NumOfNodeConnections= 4
|
||||
MaxNumOfNodeConnections= 1000
|
||||
|
|
|
@ -1,135 +0,0 @@
|
|||
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.03.05 16:24
|
||||
! This file shows details about the branches, nodes, and other
|
||||
! elements of the flow connections.
|
||||
! This file is intended for use in "debugging" potential problems
|
||||
! that may also be detected by the program, but may be more easily
|
||||
! identified by "eye".
|
||||
! This file is also intended to support software which draws a
|
||||
! schematic diagram of the HVAC system.
|
||||
! ===============================================================
|
||||
! #Nodes,<Number of Unique Nodes>
|
||||
#Nodes,9
|
||||
! <Node>,<NodeNumber>,<Node Name>,<Node Fluid Type>,<# Times Node Referenced After Definition>
|
||||
Node,1,175785 ZONE AIR NODE,Air,0
|
||||
Node,2,175785 IDEAL LOADS SUPPLY INLET,Air,1
|
||||
Node,3,175785 RETURN OUTLET,Air,0
|
||||
Node,4,176293 ZONE AIR NODE,Air,0
|
||||
Node,5,176293 IDEAL LOADS SUPPLY INLET,Air,1
|
||||
Node,6,176293 RETURN OUTLET,Air,0
|
||||
Node,7,182393 ZONE AIR NODE,Air,0
|
||||
Node,8,182393 IDEAL LOADS SUPPLY INLET,Air,1
|
||||
Node,9,182393 RETURN OUTLET,Air,0
|
||||
! ===============================================================
|
||||
! Suspicious nodes have 0 references. It is normal for some nodes, however.
|
||||
! Listing nodes with 0 references (culled from previous list):
|
||||
! <Suspicious Node>,<NodeNumber>,<Node Name>,<Node Fluid Type>,<# Times Node Referenced After Definition>
|
||||
Suspicious Node,1,175785 ZONE AIR NODE,Air,0
|
||||
Suspicious Node,3,175785 RETURN OUTLET,Air,0
|
||||
Suspicious Node,4,176293 ZONE AIR NODE,Air,0
|
||||
Suspicious Node,6,176293 RETURN OUTLET,Air,0
|
||||
Suspicious Node,7,182393 ZONE AIR NODE,Air,0
|
||||
Suspicious Node,9,182393 RETURN OUTLET,Air,0
|
||||
! ===============================================================
|
||||
! <#Branch Lists>,<Number of Branch Lists>
|
||||
#Branch Lists,0
|
||||
! <Branch List>,<Branch List Count>,<Branch List Name>,<Loop Name>,<Loop Type>,<Number of Branches>
|
||||
! <Branch>,<Branch Count>,<Branch Name>,<Loop Name>,<Loop Type>,<Branch Inlet Node Name>,<Branch Outlet Node Name>
|
||||
! ===============================================================
|
||||
! <#Supply Air Paths>,<Number of Supply Air Paths>
|
||||
#Supply Air Paths,0
|
||||
! <Supply Air Path>,<Supply Air Path Count>,<Supply Air Path Name>,<AirLoopHVAC Name>
|
||||
! <#Components on Supply Air Path>,<Number of Components>
|
||||
! <Supply Air Path Component>,<Component Count>,<Component Type>,<Component Name>,<AirLoopHVAC Name>
|
||||
! <#Outlet Nodes on Supply Air Path Component>,<Number of Nodes>
|
||||
! <Supply Air Path Component Nodes>,<Node Count>,<Component Type>,<Component Name>,<Inlet Node Name>,<Outlet Node Name>,<AirLoopHVAC Name>
|
||||
! ===============================================================
|
||||
! <#Return Air Paths>,<Number of Return Air Paths>
|
||||
#Return Air Paths,0
|
||||
! <Return Air Path>,<Return Air Path Count>,<Return Air Path Name>,<AirLoopHVAC Name>
|
||||
! <#Components on Return Air Path>,<Number of Components>
|
||||
! <Return Air Path Component>,<Component Count>,<Component Type>,<Component Name>,<AirLoopHVAC Name>
|
||||
! <#Inlet Nodes on Return Air Path Component>,<Number of Nodes>
|
||||
! <Return Air Path Component Nodes>,<Node Count>,<Component Type>,<Component Name>,<Inlet Node Name>,<Outlet Node Name>,<AirLoopHVAC Name>
|
||||
! ===============================================================
|
||||
! #Outdoor Air Nodes,<Number of Outdoor Air Nodes>
|
||||
#Outdoor Air Nodes,0
|
||||
! ===============================================================
|
||||
! <#Component Sets>,<Number of Component Sets>
|
||||
#Component Sets,0
|
||||
! <Component Set>,<Component Set Count>,<Parent Object Type>,<Parent Object Name>,<Component Type>,<Component Name>,<Inlet Node ID>,<Outlet Node ID>,<Description>
|
||||
! ===============================================================
|
||||
! <# Plant Loops>,<Number of Plant Loops>
|
||||
#Plant Loops,0
|
||||
! <Plant Loop>,<Plant Loop Name>,<Loop Type>,<Inlet Node Name>,<Outlet Node Name>,<Branch List>,<Connector List>
|
||||
! <Plant Loop Connector>,<Connector Type>,<Connector Name>,<Loop Name>,<Loop Type>,<Number of Inlets/Outlets>
|
||||
! <Plant Loop Connector Branches>,<Connector Node Count>,<Connector Type>,<Connector Name>,<Inlet Branch>,<Outlet Branch>,<Loop Name>,<Loop Type>
|
||||
! <Plant Loop Connector Nodes>,<Connector Node Count>,<Connector Type>,<Connector Name>,<Inlet Node>,<Outlet Node>,<Loop Name>,<Loop Type>
|
||||
! <Plant Loop Supply Connection>,<Plant Loop Name>,<Supply Side Outlet Node Name>,<Demand Side Inlet Node Name>
|
||||
! <Plant Loop Return Connection>,<Plant Loop Name>,<Demand Side Outlet Node Name>,<Supply Side Inlet Node Name>
|
||||
! ===============================================================
|
||||
! <# Condenser Loops>,<Number of Condenser Loops>
|
||||
#Condenser Loops,0
|
||||
! <Condenser Loop>,<Condenser Loop Name>,<Loop Type>,<Inlet Node Name>,<Outlet Node Name>,<Branch List>,<Connector List>
|
||||
! <Condenser Loop Connector>,<Connector Type>,<Connector Name>,<Loop Name>,<Loop Type>,<Number of Inlets/Outlets>
|
||||
! <Condenser Loop Connector Branches>,<Connector Node Count>,<Connector Type>,<Connector Name>,<Inlet Branch>,<Outlet Branch>,<Loop Name>,<Loop Type>
|
||||
! <Condenser Loop Connector Nodes>,<Connector Node Count>,<Connector Type>,<Connector Name>,<Inlet Node>,<Outlet Node>,<Loop Name>,<Loop Type>
|
||||
! <Condenser Loop Supply Connection>,<Condenser Loop Name>,<Supply Side Outlet Node Name>,<Demand Side Inlet Node Name>
|
||||
! <Condenser Loop Return Connection>,<Condenser Loop Name>,<Demand Side Outlet Node Name>,<Supply Side Inlet Node Name>
|
||||
! ===============================================================
|
||||
! <# Controlled Zones>,<Number of Controlled Zones>
|
||||
#Controlled Zones,3
|
||||
! <Controlled Zone>,<Controlled Zone Name>,<Equip List Name>,<Control List Name>,<Zone Node Name>,<# Inlet Nodes>,<# Exhaust Nodes>,<# Return Nodes>
|
||||
! <Controlled Zone Inlet>,<Inlet Node Count>,<Controlled Zone Name>,<Supply Air Inlet Node Name>,<SD Sys:Cooling/Heating [DD:Cooling] Inlet Node Name>,<DD Sys:Heating Inlet Node Name>
|
||||
! <Controlled Zone Exhaust>,<Exhaust Node Count>,<Controlled Zone Name>,<Exhaust Air Node Name>
|
||||
Controlled Zone,175785,175785 EQUIPMENT,,175785 ZONE AIR NODE,1,0,1
|
||||
Controlled Zone Inlet,1,175785,175785 IDEAL LOADS SUPPLY INLET,Undefined,N/A
|
||||
Controlled Zone Return,1,175785,175785 RETURN OUTLET
|
||||
Controlled Zone,176293,176293 EQUIPMENT,,176293 ZONE AIR NODE,1,0,1
|
||||
Controlled Zone Inlet,1,176293,176293 IDEAL LOADS SUPPLY INLET,Undefined,N/A
|
||||
Controlled Zone Return,1,176293,176293 RETURN OUTLET
|
||||
Controlled Zone,182393,182393 EQUIPMENT,,182393 ZONE AIR NODE,1,0,1
|
||||
Controlled Zone Inlet,1,182393,182393 IDEAL LOADS SUPPLY INLET,Undefined,N/A
|
||||
Controlled Zone Return,1,182393,182393 RETURN OUTLET
|
||||
! ===============================================================
|
||||
! <#Zone Equipment Lists>,<Number of Zone Equipment Lists>
|
||||
#Zone Equipment Lists,3
|
||||
! <Zone Equipment List>,<Zone Equipment List Count>,<Zone Equipment List Name>,<Zone Name>,<Number of Components>
|
||||
! <Zone Equipment Component>,<Component Count>,<Component Type>,<Component Name>,<Zone Name>,<Heating Priority>,<Cooling Priority>
|
||||
Zone Equipment List,1,175785 EQUIPMENT,175785,1
|
||||
Zone Equipment Component,1,ZONEHVAC:IDEALLOADSAIRSYSTEM,175785 IDEAL LOADS AIR SYSTEM,175785,1,1
|
||||
Zone Equipment List,2,176293 EQUIPMENT,176293,1
|
||||
Zone Equipment Component,1,ZONEHVAC:IDEALLOADSAIRSYSTEM,176293 IDEAL LOADS AIR SYSTEM,176293,1,1
|
||||
Zone Equipment List,3,182393 EQUIPMENT,182393,1
|
||||
Zone Equipment Component,1,ZONEHVAC:IDEALLOADSAIRSYSTEM,182393 IDEAL LOADS AIR SYSTEM,182393,1,1
|
||||
! ===============================================================
|
||||
! <#AirLoopHVACs>,<Number of AirLoopHVACs>
|
||||
#AirLoopHVACs,0
|
||||
! <AirLoopHVAC>,<Air Loop Name>,<# Return Nodes>,<# Supply Nodes>,<# Zones Cooled>,<# Zones Heated>,<Outdoor Air Used>
|
||||
! <AirLoop Return Connections>,<Connection Count>,<AirLoopHVAC Name>,<Zn Eqp Return Node #>,<Zn Eqp Return Node Name>,<AirLoop Return Node #>,<Air Loop Return Node Name>
|
||||
! <AirLoop Supply Connections>,<Connection Count>,<AirLoopHVAC Name>,<Zn Eqp Supply Node #>,<Zn Eqp Supply Node Name>,<AirLoop Supply Node #>,<Air Loop Supply Node Name>
|
||||
! <Cooled Zone Info>,<Cooled Zone Count>,<Cooled Zone Name>,<Cooled Zone Inlet Node #>,<Cooled Zone Inlet Node Name>,<AirLoopHVAC Name>
|
||||
! <Heated Zone Info>,<Heated Zone Count>,<Heated Zone Name>,<Heated Zone Inlet Node #>,<Heated Zone Inlet Node Name>,<AirLoopHVAC Name>
|
||||
! <Outdoor Air Connections>,<OA Inlet Node #>,<OA Return Air Inlet Node Name>,<OA Outlet Node #>,<OA Mixed Air Outlet Node Name>,<AirLoopHVAC Name>
|
||||
! <AirLoopHVAC Connector>,<Connector Type>,<Connector Name>,<Loop Name>,<Loop Type>,<Number of Inlets/Outlets>
|
||||
! <AirLoopHVAC Connector Branches>,<Connector Node Count>,<Connector Type>,<Connector Name>,<Inlet Branch>,<Outlet Branch>,<Loop Name>,<Loop Type>
|
||||
! <AirLoopHVAC Connector Nodes>,<Connector Node Count>,<Connector Type>,<Connector Name>,<Inlet Node>,<Outlet Node>,<Loop Name>,<Loop Type>
|
||||
! ===============================================================
|
||||
! <#Parent Node Connections>,<Number of Parent Node Connections>
|
||||
#Parent Node Connections,0
|
||||
! <Parent Node Connection>,<Node Name>,<Node ObjectType>,<Node ObjectName>,<Node ConnectionType>,<Node FluidStream>
|
||||
! ===============================================================
|
||||
! <#Non-Parent Node Connections>,<Number of Non-Parent Node Connections>
|
||||
#Non-Parent Node Connections,12
|
||||
! <Non-Parent Node Connection>,<Node Name>,<Node ObjectType>,<Node ObjectName>,<Node ConnectionType>,<Node FluidStream>
|
||||
Non-Parent Node Connection,175785 ZONE AIR NODE,ZONEHVAC:EQUIPMENTCONNECTIONS,175785,ZoneNode,1
|
||||
Non-Parent Node Connection,175785 IDEAL LOADS SUPPLY INLET,ZONEHVAC:EQUIPMENTCONNECTIONS,175785,ZoneInlet,1
|
||||
Non-Parent Node Connection,175785 RETURN OUTLET,ZONEHVAC:EQUIPMENTCONNECTIONS,175785,ZoneReturn,1
|
||||
Non-Parent Node Connection,176293 ZONE AIR NODE,ZONEHVAC:EQUIPMENTCONNECTIONS,176293,ZoneNode,1
|
||||
Non-Parent Node Connection,176293 IDEAL LOADS SUPPLY INLET,ZONEHVAC:EQUIPMENTCONNECTIONS,176293,ZoneInlet,1
|
||||
Non-Parent Node Connection,176293 RETURN OUTLET,ZONEHVAC:EQUIPMENTCONNECTIONS,176293,ZoneReturn,1
|
||||
Non-Parent Node Connection,182393 ZONE AIR NODE,ZONEHVAC:EQUIPMENTCONNECTIONS,182393,ZoneNode,1
|
||||
Non-Parent Node Connection,182393 IDEAL LOADS SUPPLY INLET,ZONEHVAC:EQUIPMENTCONNECTIONS,182393,ZoneInlet,1
|
||||
Non-Parent Node Connection,182393 RETURN OUTLET,ZONEHVAC:EQUIPMENTCONNECTIONS,182393,ZoneReturn,1
|
||||
Non-Parent Node Connection,175785 IDEAL LOADS SUPPLY INLET,ZONEHVAC:IDEALLOADSAIRSYSTEM,175785 IDEAL LOADS AIR SYSTEM,Outlet,1
|
||||
Non-Parent Node Connection,176293 IDEAL LOADS SUPPLY INLET,ZONEHVAC:IDEALLOADSAIRSYSTEM,176293 IDEAL LOADS AIR SYSTEM,Outlet,1
|
||||
Non-Parent Node Connection,182393 IDEAL LOADS SUPPLY INLET,ZONEHVAC:IDEALLOADSAIRSYSTEM,182393 IDEAL LOADS AIR SYSTEM,Outlet,1
|
File diff suppressed because it is too large
Load Diff
|
@ -1,117 +0,0 @@
|
|||
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.03.05 16:24
|
||||
! <Version>, Version ID
|
||||
Version, 9.5
|
||||
! <Timesteps per Hour>, #TimeSteps, Minutes per TimeStep {minutes}
|
||||
Timesteps per Hour, 4, 15
|
||||
! <System Convergence Limits>, Minimum System TimeStep {minutes}, Max HVAC Iterations, Minimum Plant Iterations, Maximum Plant Iterations
|
||||
System Convergence Limits, 1, 20, 2, 8
|
||||
! <Simulation Control>, Do Zone Sizing, Do System Sizing, Do Plant Sizing, Do Design Days, Do Weather Simulation, Do HVAC Sizing Simulation
|
||||
Simulation Control, No, No, No, No, Yes, No
|
||||
! <Performance Precision Tradeoffs>, Use Coil Direct Simulation, Zone Radiant Exchange Algorithm, Override Mode, Number of Timestep In Hour, Force Euler Method, Minimum Number of Warmup Days, Force Suppress All Begin Environment Resets, Minimum System Timestep, MaxZoneTempDiff, MaxAllowedDelTemp
|
||||
Performance Precision Tradeoffs, No, ScriptF, Normal, 4, No, 1, No, 1.0, 0.300, 2.0000E-003
|
||||
! <Output Reporting Tolerances>, Tolerance for Time Heating Setpoint Not Met, Tolerance for Zone Cooling Setpoint Not Met Time
|
||||
Output Reporting Tolerances, 0.200, 0.200,
|
||||
! <Site:GroundTemperature:BuildingSurface>,Jan{C},Feb{C},Mar{C},Apr{C},May{C},Jun{C},Jul{C},Aug{C},Sep{C},Oct{C},Nov{C},Dec{C}
|
||||
Site:GroundTemperature:BuildingSurface, 18.00, 18.00, 18.00, 18.00, 18.00, 18.00, 18.00, 18.00, 18.00, 18.00, 18.00, 18.00
|
||||
! <Site:GroundTemperature:FCfactorMethod>,Jan{C},Feb{C},Mar{C},Apr{C},May{C},Jun{C},Jul{C},Aug{C},Sep{C},Oct{C},Nov{C},Dec{C}
|
||||
Site:GroundTemperature:FCfactorMethod, -1.50, -6.19, -7.46, -6.35, -0.03, 7.05, 13.71, 18.53, 19.94, 17.67, 12.21, 5.33
|
||||
! <Site:GroundTemperature:Shallow>,Jan{C},Feb{C},Mar{C},Apr{C},May{C},Jun{C},Jul{C},Aug{C},Sep{C},Oct{C},Nov{C},Dec{C}
|
||||
Site:GroundTemperature:Shallow, 13.00, 13.00, 13.00, 13.00, 13.00, 13.00, 13.00, 13.00, 13.00, 13.00, 13.00, 13.00
|
||||
! <Site:GroundTemperature:Deep>,Jan{C},Feb{C},Mar{C},Apr{C},May{C},Jun{C},Jul{C},Aug{C},Sep{C},Oct{C},Nov{C},Dec{C}
|
||||
Site:GroundTemperature:Deep, 16.00, 16.00, 16.00, 16.00, 16.00, 16.00, 16.00, 16.00, 16.00, 16.00, 16.00, 16.00
|
||||
! <Site:GroundReflectance>,Jan{dimensionless},Feb{dimensionless},Mar{dimensionless},Apr{dimensionless},May{dimensionless},Jun{dimensionless},Jul{dimensionless},Aug{dimensionless},Sep{dimensionless},Oct{dimensionless},Nov{dimensionless},Dec{dimensionless}
|
||||
Site:GroundReflectance, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20
|
||||
! <Site:GroundReflectance:SnowModifier>, Normal, Daylighting {dimensionless}
|
||||
Site:GroundReflectance:SnowModifier, 1.000, 1.000
|
||||
! <Site:GroundReflectance:Snow>,Jan{dimensionless},Feb{dimensionless},Mar{dimensionless},Apr{dimensionless},May{dimensionless},Jun{dimensionless},Jul{dimensionless},Aug{dimensionless},Sep{dimensionless},Oct{dimensionless},Nov{dimensionless},Dec{dimensionless}
|
||||
Site:GroundReflectance:Snow, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20
|
||||
! <Site:GroundReflectance:Snow:Daylighting>,Jan{dimensionless},Feb{dimensionless},Mar{dimensionless},Apr{dimensionless},May{dimensionless},Jun{dimensionless},Jul{dimensionless},Aug{dimensionless},Sep{dimensionless},Oct{dimensionless},Nov{dimensionless},Dec{dimensionless}
|
||||
Site:GroundReflectance:Snow:Daylighting, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20, 0.20
|
||||
! <Environment:Weather Station>,Wind Sensor Height Above Ground {m},Wind Speed Profile Exponent {},Wind Speed Profile Boundary Layer Thickness {m},Air Temperature Sensor Height Above Ground {m},Wind Speed Modifier Coefficient-Internal,Temperature Modifier Coefficient-Internal
|
||||
Environment:Weather Station,10.000,0.140,270.000,1.500,1.586,9.750E-003
|
||||
! <Site:Location>, Location Name, Latitude {N+/S- Deg}, Longitude {E+/W- Deg}, Time Zone Number {GMT+/-}, Elevation {m}, Standard Pressure at Elevation {Pa}, Standard RhoAir at Elevation
|
||||
Site:Location,Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270,45.47,-73.75,-5.00,36.00,100893,1.1992
|
||||
! <Site Water Mains Temperature Information>,Calculation Method{},Water Mains Temperature Schedule Name{},Annual Average Outdoor Air Temperature{C},Maximum Difference In Monthly Average Outdoor Air Temperatures{deltaC},Fixed Default Water Mains Temperature{C}
|
||||
Site Water Mains Temperature Information,FixedDefault,NA,NA,NA,10.0
|
||||
! <Building Information>, Building Name,North Axis {deg},Terrain, Loads Convergence Tolerance Value,Temperature Convergence Tolerance Value, Solar Distribution,Maximum Number of Warmup Days,Minimum Number of Warmup Days
|
||||
Building Information,Buildings in b'Montreal',0.000,Suburbs,4.00000E-002,0.40000,FullExterior,25,6
|
||||
! <Inside Convection Algorithm>, Algorithm {Simple | TARP | CeilingDiffuser | AdaptiveConvectionAlgorithm}
|
||||
Inside Convection Algorithm,TARP
|
||||
! <Outside Convection Algorithm>, Algorithm {SimpleCombined | TARP | MoWitt | DOE-2 | AdaptiveConvectionAlgorithm}
|
||||
Outside Convection Algorithm,DOE-2
|
||||
! <Sky Radiance Distribution>, Value {Anisotropic}
|
||||
Sky Radiance Distribution,Anisotropic
|
||||
! <Zone Air Solution Algorithm>, Value {ThirdOrderBackwardDifference | AnalyticalSolution | EulerMethod}
|
||||
Zone Air Solution Algorithm, ThirdOrderBackwardDifference
|
||||
! <Zone Air Carbon Dioxide Balance Simulation>, Simulation {Yes/No}, Carbon Dioxide Concentration
|
||||
Zone Air Carbon Dioxide Balance Simulation, No,N/A
|
||||
! <Zone Air Generic Contaminant Balance Simulation>, Simulation {Yes/No}, Generic Contaminant Concentration
|
||||
Zone Air Generic Contaminant Balance Simulation, No,N/A
|
||||
! <Zone Air Mass Flow Balance Simulation>, Enforce Mass Balance, Adjust Zone Mixing and Return {AdjustMixingOnly | AdjustReturnOnly | AdjustMixingThenReturn | AdjustReturnThenMixing | None}, Adjust Zone Infiltration {AddInfiltration | AdjustInfiltration | None}, Infiltration Zones {MixingSourceZonesOnly | AllZones}
|
||||
Zone Air Mass Flow Balance Simulation, No,N/A,N/A,N/A
|
||||
! <HVACSystemRootFindingAlgorithm>, Value {RegulaFalsi | Bisection | BisectionThenRegulaFalsi | RegulaFalsiThenBisection}
|
||||
HVACSystemRootFindingAlgorithm, RegulaFalsi
|
||||
! <Environment:Site Atmospheric Variation>,Wind Speed Profile Exponent {},Wind Speed Profile Boundary Layer Thickness {m},Air Temperature Gradient Coefficient {K/m}
|
||||
Environment:Site Atmospheric Variation,0.220,370.000,6.500000E-003
|
||||
! <Surface Geometry>,Starting Corner,Vertex Input Direction,Coordinate System,Daylight Reference Point Coordinate System,Rectangular (Simple) Surface Coordinate System
|
||||
Surface Geometry,UpperLeftCorner,Counterclockwise,WorldCoordinateSystem,RelativeCoordinateSystem,RelativeToZoneOrigin
|
||||
! <Surface Heat Transfer Algorithm>, Value {CTF - ConductionTransferFunction | EMPD - MoisturePenetrationDepthConductionTransferFunction | CondFD - ConductionFiniteDifference | HAMT - CombinedHeatAndMoistureFiniteElement} - Description,Inside Surface Max Temperature Limit{C}, Surface Convection Coefficient Lower Limit {W/m2-K}, Surface Convection Coefficient Upper Limit {W/m2-K}
|
||||
Surface Heat Transfer Algorithm, CTF - ConductionTransferFunction,200,0.10,1000.0
|
||||
! <Shading Summary>, Number of Fixed Detached Shades, Number of Building Detached Shades, Number of Attached Shades
|
||||
Shading Summary,0,0,0
|
||||
! <Zone Summary>, Number of Zones, Number of Zone Surfaces, Number of SubSurfaces
|
||||
Zone Summary,3,36,14
|
||||
! <Zone Information>,Zone Name,North Axis {deg},Origin X-Coordinate {m},Origin Y-Coordinate {m},Origin Z-Coordinate {m},Centroid X-Coordinate {m},Centroid Y-Coordinate {m},Centroid Z-Coordinate {m},Type,Zone Multiplier,Zone List Multiplier,Minimum X {m},Maximum X {m},Minimum Y {m},Maximum Y {m},Minimum Z {m},Maximum Z {m},Ceiling Height {m},Volume {m3},Zone Inside Convection Algorithm {Simple-Detailed-CeilingDiffuser-TrombeWall},Zone Outside Convection Algorithm {Simple-Detailed-Tarp-MoWitt-DOE-2-BLAST}, Floor Area {m2},Exterior Gross Wall Area {m2},Exterior Net Wall Area {m2},Exterior Window Area {m2}, Number of Surfaces, Number of SubSurfaces, Number of Shading SubSurfaces, Part of Total Building Area
|
||||
Zone Information, 175785,0.0,0.00,0.00,0.00,8.32,14.89,6.00,1,1,1,0.00,17.71,11.28,17.93,0.00,12.00,12.00,1403.17,TARP,DOE-2,116.93,410.07,328.14,81.93,8,5,0,Yes
|
||||
Zone Information, 176293,0.0,0.00,0.00,0.00,10.46,21.10,6.00,1,1,1,3.21,17.70,17.89,24.31,0.00,12.00,12.00,1109.06,TARP,DOE-2,92.42,326.92,261.60,65.32,6,3,0,Yes
|
||||
Zone Information, 182393,0.0,0.00,0.00,0.00,10.54,3.91,4.00,1,1,1,3.38,17.71,0.00,7.27,0.00,8.00,8.00,797.48,TARP,DOE-2,99.69,340.41,272.39,68.01,8,6,0,Yes
|
||||
! <Zone Internal Gains Nominal>,Zone Name, Floor Area {m2},# Occupants,Area per Occupant {m2/person},Occupant per Area {person/m2},Interior Lighting {W/m2},Electric Load {W/m2},Gas Load {W/m2},Other Load {W/m2},Hot Water Eq {W/m2},Steam Equipment {W/m2},Sum Loads per Area {W/m2},Outdoor Controlled Baseboard Heat
|
||||
Zone Internal Gains Nominal, 175785,116.93,18.7,6.248,0.160,22.008,0.000,0.000,20.007,0.000,0.000,42.015,No
|
||||
Zone Internal Gains Nominal, 176293,92.42,14.8,6.248,0.160,22.008,0.000,0.000,20.007,0.000,0.000,42.015,No
|
||||
Zone Internal Gains Nominal, 182393,99.69,8.0,12.495,8.003E-002,11.004,0.000,0.000,10.004,0.000,0.000,21.008,No
|
||||
! <People Internal Gains Nominal>,Name,Schedule Name,Zone Name,Zone Floor Area {m2},# Zone Occupants,Number of People {},People/Floor Area {person/m2},Floor Area per person {m2/person},Fraction Radiant,Fraction Convected,Sensible Fraction Calculation,Activity level,ASHRAE 55 Warnings,Carbon Dioxide Generation Rate,Nominal Minimum Number of People,Nominal Maximum Number of People
|
||||
People Internal Gains Nominal, 175785_OCCUPANCY,OCCUPANCY SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,175785,116.93,18.7,18.7,0.160,6.248,0.100,0.900,AutoCalculate,ACTIVITY LEVEL SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,No,3.8200E-008,0,17
|
||||
People Internal Gains Nominal, 176293_OCCUPANCY,OCCUPANCY SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,176293,92.42,14.8,14.8,0.160,6.248,0.100,0.900,AutoCalculate,ACTIVITY LEVEL SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,No,3.8200E-008,0,13
|
||||
People Internal Gains Nominal, 182393_OCCUPANCY,OCCUPANCY SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,182393,99.69,8.0,8.0,8.003E-002,12.495,0.100,0.900,AutoCalculate,ACTIVITY LEVEL SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,No,3.8200E-008,0,7
|
||||
! <Lights Internal Gains Nominal>,Name,Schedule Name,Zone Name,Zone Floor Area {m2},# Zone Occupants,Lighting Level {W},Lights/Floor Area {W/m2},Lights per person {W/person},Fraction Return Air,Fraction Radiant,Fraction Short Wave,Fraction Convected,Fraction Replaceable,End-Use Category,Nominal Minimum Lighting Level {W},Nominal Maximum Lighting Level {W}
|
||||
Lights Internal Gains Nominal, 175785_LIGHTS,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,175785,116.93,18.7,2573.415,22.008,137.500,0.000,0.500,0.000,0.500,1.000,ELECTRIC EQUIPMENT#175785#GeneralLights,0.000,2316.074
|
||||
Lights Internal Gains Nominal, 176293_LIGHTS,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,176293,92.42,14.8,2034.020,22.008,137.500,0.000,0.500,0.000,0.500,1.000,ELECTRIC EQUIPMENT#176293#GeneralLights,0.000,1830.618
|
||||
Lights Internal Gains Nominal, 182393_LIGHTS,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,182393,99.69,8.0,1096.936,11.004,137.500,0.000,0.500,0.000,0.500,1.000,ELECTRIC EQUIPMENT#182393#GeneralLights,0.000,987.243
|
||||
! <OtherEquipment Internal Gains Nominal>,Name,Schedule Name,Zone Name,Zone Floor Area {m2},# Zone Occupants,Equipment Level {W},Equipment/Floor Area {W/m2},Equipment per person {W/person},Fraction Latent,Fraction Radiant,Fraction Lost,Fraction Convected,Nominal Minimum Equipment Level {W},Nominal Maximum Equipment Level {W}
|
||||
OtherEquipment Internal Gains Nominal, 175785_APPLIANCE,APPLIANCE SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,175785,116.93,18.7,2339.468,20.007,125.000,0.000,0.500,0.000,0.500,0.000,2105.522
|
||||
OtherEquipment Internal Gains Nominal, 176293_APPLIANCE,APPLIANCE SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,176293,92.42,14.8,1849.109,20.007,125.000,0.000,0.500,0.000,0.500,0.000,1664.198
|
||||
OtherEquipment Internal Gains Nominal, 182393_APPLIANCE,APPLIANCE SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,182393,99.69,8.0,997.215,10.004,125.000,0.000,0.500,0.000,0.500,0.000,897.493
|
||||
! <Shadowing/Sun Position Calculations Annual Simulations>, Shading Calculation Method, Shading Calculation Update Frequency Method, Shading Calculation Update Frequency {days}, Maximum Figures in Shadow Overlap Calculations {}, Polygon Clipping Algorithm, Pixel Counting Resolution, Sky Diffuse Modeling Algorithm, Output External Shading Calculation Results, Disable Self-Shading Within Shading Zone Groups, Disable Self-Shading From Shading Zone Groups to Other Zones
|
||||
Shadowing/Sun Position Calculations Annual Simulations,PolygonClipping,Periodic,20,15000,SutherlandHodgman,512,SimpleSkyDiffuseModeling,No,No,No
|
||||
! <ZoneInfiltration Airflow Stats Nominal>,Name,Schedule Name,Zone Name, Zone Floor Area {m2}, # Zone Occupants,Design Volume Flow Rate {m3/s},Volume Flow Rate/Floor Area {m3/s-m2},Volume Flow Rate/Exterior Surface Area {m3/s-m2},ACH - Air Changes per Hour,Equation A - Constant Term Coefficient {},Equation B - Temperature Term Coefficient {1/C},Equation C - Velocity Term Coefficient {s/m}, Equation D - Velocity Squared Term Coefficient {s2/m2}
|
||||
ZoneInfiltration Airflow Stats Nominal, 175785_INFILTRATION,INFILTRATION SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,175785,116.93,18.7,0.242,2.067E-003,4.586E-004,0.620,1.000,0.000,0.000,0.000
|
||||
ZoneInfiltration Airflow Stats Nominal, 176293_INFILTRATION,INFILTRATION SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,176293,92.42,14.8,0.191,2.067E-003,4.555E-004,0.620,1.000,0.000,0.000,0.000
|
||||
ZoneInfiltration Airflow Stats Nominal, 182393_INFILTRATION,INFILTRATION SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,182393,99.69,8.0,0.137,1.378E-003,3.121E-004,0.620,1.000,0.000,0.000,0.000
|
||||
! <ZoneVentilation Airflow Stats Nominal>,Name,Schedule Name,Zone Name, Zone Floor Area {m2}, # Zone Occupants,Design Volume Flow Rate {m3/s},Volume Flow Rate/Floor Area {m3/s-m2},Volume Flow Rate/person Area {m3/s-person},ACH - Air Changes per Hour,Fan Type {Exhaust;Intake;Natural},Fan Pressure Rise {Pa},Fan Efficiency {},Equation A - Constant Term Coefficient {},Equation B - Temperature Term Coefficient {1/C},Equation C - Velocity Term Coefficient {s/m}, Equation D - Velocity Squared Term Coefficient {s2/m2},Minimum Indoor Temperature{C}/Schedule,Maximum Indoor Temperature{C}/Schedule,Delta Temperature{C}/Schedule,Minimum Outdoor Temperature{C}/Schedule,Maximum Outdoor Temperature{C}/Schedule,Maximum WindSpeed{m/s}
|
||||
ZoneVentilation Airflow Stats Nominal, 175785_VENTILATION,VENTILATION SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,175785,116.93,18.7,0.143,1.219E-003,7.617E-003,0.366,Natural,0.000,1.0,1.000,0.000,0.000,0.000,-100.00,100.00,-100.00,-100.00,100.00,40.00
|
||||
ZoneVentilation Airflow Stats Nominal, 176293_VENTILATION,VENTILATION SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,176293,92.42,14.8,0.113,1.219E-003,7.617E-003,0.366,Natural,0.000,1.0,1.000,0.000,0.000,0.000,-100.00,100.00,-100.00,-100.00,100.00,40.00
|
||||
ZoneVentilation Airflow Stats Nominal, 182393_VENTILATION,VENTILATION SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,182393,99.69,8.0,6.077E-002,6.096E-004,7.617E-003,0.274,Natural,0.000,1.0,1.000,0.000,0.000,0.000,-100.00,100.00,-100.00,-100.00,100.00,40.00
|
||||
! <AirFlow Model>, Simple
|
||||
AirFlow Model, Simple
|
||||
! <RoomAir Model>, Zone Name, Mixing/Mundt/UCSDDV/UCSDCV/UCSDUFI/UCSDUFE/User Defined
|
||||
RoomAir Model,175785,Mixing/Well-Stirred
|
||||
RoomAir Model,176293,Mixing/Well-Stirred
|
||||
RoomAir Model,182393,Mixing/Well-Stirred
|
||||
! <AirflowNetwork Model:Control>, No Multizone or Distribution/Multizone with Distribution/Multizone without Distribution/Multizone with Distribution only during Fan Operation
|
||||
AirflowNetwork Model:Control,NoMultizoneOrDistribution
|
||||
! <Zone Volume Capacitance Multiplier>, Sensible Heat Capacity Multiplier, Moisture Capacity Multiplier, Carbon Dioxide Capacity Multiplier, Generic Contaminant Capacity Multiplier
|
||||
Zone Volume Capacitance Multiplier, 1.000 , 1.000, 1.000, 1.000
|
||||
! <Environment>,Environment Name,Environment Type, Start Date, End Date, Start DayOfWeek, Duration {#days}, Source:Start DayOfWeek, Use Daylight Saving, Use Holidays, Apply Weekend Holiday Rule, Use Rain Values, Use Snow Values, Sky Temperature Model
|
||||
! <Environment:Special Days>, Special Day Name, Special Day Type, Source, Start Date, Duration {#days}
|
||||
! <Environment:Daylight Saving>, Daylight Saving Indicator, Source, Start Date, End Date
|
||||
! <Environment:WarmupDays>, NumberofWarmupDays
|
||||
Environment,RUN PERIOD 1,WeatherFileRunPeriod,01/01/2013,12/31/2013,Tuesday,365,Use RunPeriod Specified Day,Yes,Yes,No,Yes,Yes,Clark and Allen
|
||||
Environment:Daylight Saving,No,
|
||||
Environment:WarmupDays, 6
|
||||
! <Warmup Convergence Information>,Zone Name,Environment Type/Name,Average Warmup Temperature Difference {deltaC},Std Dev Warmup Temperature Difference {deltaC},Max Temperature Pass/Fail Convergence,Min Temperature Pass/Fail Convergence,Average Warmup Load Difference {W},Std Dev Warmup Load Difference {W},Heating Load Pass/Fail Convergence,Cooling Load Pass/Fail Convergence
|
||||
Warmup Convergence Information,175785,RunPeriod: RUN PERIOD 1,9.3824972476E-002,0.4154526533,Pass,Pass,0.1433381723,0.3290892348,Pass,Pass
|
||||
Warmup Convergence Information,176293,RunPeriod: RUN PERIOD 1,9.1898016321E-002,0.4123345602,Pass,Pass,0.1278317775,0.3389104038,Pass,Pass
|
||||
Warmup Convergence Information,182393,RunPeriod: RUN PERIOD 1,9.1565697069E-002,0.4152215081,Pass,Pass,0.3493153409,1.4374670798,Pass,Pass
|
||||
! <Program Control Information:Threads/Parallel Sims>, Threading Supported,Maximum Number of Threads, Env Set Threads (OMP_NUM_THREADS), EP Env Set Threads (EP_OMP_NUM_THREADS), IDF Set Threads, Number of Threads Used (Interior Radiant Exchange), Number Nominal Surfaces, Number Parallel Sims
|
||||
Program Control:Threads/Parallel Sims, No,1, N/A, N/A, N/A, N/A, N/A, N/A
|
||||
End of Data
|
|
@ -1 +0,0 @@
|
|||
EnergyPlus Completed Successfully-- 26 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 8.18sec
|
|
@ -1,56 +0,0 @@
|
|||
Program Version,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.03.05 16:24,
|
||||
** Warning ** GetHTSurfaceData: Surfaces with interface to Ground found but no "Ground Temperatures" were input.
|
||||
** ~~~ ** Found first in surface=ABC70BFE-5F86-4A6E-B599-86D884D03D49
|
||||
** ~~~ ** Defaults, constant throughout the year of (18.0) will be used.
|
||||
** Warning ** GetInternalHeatGains: People="175785_OCCUPANCY", Activity Level Schedule Name values
|
||||
** ~~~ ** fall outside typical range [70,1000] W/person for Thermal Comfort Reporting.
|
||||
** ~~~ ** Odd comfort values may result; Schedule="ACTIVITY LEVEL SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING".
|
||||
** ~~~ ** Entered min/max range=[0.0,] W/person.146.5
|
||||
** Warning ** GetInternalHeatGains: People="176293_OCCUPANCY", Activity Level Schedule Name values
|
||||
** ~~~ ** fall outside typical range [70,1000] W/person for Thermal Comfort Reporting.
|
||||
** ~~~ ** Odd comfort values may result; Schedule="ACTIVITY LEVEL SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING".
|
||||
** ~~~ ** Entered min/max range=[0.0,] W/person.146.5
|
||||
** Warning ** GetInternalHeatGains: People="182393_OCCUPANCY", Activity Level Schedule Name values
|
||||
** ~~~ ** fall outside typical range [70,1000] W/person for Thermal Comfort Reporting.
|
||||
** ~~~ ** Odd comfort values may result; Schedule="ACTIVITY LEVEL SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING".
|
||||
** ~~~ ** Entered min/max range=[0.0,] W/person.146.5
|
||||
** Warning ** DetermineShadowingCombinations: There are 1 surfaces which are receiving surfaces and are non-convex.
|
||||
** ~~~ ** ...Shadowing values may be inaccurate. Check .shd report file for more surface shading details
|
||||
** ~~~ ** ...Add Output:Diagnostics,DisplayExtraWarnings; to see individual warnings for each surface.
|
||||
************* Testing Individual Branch Integrity
|
||||
************* All Branches passed integrity testing
|
||||
************* Testing Individual Supply Air Path Integrity
|
||||
************* All Supply Air Paths passed integrity testing
|
||||
************* Testing Individual Return Air Path Integrity
|
||||
************* All Return Air Paths passed integrity testing
|
||||
************* No node connection errors were found.
|
||||
************* Beginning Simulation
|
||||
** Severe ** Output:Table:SummaryReports Field[6]="STANDARD62.1SUMMARY", invalid report name -- will not be reported.
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'COOLING:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'HEATING:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'WATERSYSTEMS:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'COGENERATION:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'COOLING:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'HEATING:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'WATERSYSTEMS:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'EndUseEnergyConsumptionOtherFuelsMonthly' invalid Variable or Meter Name 'COGENERATION:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'COOLING:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'HEATING:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'WATERSYSTEMS:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'COGENERATION:OTHERFUEL1'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'EXTERIOREQUIPMENT:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'COOLING:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'HEATING:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'WATERSYSTEMS:OTHERFUEL2'
|
||||
** Warning ** In Output:Table:Monthly 'PeakEnergyEndUseOtherFuelsMonthly' invalid Variable or Meter Name 'COGENERATION:OTHERFUEL2'
|
||||
** Warning ** Processing Monthly Tabular Reports: Variable names not valid for this simulation
|
||||
** ~~~ ** ...use Output:Diagnostics,DisplayExtraWarnings; to show more details on individual variables.
|
||||
************* Simulation Error Summary *************
|
||||
************* There are 1 unused objects in input.
|
||||
************* Use Output:Diagnostics,DisplayUnusedObjects; to see them.
|
||||
************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.
|
||||
************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.
|
||||
************* EnergyPlus Completed Successfully-- 26 Warning; 1 Severe Errors; Elapsed Time=00hr 00min 8.18sec
|
175230
out_files/Montreal_out.eso
175230
out_files/Montreal_out.eso
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
0
out_files/Montreal_out.mdd
Normal file
0
out_files/Montreal_out.mdd
Normal file
|
@ -7,23 +7,7 @@
|
|||
OnMeter=InteriorLights:Electricity:Zone:175785 [J]
|
||||
OnMeter=ELECTRIC EQUIPMENT#175785#GeneralLights:InteriorLights:Electricity [J]
|
||||
|
||||
Meters for 81,176293_LIGHTS:Lights Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:176293 [J]
|
||||
OnMeter=InteriorLights:Electricity [J]
|
||||
OnMeter=InteriorLights:Electricity:Zone:176293 [J]
|
||||
OnMeter=ELECTRIC EQUIPMENT#176293#GeneralLights:InteriorLights:Electricity [J]
|
||||
|
||||
Meters for 119,182393_LIGHTS:Lights Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:182393 [J]
|
||||
OnMeter=InteriorLights:Electricity [J]
|
||||
OnMeter=InteriorLights:Electricity:Zone:182393 [J]
|
||||
OnMeter=ELECTRIC EQUIPMENT#182393#GeneralLights:InteriorLights:Electricity [J]
|
||||
|
||||
Meters for 158,175785_APPLIANCE:Other Equipment Electricity Energy [J]
|
||||
Meters for 82,175785_APPLIANCE:Other Equipment Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:175785 [J]
|
||||
|
@ -31,23 +15,7 @@
|
|||
OnMeter=InteriorEquipment:Electricity:Zone:175785 [J]
|
||||
OnMeter=ELECTRIC EQUIPMENT#175785#InteriorEquipment:InteriorEquipment:Electricity [J]
|
||||
|
||||
Meters for 196,176293_APPLIANCE:Other Equipment Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:176293 [J]
|
||||
OnMeter=InteriorEquipment:Electricity [J]
|
||||
OnMeter=InteriorEquipment:Electricity:Zone:176293 [J]
|
||||
OnMeter=ELECTRIC EQUIPMENT#176293#InteriorEquipment:InteriorEquipment:Electricity [J]
|
||||
|
||||
Meters for 222,182393_APPLIANCE:Other Equipment Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:182393 [J]
|
||||
OnMeter=InteriorEquipment:Electricity [J]
|
||||
OnMeter=InteriorEquipment:Electricity:Zone:182393 [J]
|
||||
OnMeter=ELECTRIC EQUIPMENT#182393#InteriorEquipment:InteriorEquipment:Electricity [J]
|
||||
|
||||
Meters for 247,175785:Zone Ventilation Fan Electricity Energy [J]
|
||||
Meters for 119,175785:Zone Ventilation Fan Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:175785 [J]
|
||||
|
@ -55,23 +23,7 @@
|
|||
OnMeter=Fans:Electricity:Zone:175785 [J]
|
||||
OnMeter=Ventilation (simple):Fans:Electricity [J]
|
||||
|
||||
Meters for 284,176293:Zone Ventilation Fan Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:176293 [J]
|
||||
OnMeter=Fans:Electricity [J]
|
||||
OnMeter=Fans:Electricity:Zone:176293 [J]
|
||||
OnMeter=Ventilation (simple):Fans:Electricity [J]
|
||||
|
||||
Meters for 297,182393:Zone Ventilation Fan Electricity Energy [J]
|
||||
OnMeter=Electricity:Facility [J]
|
||||
OnMeter=Electricity:Building [J]
|
||||
OnMeter=Electricity:Zone:182393 [J]
|
||||
OnMeter=Fans:Electricity [J]
|
||||
OnMeter=Fans:Electricity:Zone:182393 [J]
|
||||
OnMeter=Ventilation (simple):Fans:Electricity [J]
|
||||
|
||||
Meters for 310,175785:Zone Air System Sensible Heating Energy [J]
|
||||
Meters for 156,175785:Zone Air System Sensible Heating Energy [J]
|
||||
OnMeter=EnergyTransfer:Facility [J]
|
||||
OnMeter=EnergyTransfer:Building [J]
|
||||
OnMeter=EnergyTransfer:Zone:175785 [J]
|
||||
|
@ -79,7 +31,7 @@
|
|||
OnMeter=Heating:EnergyTransfer:Zone:175785 [J]
|
||||
OnMeter=General:Heating:EnergyTransfer [J]
|
||||
|
||||
Meters for 383,175785:Zone Air System Sensible Cooling Energy [J]
|
||||
Meters for 229,175785:Zone Air System Sensible Cooling Energy [J]
|
||||
OnMeter=EnergyTransfer:Facility [J]
|
||||
OnMeter=EnergyTransfer:Building [J]
|
||||
OnMeter=EnergyTransfer:Zone:175785 [J]
|
||||
|
@ -87,179 +39,75 @@
|
|||
OnMeter=Cooling:EnergyTransfer:Zone:175785 [J]
|
||||
OnMeter=General:Cooling:EnergyTransfer [J]
|
||||
|
||||
Meters for 420,176293:Zone Air System Sensible Heating Energy [J]
|
||||
OnMeter=EnergyTransfer:Facility [J]
|
||||
OnMeter=EnergyTransfer:Building [J]
|
||||
OnMeter=EnergyTransfer:Zone:176293 [J]
|
||||
OnMeter=Heating:EnergyTransfer [J]
|
||||
OnMeter=Heating:EnergyTransfer:Zone:176293 [J]
|
||||
OnMeter=General:Heating:EnergyTransfer [J]
|
||||
|
||||
Meters for 445,176293:Zone Air System Sensible Cooling Energy [J]
|
||||
OnMeter=EnergyTransfer:Facility [J]
|
||||
OnMeter=EnergyTransfer:Building [J]
|
||||
OnMeter=EnergyTransfer:Zone:176293 [J]
|
||||
OnMeter=Cooling:EnergyTransfer [J]
|
||||
OnMeter=Cooling:EnergyTransfer:Zone:176293 [J]
|
||||
OnMeter=General:Cooling:EnergyTransfer [J]
|
||||
|
||||
Meters for 458,182393:Zone Air System Sensible Heating Energy [J]
|
||||
OnMeter=EnergyTransfer:Facility [J]
|
||||
OnMeter=EnergyTransfer:Building [J]
|
||||
OnMeter=EnergyTransfer:Zone:182393 [J]
|
||||
OnMeter=Heating:EnergyTransfer [J]
|
||||
OnMeter=Heating:EnergyTransfer:Zone:182393 [J]
|
||||
OnMeter=General:Heating:EnergyTransfer [J]
|
||||
|
||||
Meters for 483,182393:Zone Air System Sensible Cooling Energy [J]
|
||||
OnMeter=EnergyTransfer:Facility [J]
|
||||
OnMeter=EnergyTransfer:Building [J]
|
||||
OnMeter=EnergyTransfer:Zone:182393 [J]
|
||||
OnMeter=Cooling:EnergyTransfer [J]
|
||||
OnMeter=Cooling:EnergyTransfer:Zone:182393 [J]
|
||||
OnMeter=General:Cooling:EnergyTransfer [J]
|
||||
|
||||
Meters for 496,175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J]
|
||||
Meters for 266,175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J]
|
||||
OnMeter=DistrictHeating:Facility [J]
|
||||
OnMeter=DistrictHeating:HVAC [J]
|
||||
OnMeter=Heating:DistrictHeating [J]
|
||||
OnMeter=General:Heating:DistrictHeating [J]
|
||||
|
||||
Meters for 545,175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J]
|
||||
Meters for 315,175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J]
|
||||
OnMeter=DistrictCooling:Facility [J]
|
||||
OnMeter=DistrictCooling:HVAC [J]
|
||||
OnMeter=Cooling:DistrictCooling [J]
|
||||
OnMeter=General:Cooling:DistrictCooling [J]
|
||||
|
||||
Meters for 594,176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J]
|
||||
OnMeter=DistrictHeating:Facility [J]
|
||||
OnMeter=DistrictHeating:HVAC [J]
|
||||
OnMeter=Heating:DistrictHeating [J]
|
||||
OnMeter=General:Heating:DistrictHeating [J]
|
||||
|
||||
Meters for 595,176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J]
|
||||
OnMeter=DistrictCooling:Facility [J]
|
||||
OnMeter=DistrictCooling:HVAC [J]
|
||||
OnMeter=Cooling:DistrictCooling [J]
|
||||
OnMeter=General:Cooling:DistrictCooling [J]
|
||||
|
||||
Meters for 596,182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy [J]
|
||||
OnMeter=DistrictHeating:Facility [J]
|
||||
OnMeter=DistrictHeating:HVAC [J]
|
||||
OnMeter=Heating:DistrictHeating [J]
|
||||
OnMeter=General:Heating:DistrictHeating [J]
|
||||
|
||||
Meters for 597,182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy [J]
|
||||
OnMeter=DistrictCooling:Facility [J]
|
||||
OnMeter=DistrictCooling:HVAC [J]
|
||||
OnMeter=Cooling:DistrictCooling [J]
|
||||
OnMeter=General:Cooling:DistrictCooling [J]
|
||||
|
||||
Meters for 598,DHW 175785:Water Use Equipment Total Volume [m3]
|
||||
Meters for 364,DHW 175785:Water Use Equipment Total Volume [m3]
|
||||
OnMeter=Water:Facility [m3]
|
||||
OnMeter=Water:Plant [m3]
|
||||
OnMeter=WaterSystems:Water [m3]
|
||||
OnMeter=DHW 175785:WaterSystems:Water [m3]
|
||||
|
||||
Meters for 647,DHW 175785:Water Use Equipment Mains Water Volume [m3]
|
||||
Meters for 413,DHW 175785:Water Use Equipment Mains Water Volume [m3]
|
||||
OnMeter=MainsWater:Facility [m3]
|
||||
OnMeter=MainsWater:Plant [m3]
|
||||
OnMeter=WaterSystems:MainsWater [m3]
|
||||
OnMeter=DHW 175785:WaterSystems:MainsWater [m3]
|
||||
|
||||
Meters for 697,DHW 175785:Water Use Equipment Heating Energy [J]
|
||||
Meters for 463,DHW 175785:Water Use Equipment Heating Energy [J]
|
||||
OnMeter=DistrictHeating:Facility [J]
|
||||
OnMeter=DistrictHeating:Plant [J]
|
||||
OnMeter=WaterSystems:DistrictHeating [J]
|
||||
OnMeter=DHW 175785:WaterSystems:DistrictHeating [J]
|
||||
|
||||
Meters for 734,DHW 176293:Water Use Equipment Total Volume [m3]
|
||||
OnMeter=Water:Facility [m3]
|
||||
OnMeter=Water:Plant [m3]
|
||||
OnMeter=WaterSystems:Water [m3]
|
||||
OnMeter=DHW 176293:WaterSystems:Water [m3]
|
||||
|
||||
Meters for 747,DHW 176293:Water Use Equipment Mains Water Volume [m3]
|
||||
OnMeter=MainsWater:Facility [m3]
|
||||
OnMeter=MainsWater:Plant [m3]
|
||||
OnMeter=WaterSystems:MainsWater [m3]
|
||||
OnMeter=DHW 176293:WaterSystems:MainsWater [m3]
|
||||
|
||||
Meters for 761,DHW 176293:Water Use Equipment Heating Energy [J]
|
||||
OnMeter=DistrictHeating:Facility [J]
|
||||
OnMeter=DistrictHeating:Plant [J]
|
||||
OnMeter=WaterSystems:DistrictHeating [J]
|
||||
OnMeter=DHW 176293:WaterSystems:DistrictHeating [J]
|
||||
|
||||
Meters for 774,DHW 182393:Water Use Equipment Total Volume [m3]
|
||||
OnMeter=Water:Facility [m3]
|
||||
OnMeter=Water:Plant [m3]
|
||||
OnMeter=WaterSystems:Water [m3]
|
||||
OnMeter=DHW 182393:WaterSystems:Water [m3]
|
||||
|
||||
Meters for 787,DHW 182393:Water Use Equipment Mains Water Volume [m3]
|
||||
OnMeter=MainsWater:Facility [m3]
|
||||
OnMeter=MainsWater:Plant [m3]
|
||||
OnMeter=WaterSystems:MainsWater [m3]
|
||||
OnMeter=DHW 182393:WaterSystems:MainsWater [m3]
|
||||
|
||||
Meters for 801,DHW 182393:Water Use Equipment Heating Energy [J]
|
||||
OnMeter=DistrictHeating:Facility [J]
|
||||
OnMeter=DistrictHeating:Plant [J]
|
||||
OnMeter=WaterSystems:DistrictHeating [J]
|
||||
OnMeter=DHW 182393:WaterSystems:DistrictHeating [J]
|
||||
|
||||
Meters for 814,Whole Building:Facility Total Purchased Electricity Energy [J]
|
||||
Meters for 500,Whole Building:Facility Total Purchased Electricity Energy [J]
|
||||
OnMeter=ElectricityPurchased:Facility [J]
|
||||
OnMeter=ElectricityPurchased:Plant [J]
|
||||
OnMeter=Cogeneration:ElectricityPurchased [J]
|
||||
OnMeter=General:Cogeneration:ElectricityPurchased [J]
|
||||
|
||||
Meters for 863,Whole Building:Facility Total Surplus Electricity Energy [J]
|
||||
Meters for 549,Whole Building:Facility Total Surplus Electricity Energy [J]
|
||||
OnMeter=ElectricitySurplusSold:Facility [J]
|
||||
OnMeter=ElectricitySurplusSold:Plant [J]
|
||||
OnMeter=Cogeneration:ElectricitySurplusSold [J]
|
||||
OnMeter=General:Cogeneration:ElectricitySurplusSold [J]
|
||||
|
||||
Meters for 912,Whole Building:Facility Net Purchased Electricity Energy [J]
|
||||
Meters for 598,Whole Building:Facility Net Purchased Electricity Energy [J]
|
||||
OnMeter=ElectricityNet:Facility [J]
|
||||
OnMeter=ElectricityNet:Plant [J]
|
||||
OnMeter=Cogeneration:ElectricityNet [J]
|
||||
OnMeter=General:Cogeneration:ElectricityNet [J]
|
||||
|
||||
Meters for 961,Site:Environmental Impact Total N2O Emissions Carbon Equivalent Mass [kg]
|
||||
Meters for 647,Site:Environmental Impact Total N2O Emissions Carbon Equivalent Mass [kg]
|
||||
OnMeter=Carbon Equivalent:Facility [kg]
|
||||
OnMeter=CarbonEquivalentEmissions:Carbon Equivalent [kg]
|
||||
|
||||
Meters for 986,Site:Environmental Impact Total CH4 Emissions Carbon Equivalent Mass [kg]
|
||||
Meters for 672,Site:Environmental Impact Total CH4 Emissions Carbon Equivalent Mass [kg]
|
||||
OnMeter=Carbon Equivalent:Facility [kg]
|
||||
OnMeter=CarbonEquivalentEmissions:Carbon Equivalent [kg]
|
||||
|
||||
Meters for 987,Site:Environmental Impact Total CO2 Emissions Carbon Equivalent Mass [kg]
|
||||
Meters for 673,Site:Environmental Impact Total CO2 Emissions Carbon Equivalent Mass [kg]
|
||||
OnMeter=Carbon Equivalent:Facility [kg]
|
||||
OnMeter=CarbonEquivalentEmissions:Carbon Equivalent [kg]
|
||||
|
||||
For Meter=Electricity:Facility [J], ResourceType=Electricity, contents are:
|
||||
175785_LIGHTS:Lights Electricity Energy
|
||||
176293_LIGHTS:Lights Electricity Energy
|
||||
182393_LIGHTS:Lights Electricity Energy
|
||||
175785_APPLIANCE:Other Equipment Electricity Energy
|
||||
176293_APPLIANCE:Other Equipment Electricity Energy
|
||||
182393_APPLIANCE:Other Equipment Electricity Energy
|
||||
175785:Zone Ventilation Fan Electricity Energy
|
||||
176293:Zone Ventilation Fan Electricity Energy
|
||||
182393:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=Electricity:Building [J], ResourceType=Electricity, Group=Building, contents are:
|
||||
175785_LIGHTS:Lights Electricity Energy
|
||||
176293_LIGHTS:Lights Electricity Energy
|
||||
182393_LIGHTS:Lights Electricity Energy
|
||||
175785_APPLIANCE:Other Equipment Electricity Energy
|
||||
176293_APPLIANCE:Other Equipment Electricity Energy
|
||||
182393_APPLIANCE:Other Equipment Electricity Energy
|
||||
175785:Zone Ventilation Fan Electricity Energy
|
||||
176293:Zone Ventilation Fan Electricity Energy
|
||||
182393:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=Electricity:Zone:175785 [J], ResourceType=Electricity, Group=Zone, contents are:
|
||||
175785_LIGHTS:Lights Electricity Energy
|
||||
|
@ -268,8 +116,6 @@
|
|||
|
||||
For Meter=InteriorLights:Electricity [J], ResourceType=Electricity, EndUse=InteriorLights, contents are:
|
||||
175785_LIGHTS:Lights Electricity Energy
|
||||
176293_LIGHTS:Lights Electricity Energy
|
||||
182393_LIGHTS:Lights Electricity Energy
|
||||
|
||||
For Meter=InteriorLights:Electricity:Zone:175785 [J], ResourceType=Electricity, EndUse=InteriorLights, Group=Zone, contents are:
|
||||
175785_LIGHTS:Lights Electricity Energy
|
||||
|
@ -277,32 +123,8 @@
|
|||
For Meter=ELECTRIC EQUIPMENT#175785#GeneralLights:InteriorLights:Electricity [J], ResourceType=Electricity, EndUse=InteriorLights, contents are:
|
||||
175785_LIGHTS:Lights Electricity Energy
|
||||
|
||||
For Meter=Electricity:Zone:176293 [J], ResourceType=Electricity, Group=Zone, contents are:
|
||||
176293_LIGHTS:Lights Electricity Energy
|
||||
176293_APPLIANCE:Other Equipment Electricity Energy
|
||||
176293:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=InteriorLights:Electricity:Zone:176293 [J], ResourceType=Electricity, EndUse=InteriorLights, Group=Zone, contents are:
|
||||
176293_LIGHTS:Lights Electricity Energy
|
||||
|
||||
For Meter=ELECTRIC EQUIPMENT#176293#GeneralLights:InteriorLights:Electricity [J], ResourceType=Electricity, EndUse=InteriorLights, contents are:
|
||||
176293_LIGHTS:Lights Electricity Energy
|
||||
|
||||
For Meter=Electricity:Zone:182393 [J], ResourceType=Electricity, Group=Zone, contents are:
|
||||
182393_LIGHTS:Lights Electricity Energy
|
||||
182393_APPLIANCE:Other Equipment Electricity Energy
|
||||
182393:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=InteriorLights:Electricity:Zone:182393 [J], ResourceType=Electricity, EndUse=InteriorLights, Group=Zone, contents are:
|
||||
182393_LIGHTS:Lights Electricity Energy
|
||||
|
||||
For Meter=ELECTRIC EQUIPMENT#182393#GeneralLights:InteriorLights:Electricity [J], ResourceType=Electricity, EndUse=InteriorLights, contents are:
|
||||
182393_LIGHTS:Lights Electricity Energy
|
||||
|
||||
For Meter=InteriorEquipment:Electricity [J], ResourceType=Electricity, EndUse=InteriorEquipment, contents are:
|
||||
175785_APPLIANCE:Other Equipment Electricity Energy
|
||||
176293_APPLIANCE:Other Equipment Electricity Energy
|
||||
182393_APPLIANCE:Other Equipment Electricity Energy
|
||||
|
||||
For Meter=InteriorEquipment:Electricity:Zone:175785 [J], ResourceType=Electricity, EndUse=InteriorEquipment, Group=Zone, contents are:
|
||||
175785_APPLIANCE:Other Equipment Electricity Energy
|
||||
|
@ -310,52 +132,22 @@
|
|||
For Meter=ELECTRIC EQUIPMENT#175785#InteriorEquipment:InteriorEquipment:Electricity [J], ResourceType=Electricity, EndUse=InteriorEquipment, contents are:
|
||||
175785_APPLIANCE:Other Equipment Electricity Energy
|
||||
|
||||
For Meter=InteriorEquipment:Electricity:Zone:176293 [J], ResourceType=Electricity, EndUse=InteriorEquipment, Group=Zone, contents are:
|
||||
176293_APPLIANCE:Other Equipment Electricity Energy
|
||||
|
||||
For Meter=ELECTRIC EQUIPMENT#176293#InteriorEquipment:InteriorEquipment:Electricity [J], ResourceType=Electricity, EndUse=InteriorEquipment, contents are:
|
||||
176293_APPLIANCE:Other Equipment Electricity Energy
|
||||
|
||||
For Meter=InteriorEquipment:Electricity:Zone:182393 [J], ResourceType=Electricity, EndUse=InteriorEquipment, Group=Zone, contents are:
|
||||
182393_APPLIANCE:Other Equipment Electricity Energy
|
||||
|
||||
For Meter=ELECTRIC EQUIPMENT#182393#InteriorEquipment:InteriorEquipment:Electricity [J], ResourceType=Electricity, EndUse=InteriorEquipment, contents are:
|
||||
182393_APPLIANCE:Other Equipment Electricity Energy
|
||||
|
||||
For Meter=Fans:Electricity [J], ResourceType=Electricity, EndUse=Fans, contents are:
|
||||
175785:Zone Ventilation Fan Electricity Energy
|
||||
176293:Zone Ventilation Fan Electricity Energy
|
||||
182393:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=Fans:Electricity:Zone:175785 [J], ResourceType=Electricity, EndUse=Fans, Group=Zone, contents are:
|
||||
175785:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=Ventilation (simple):Fans:Electricity [J], ResourceType=Electricity, EndUse=Fans, contents are:
|
||||
175785:Zone Ventilation Fan Electricity Energy
|
||||
176293:Zone Ventilation Fan Electricity Energy
|
||||
182393:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=Fans:Electricity:Zone:176293 [J], ResourceType=Electricity, EndUse=Fans, Group=Zone, contents are:
|
||||
176293:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=Fans:Electricity:Zone:182393 [J], ResourceType=Electricity, EndUse=Fans, Group=Zone, contents are:
|
||||
182393:Zone Ventilation Fan Electricity Energy
|
||||
|
||||
For Meter=EnergyTransfer:Facility [J], ResourceType=EnergyTransfer, contents are:
|
||||
175785:Zone Air System Sensible Heating Energy
|
||||
175785:Zone Air System Sensible Cooling Energy
|
||||
176293:Zone Air System Sensible Heating Energy
|
||||
176293:Zone Air System Sensible Cooling Energy
|
||||
182393:Zone Air System Sensible Heating Energy
|
||||
182393:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=EnergyTransfer:Building [J], ResourceType=EnergyTransfer, Group=Building, contents are:
|
||||
175785:Zone Air System Sensible Heating Energy
|
||||
175785:Zone Air System Sensible Cooling Energy
|
||||
176293:Zone Air System Sensible Heating Energy
|
||||
176293:Zone Air System Sensible Cooling Energy
|
||||
182393:Zone Air System Sensible Heating Energy
|
||||
182393:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=EnergyTransfer:Zone:175785 [J], ResourceType=EnergyTransfer, Group=Zone, contents are:
|
||||
175785:Zone Air System Sensible Heating Energy
|
||||
|
@ -363,160 +155,80 @@
|
|||
|
||||
For Meter=Heating:EnergyTransfer [J], ResourceType=EnergyTransfer, EndUse=Heating, contents are:
|
||||
175785:Zone Air System Sensible Heating Energy
|
||||
176293:Zone Air System Sensible Heating Energy
|
||||
182393:Zone Air System Sensible Heating Energy
|
||||
|
||||
For Meter=Heating:EnergyTransfer:Zone:175785 [J], ResourceType=EnergyTransfer, EndUse=Heating, Group=Zone, contents are:
|
||||
175785:Zone Air System Sensible Heating Energy
|
||||
|
||||
For Meter=General:Heating:EnergyTransfer [J], ResourceType=EnergyTransfer, EndUse=Heating, contents are:
|
||||
175785:Zone Air System Sensible Heating Energy
|
||||
176293:Zone Air System Sensible Heating Energy
|
||||
182393:Zone Air System Sensible Heating Energy
|
||||
|
||||
For Meter=Cooling:EnergyTransfer [J], ResourceType=EnergyTransfer, EndUse=Cooling, contents are:
|
||||
175785:Zone Air System Sensible Cooling Energy
|
||||
176293:Zone Air System Sensible Cooling Energy
|
||||
182393:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=Cooling:EnergyTransfer:Zone:175785 [J], ResourceType=EnergyTransfer, EndUse=Cooling, Group=Zone, contents are:
|
||||
175785:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=General:Cooling:EnergyTransfer [J], ResourceType=EnergyTransfer, EndUse=Cooling, contents are:
|
||||
175785:Zone Air System Sensible Cooling Energy
|
||||
176293:Zone Air System Sensible Cooling Energy
|
||||
182393:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=EnergyTransfer:Zone:176293 [J], ResourceType=EnergyTransfer, Group=Zone, contents are:
|
||||
176293:Zone Air System Sensible Heating Energy
|
||||
176293:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=Heating:EnergyTransfer:Zone:176293 [J], ResourceType=EnergyTransfer, EndUse=Heating, Group=Zone, contents are:
|
||||
176293:Zone Air System Sensible Heating Energy
|
||||
|
||||
For Meter=Cooling:EnergyTransfer:Zone:176293 [J], ResourceType=EnergyTransfer, EndUse=Cooling, Group=Zone, contents are:
|
||||
176293:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=EnergyTransfer:Zone:182393 [J], ResourceType=EnergyTransfer, Group=Zone, contents are:
|
||||
182393:Zone Air System Sensible Heating Energy
|
||||
182393:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=Heating:EnergyTransfer:Zone:182393 [J], ResourceType=EnergyTransfer, EndUse=Heating, Group=Zone, contents are:
|
||||
182393:Zone Air System Sensible Heating Energy
|
||||
|
||||
For Meter=Cooling:EnergyTransfer:Zone:182393 [J], ResourceType=EnergyTransfer, EndUse=Cooling, Group=Zone, contents are:
|
||||
182393:Zone Air System Sensible Cooling Energy
|
||||
|
||||
For Meter=DistrictHeating:Facility [J], ResourceType=DistrictHeating, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
DHW 175785:Water Use Equipment Heating Energy
|
||||
DHW 176293:Water Use Equipment Heating Energy
|
||||
DHW 182393:Water Use Equipment Heating Energy
|
||||
|
||||
For Meter=DistrictHeating:HVAC [J], ResourceType=DistrictHeating, Group=HVAC, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
|
||||
For Meter=Heating:DistrictHeating [J], ResourceType=DistrictHeating, EndUse=Heating, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
|
||||
For Meter=General:Heating:DistrictHeating [J], ResourceType=DistrictHeating, EndUse=Heating, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Heating Energy
|
||||
|
||||
For Meter=DistrictCooling:Facility [J], ResourceType=DistrictCooling, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
|
||||
For Meter=DistrictCooling:HVAC [J], ResourceType=DistrictCooling, Group=HVAC, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
|
||||
For Meter=Cooling:DistrictCooling [J], ResourceType=DistrictCooling, EndUse=Cooling, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
|
||||
For Meter=General:Cooling:DistrictCooling [J], ResourceType=DistrictCooling, EndUse=Cooling, contents are:
|
||||
175785 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
176293 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
182393 IDEAL LOADS AIR SYSTEM:Zone Ideal Loads Supply Air Total Cooling Energy
|
||||
|
||||
For Meter=Water:Facility [m3], ResourceType=Water, contents are:
|
||||
DHW 175785:Water Use Equipment Total Volume
|
||||
DHW 176293:Water Use Equipment Total Volume
|
||||
DHW 182393:Water Use Equipment Total Volume
|
||||
|
||||
For Meter=Water:Plant [m3], ResourceType=Water, Group=Plant, contents are:
|
||||
DHW 175785:Water Use Equipment Total Volume
|
||||
DHW 176293:Water Use Equipment Total Volume
|
||||
DHW 182393:Water Use Equipment Total Volume
|
||||
|
||||
For Meter=WaterSystems:Water [m3], ResourceType=Water, EndUse=WaterSystems, contents are:
|
||||
DHW 175785:Water Use Equipment Total Volume
|
||||
DHW 176293:Water Use Equipment Total Volume
|
||||
DHW 182393:Water Use Equipment Total Volume
|
||||
|
||||
For Meter=DHW 175785:WaterSystems:Water [m3], ResourceType=Water, EndUse=WaterSystems, contents are:
|
||||
DHW 175785:Water Use Equipment Total Volume
|
||||
|
||||
For Meter=MainsWater:Facility [m3], ResourceType=MainsWater, contents are:
|
||||
DHW 175785:Water Use Equipment Mains Water Volume
|
||||
DHW 176293:Water Use Equipment Mains Water Volume
|
||||
DHW 182393:Water Use Equipment Mains Water Volume
|
||||
|
||||
For Meter=MainsWater:Plant [m3], ResourceType=MainsWater, Group=Plant, contents are:
|
||||
DHW 175785:Water Use Equipment Mains Water Volume
|
||||
DHW 176293:Water Use Equipment Mains Water Volume
|
||||
DHW 182393:Water Use Equipment Mains Water Volume
|
||||
|
||||
For Meter=WaterSystems:MainsWater [m3], ResourceType=MainsWater, EndUse=WaterSystems, contents are:
|
||||
DHW 175785:Water Use Equipment Mains Water Volume
|
||||
DHW 176293:Water Use Equipment Mains Water Volume
|
||||
DHW 182393:Water Use Equipment Mains Water Volume
|
||||
|
||||
For Meter=DHW 175785:WaterSystems:MainsWater [m3], ResourceType=MainsWater, EndUse=WaterSystems, contents are:
|
||||
DHW 175785:Water Use Equipment Mains Water Volume
|
||||
|
||||
For Meter=DistrictHeating:Plant [J], ResourceType=DistrictHeating, Group=Plant, contents are:
|
||||
DHW 175785:Water Use Equipment Heating Energy
|
||||
DHW 176293:Water Use Equipment Heating Energy
|
||||
DHW 182393:Water Use Equipment Heating Energy
|
||||
|
||||
For Meter=WaterSystems:DistrictHeating [J], ResourceType=DistrictHeating, EndUse=WaterSystems, contents are:
|
||||
DHW 175785:Water Use Equipment Heating Energy
|
||||
DHW 176293:Water Use Equipment Heating Energy
|
||||
DHW 182393:Water Use Equipment Heating Energy
|
||||
|
||||
For Meter=DHW 175785:WaterSystems:DistrictHeating [J], ResourceType=DistrictHeating, EndUse=WaterSystems, contents are:
|
||||
DHW 175785:Water Use Equipment Heating Energy
|
||||
|
||||
For Meter=DHW 176293:WaterSystems:Water [m3], ResourceType=Water, EndUse=WaterSystems, contents are:
|
||||
DHW 176293:Water Use Equipment Total Volume
|
||||
|
||||
For Meter=DHW 176293:WaterSystems:MainsWater [m3], ResourceType=MainsWater, EndUse=WaterSystems, contents are:
|
||||
DHW 176293:Water Use Equipment Mains Water Volume
|
||||
|
||||
For Meter=DHW 176293:WaterSystems:DistrictHeating [J], ResourceType=DistrictHeating, EndUse=WaterSystems, contents are:
|
||||
DHW 176293:Water Use Equipment Heating Energy
|
||||
|
||||
For Meter=DHW 182393:WaterSystems:Water [m3], ResourceType=Water, EndUse=WaterSystems, contents are:
|
||||
DHW 182393:Water Use Equipment Total Volume
|
||||
|
||||
For Meter=DHW 182393:WaterSystems:MainsWater [m3], ResourceType=MainsWater, EndUse=WaterSystems, contents are:
|
||||
DHW 182393:Water Use Equipment Mains Water Volume
|
||||
|
||||
For Meter=DHW 182393:WaterSystems:DistrictHeating [J], ResourceType=DistrictHeating, EndUse=WaterSystems, contents are:
|
||||
DHW 182393:Water Use Equipment Heating Energy
|
||||
|
||||
For Meter=ElectricityPurchased:Facility [J], ResourceType=ElectricityPurchased, contents are:
|
||||
Whole Building:Facility Total Purchased Electricity Energy
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,16 +0,0 @@
|
|||
ReadVarsESO
|
||||
processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_9acb06.rvi
|
||||
input file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.eso
|
||||
output file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.csv
|
||||
getting all vars from:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.eso
|
||||
number variables requested for output= 19
|
||||
ReadVars Run Time=00hr 00min 0.50sec
|
||||
ReadVarsESO program completed successfully.
|
||||
ReadVarsESO
|
||||
processing:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_9acb06.mvi
|
||||
input file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.mtr
|
||||
output file:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_mtr.csv
|
||||
getting all vars from:C:\Users\umroot\PycharmProjects\system_assignation\out_files\Montreal_out.mtr
|
||||
number variables requested for output= 4
|
||||
ReadVars Run Time=00hr 00min 0.09sec
|
||||
ReadVarsESO program completed successfully.
|
|
@ -1,221 +0,0 @@
|
|||
Shadowing Combinations
|
||||
..Solar Distribution=FullExterior
|
||||
..In the following, only the first 10 reference surfaces will be shown.
|
||||
..But all surfaces are used in the calculations.
|
||||
==================================
|
||||
Surface=FA73E521-0A8E-4B6E-9542-0FDCB2979277 is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=2
|
||||
..Surface=3329F4F6-4B50-4985-8F25-716710C86610
|
||||
..Surface=1E181C1C-FFC7-4372-909F-974432DCA583
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=FA73E521-0A8E-4B6E-9542-0FDCB2979277 WINDOW
|
||||
==================================
|
||||
Surface=FA73E521-0A8E-4B6E-9542-0FDCB2979277 WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=1D8C91EF-85F3-43A9-8847-F172A8303A04 is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=8393EB46-4FAA-43A5-B368-E854E71AFCCB is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=2
|
||||
..Surface=0D219A3D-73D0-4395-A077-FAE0E70ED88B
|
||||
..Surface=DC53A201-26C1-46E9-91D3-C3AE56BB4545
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=8393EB46-4FAA-43A5-B368-E854E71AFCCB WINDOW
|
||||
==================================
|
||||
Surface=8393EB46-4FAA-43A5-B368-E854E71AFCCB WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=0D219A3D-73D0-4395-A077-FAE0E70ED88B is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=2
|
||||
..Surface=8393EB46-4FAA-43A5-B368-E854E71AFCCB
|
||||
..Surface=DC53A201-26C1-46E9-91D3-C3AE56BB4545
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=0D219A3D-73D0-4395-A077-FAE0E70ED88B WINDOW
|
||||
==================================
|
||||
Surface=0D219A3D-73D0-4395-A077-FAE0E70ED88B WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=BA0D264B-C44E-4963-803B-B57468938FB7 is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=BA0D264B-C44E-4963-803B-B57468938FB7 WINDOW
|
||||
==================================
|
||||
Surface=BA0D264B-C44E-4963-803B-B57468938FB7 WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=A06E589C-0BD6-4992-9915-2DC7BE7409A0 is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=3
|
||||
..Surface=1E181C1C-FFC7-4372-909F-974432DCA583
|
||||
..Surface=7D7AD0DA-7269-4B60-8992-21C9C5459C4E
|
||||
..Surface=8B400EBE-48B6-4BF8-9E6E-B5F61BF7A706
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=A06E589C-0BD6-4992-9915-2DC7BE7409A0 WINDOW
|
||||
==================================
|
||||
Surface=A06E589C-0BD6-4992-9915-2DC7BE7409A0 WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=ABC70BFE-5F86-4A6E-B599-86D884D03D49 is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=EAA6E3A9-2413-4A36-A820-B46A75B3E2FD is used as Receiving Surface in calculations and is non-convex.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=3329F4F6-4B50-4985-8F25-716710C86610 is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=2
|
||||
..Surface=FA73E521-0A8E-4B6E-9542-0FDCB2979277
|
||||
..Surface=1E181C1C-FFC7-4372-909F-974432DCA583
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=3329F4F6-4B50-4985-8F25-716710C86610 WINDOW
|
||||
==================================
|
||||
Surface=3329F4F6-4B50-4985-8F25-716710C86610 WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=84083B2E-4FD5-487F-BD45-E5D4E343F45C is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=84083B2E-4FD5-487F-BD45-E5D4E343F45C WINDOW
|
||||
==================================
|
||||
Surface=84083B2E-4FD5-487F-BD45-E5D4E343F45C WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=DC53A201-26C1-46E9-91D3-C3AE56BB4545 is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=2
|
||||
..Surface=8393EB46-4FAA-43A5-B368-E854E71AFCCB
|
||||
..Surface=0D219A3D-73D0-4395-A077-FAE0E70ED88B
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=DC53A201-26C1-46E9-91D3-C3AE56BB4545 WINDOW
|
||||
==================================
|
||||
Surface=DC53A201-26C1-46E9-91D3-C3AE56BB4545 WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=0B5995F0-7DB2-4420-A13B-4BBE8EF1FBA7 is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=7B357370-6217-4FA1-A6E0-6FFA731AEC57 is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=9861AC03-4A7D-45F4-9434-58A88BD45D5C is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=758B022C-5CEB-40D0-9150-FC36C194C20D is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=1
|
||||
..Surface=D0C04E83-E439-4A67-A562-2796A5D7BAAF
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=758B022C-5CEB-40D0-9150-FC36C194C20D WINDOW
|
||||
==================================
|
||||
Surface=758B022C-5CEB-40D0-9150-FC36C194C20D WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=1E181C1C-FFC7-4372-909F-974432DCA583 is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=3
|
||||
..Surface=FA73E521-0A8E-4B6E-9542-0FDCB2979277
|
||||
..Surface=A06E589C-0BD6-4992-9915-2DC7BE7409A0
|
||||
..Surface=3329F4F6-4B50-4985-8F25-716710C86610
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=1E181C1C-FFC7-4372-909F-974432DCA583 WINDOW
|
||||
==================================
|
||||
Surface=1E181C1C-FFC7-4372-909F-974432DCA583 WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=7D7AD0DA-7269-4B60-8992-21C9C5459C4E is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=1
|
||||
..Surface=A06E589C-0BD6-4992-9915-2DC7BE7409A0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=7D7AD0DA-7269-4B60-8992-21C9C5459C4E WINDOW
|
||||
==================================
|
||||
Surface=7D7AD0DA-7269-4B60-8992-21C9C5459C4E WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=8B400EBE-48B6-4BF8-9E6E-B5F61BF7A706 is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=1
|
||||
..Surface=A06E589C-0BD6-4992-9915-2DC7BE7409A0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=8B400EBE-48B6-4BF8-9E6E-B5F61BF7A706 WINDOW
|
||||
==================================
|
||||
Surface=8B400EBE-48B6-4BF8-9E6E-B5F61BF7A706 WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=69B923B3-D7A3-4221-908D-EBB3D035CD1C is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=69B923B3-D7A3-4221-908D-EBB3D035CD1C WINDOW
|
||||
==================================
|
||||
Surface=69B923B3-D7A3-4221-908D-EBB3D035CD1C WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=D0C04E83-E439-4A67-A562-2796A5D7BAAF is used as Receiving Surface in calculations and is convex.
|
||||
Number of general casting surfaces=1
|
||||
..Surface=758B022C-5CEB-40D0-9150-FC36C194C20D
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=1
|
||||
....Surface=D0C04E83-E439-4A67-A562-2796A5D7BAAF WINDOW
|
||||
==================================
|
||||
Surface=D0C04E83-E439-4A67-A562-2796A5D7BAAF WINDOW is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=F266F375-EAF0-47DC-932E-A4A7283F097A is not used as Receiving Surface in calculations.
|
||||
Number of general casting surfaces=0
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
||||
==================================
|
||||
Surface=78338945-872D-486E-B168-5AEB7DBAAB66 is used as Receiving Surface in calculations and is non-convex.
|
||||
Number of general casting surfaces=3
|
||||
..Surface=FA73E521-0A8E-4B6E-9542-0FDCB2979277
|
||||
..Surface=A06E589C-0BD6-4992-9915-2DC7BE7409A0
|
||||
..Surface=3329F4F6-4B50-4985-8F25-716710C86610
|
||||
Number of back surfaces=0
|
||||
Number of receiving sub surfaces=0
|
|
@ -1,634 +0,0 @@
|
|||
Program Version:,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.03.05 16:24
|
||||
Tabular Output Report in Format: ,Comma
|
||||
|
||||
Building:,Buildings in b'Montreal'
|
||||
Environment:,RUN PERIOD 1 ** Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Annual Building Utility Performance Summary
|
||||
FOR:,Entire Facility
|
||||
Values gathered over 8760.00 hours
|
||||
|
||||
Site and Source Energy
|
||||
|
||||
,,Total Energy [kWh],Energy Per Total Building Area [kWh/m2],Energy Per Conditioned Building Area [kWh/m2]
|
||||
,Total Site Energy,254015.03,821.95,821.95
|
||||
,Net Site Energy,254015.03,821.95,821.95
|
||||
,Total Source Energy,820655.39,2655.52,2655.52
|
||||
,Net Source Energy,820655.39,2655.52,2655.52
|
||||
|
||||
|
||||
Site to Source Energy Conversion Factors
|
||||
|
||||
,,Site=>Source Conversion Factor
|
||||
,Electricity,3.167
|
||||
,Natural Gas,1.084
|
||||
,District Cooling,1.056
|
||||
,District Heating,3.613
|
||||
,Steam,1.200
|
||||
,Gasoline,1.050
|
||||
,Diesel,1.050
|
||||
,Coal,1.050
|
||||
,Fuel Oil No 1,1.050
|
||||
,Fuel Oil No 2,1.050
|
||||
,Propane,1.050
|
||||
,Other Fuel 1,1.000
|
||||
,Other Fuel 2,1.000
|
||||
|
||||
|
||||
Building Area
|
||||
|
||||
,,Area [m2]
|
||||
,Total Building Area,309.04
|
||||
,Net Conditioned Building Area,309.04
|
||||
,Unconditioned Building Area,0.00
|
||||
|
||||
|
||||
End Uses
|
||||
|
||||
,,Electricity [kWh],Natural Gas [kWh],Gasoline [kWh],Diesel [kWh],Coal [kWh],Fuel Oil No 1 [kWh],Fuel Oil No 2 [kWh],Propane [kWh],Other Fuel 1 [kWh],Other Fuel 2 [kWh],District Cooling [kWh],District Heating [kWh],Water [m3]
|
||||
,Heating,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,114133.39,0.00
|
||||
,Cooling,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,32461.74,0.00,0.00
|
||||
,Interior Lighting,11659.74,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Lighting,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Interior Equipment,20063.83,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Equipment,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Fans,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Pumps,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Rejection,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Humidification,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Recovery,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Water Systems,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,75696.33,1068.88
|
||||
,Refrigeration,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Generators,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,,,,,,,,,,,,,
|
||||
,Total End Uses,31723.57,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,32461.74,189829.73,1068.88
|
||||
Note: District heat appears to be the principal heating source based on energy usage.
|
||||
|
||||
|
||||
End Uses By Subcategory
|
||||
|
||||
,,Subcategory,Electricity [kWh],Natural Gas [kWh],Gasoline [kWh],Diesel [kWh],Coal [kWh],Fuel Oil No 1 [kWh],Fuel Oil No 2 [kWh],Propane [kWh],Other Fuel 1 [kWh],Other Fuel 2 [kWh],District Cooling [kWh],District Heating [kWh],Water [m3]
|
||||
,Heating,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,114133.39,0.00
|
||||
,Cooling,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,32461.74,0.00,0.00
|
||||
,Interior Lighting,ELECTRIC EQUIPMENT#175785#GeneralLights,5260.06,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#176293#GeneralLights,4157.54,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#182393#GeneralLights,2242.14,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Lighting,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Interior Equipment,ELECTRIC EQUIPMENT#175785#InteriorEquipment,9051.40,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#176293#InteriorEquipment,7154.20,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#182393#InteriorEquipment,3858.22,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Equipment,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Fans,Ventilation (simple),0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Pumps,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Rejection,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Humidification,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Recovery,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Water Systems,DHW 175785,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,34148.92,482.20
|
||||
,,DHW 176293,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,26991.20,381.13
|
||||
,,DHW 182393,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,14556.22,205.54
|
||||
,Refrigeration,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Generators,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
|
||||
|
||||
Normalized Metrics
|
||||
Utility Use Per Conditioned Floor Area
|
||||
|
||||
,,Electricity Intensity [kWh/m2],Natural Gas Intensity [kWh/m2],Gasoline Intensity [kWh/m2],Diesel Intensity [kWh/m2],Coal Intensity [kWh/m2],Fuel Oil No 1 Intensity [kWh/m2],Fuel Oil No 2 Intensity [kWh/m2],Propane Intensity [kWh/m2],Other Fuel 1 Intensity [kWh/m2],Other Fuel 2 Intensity [kWh/m2],District Cooling Intensity [kWh/m2],District Heating Intensity [kWh/m2],Water Intensity [m3/m2]
|
||||
,Lighting,37.73,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,HVAC,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,105.04,614.26,3.46
|
||||
,Other,64.92,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Total,102.65,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,105.04,614.26,3.46
|
||||
|
||||
|
||||
Utility Use Per Total Floor Area
|
||||
|
||||
,,Electricity Intensity [kWh/m2],Natural Gas Intensity [kWh/m2],Gasoline Intensity [kWh/m2],Diesel Intensity [kWh/m2],Coal Intensity [kWh/m2],Fuel Oil No 1 Intensity [kWh/m2],Fuel Oil No 2 Intensity [kWh/m2],Propane Intensity [kWh/m2],Other Fuel 1 Intensity [kWh/m2],Other Fuel 2 Intensity [kWh/m2],District Cooling Intensity [kWh/m2],District Heating Intensity [kWh/m2],Water Intensity [m3/m2]
|
||||
,Lighting,37.73,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,HVAC,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,105.04,614.26,3.46
|
||||
,Other,64.92,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Total,102.65,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,105.04,614.26,3.46
|
||||
|
||||
|
||||
Electric Loads Satisfied
|
||||
|
||||
,,Electricity [kWh],Percent Electricity [%]
|
||||
,Fuel-Fired Power Generation,0.000,0.00
|
||||
,High Temperature Geothermal*,0.000,0.00
|
||||
,Photovoltaic Power,0.000,0.00
|
||||
,Wind Power,0.000,0.00
|
||||
,Power Conversion,0.000,0.00
|
||||
,Net Decrease in On-Site Storage,0.000,0.00
|
||||
,Total On-Site Electric Sources,0.000,0.00
|
||||
,,,
|
||||
,Electricity Coming From Utility,31723.568,100.00
|
||||
,Surplus Electricity Going To Utility,0.000,0.00
|
||||
,Net Electricity From Utility,31723.568,100.00
|
||||
,,,
|
||||
,Total On-Site and Utility Electric Sources,31723.568,100.00
|
||||
,Total Electricity End Uses,31723.568,100.00
|
||||
|
||||
|
||||
On-Site Thermal Sources
|
||||
|
||||
,,Heat [kWh],Percent Heat [%]
|
||||
,Water-Side Heat Recovery,0.00,
|
||||
,Air to Air Heat Recovery for Cooling,0.00,
|
||||
,Air to Air Heat Recovery for Heating,0.00,
|
||||
,High-Temperature Geothermal*,0.00,
|
||||
,Solar Water Thermal,0.00,
|
||||
,Solar Air Thermal,0.00,
|
||||
,Total On-Site Thermal Sources,0.00,
|
||||
|
||||
|
||||
Water Source Summary
|
||||
|
||||
,,Water [m3],Percent Water [%]
|
||||
,Rainwater Collection,0.00,0.00
|
||||
,Condensate Collection,0.00,0.00
|
||||
,Groundwater Well,0.00,0.00
|
||||
,Total On Site Water Sources,0.00,0.00
|
||||
,-,-,-
|
||||
,Initial Storage,0.00,0.00
|
||||
,Final Storage,0.00,0.00
|
||||
,Change in Storage,0.00,0.00
|
||||
,-,-,-
|
||||
,Water Supplied by Utility,1068.88,100.00
|
||||
,-,-,-
|
||||
,Total On Site, Change in Storage, and Utility Water Sources,1068.88,100.00
|
||||
,Total Water End Uses,1068.88,100.00
|
||||
|
||||
|
||||
Setpoint Not Met Criteria
|
||||
|
||||
,,Degrees [deltaC]
|
||||
,Tolerance for Zone Heating Setpoint Not Met Time,0.20
|
||||
,Tolerance for Zone Cooling Setpoint Not Met Time,0.20
|
||||
|
||||
|
||||
Comfort and Setpoint Not Met Summary
|
||||
|
||||
,,Facility [Hours]
|
||||
,Time Setpoint Not Met During Occupied Heating,0.00
|
||||
,Time Setpoint Not Met During Occupied Cooling,0.00
|
||||
,Time Not Comfortable Based on Simple ASHRAE 55-2004,5311.25
|
||||
|
||||
|
||||
Note 1: An asterisk (*) indicates that the feature is not yet implemented.
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Input Verification and Results Summary
|
||||
FOR:,Entire Facility
|
||||
General
|
||||
|
||||
,,Value
|
||||
,Program Version and Build,EnergyPlus, Version 9.5.0-de239b2e5f, YMD=2024.03.05 16:24
|
||||
,RunPeriod,RUN PERIOD 1
|
||||
,Weather File,Montreal Int'l PQ CAN WYEC2-B-94792 WMO#=716270
|
||||
,Latitude [deg],45.47
|
||||
,Longitude [deg],-73.8
|
||||
,Elevation [m],36.00
|
||||
,Time Zone,-5.0
|
||||
,North Axis Angle [deg],0.00
|
||||
,Rotation for Appendix G [deg],0.00
|
||||
,Hours Simulated [hrs],8760.00
|
||||
|
||||
|
||||
ENVELOPE
|
||||
Window-Wall Ratio
|
||||
|
||||
,,Total,North (315 to 45 deg),East (45 to 135 deg),South (135 to 225 deg),West (225 to 315 deg)
|
||||
,Gross Wall Area [m2],1077.40,327.00,209.46,326.62,214.31
|
||||
,Above Ground Wall Area [m2],1077.40,327.00,209.46,326.62,214.31
|
||||
,Window Opening Area [m2],215.26,65.34,41.85,65.26,42.82
|
||||
,Gross Window-Wall Ratio [%],19.98,19.98,19.98,19.98,19.98
|
||||
,Above Ground Window-Wall Ratio [%],19.98,19.98,19.98,19.98,19.98
|
||||
|
||||
|
||||
Conditioned Window-Wall Ratio
|
||||
|
||||
,,Total,North (315 to 45 deg),East (45 to 135 deg),South (135 to 225 deg),West (225 to 315 deg)
|
||||
,Gross Wall Area [m2],1077.40,327.00,209.46,326.62,214.31
|
||||
,Above Ground Wall Area [m2],1077.40,327.00,209.46,326.62,214.31
|
||||
,Window Opening Area [m2],215.26,65.34,41.85,65.26,42.82
|
||||
,Gross Window-Wall Ratio [%],19.98,19.98,19.98,19.98,19.98
|
||||
,Above Ground Window-Wall Ratio [%],19.98,19.98,19.98,19.98,19.98
|
||||
|
||||
|
||||
Skylight-Roof Ratio
|
||||
|
||||
,,Total
|
||||
,Gross Roof Area [m2],309.04
|
||||
,Skylight Area [m2],0.00
|
||||
,Skylight-Roof Ratio [%],0.00
|
||||
|
||||
|
||||
PERFORMANCE
|
||||
Zone Summary
|
||||
|
||||
,,Area [m2],Conditioned (Y/N),Part of Total Floor Area (Y/N),Volume [m3],Multipliers,Above Ground Gross Wall Area [m2],Underground Gross Wall Area [m2],Window Glass Area [m2],Opening Area [m2],Lighting [W/m2],People [m2 per person],Plug and Process [W/m2]
|
||||
,175785,116.93,Yes,Yes,1403.17,1.00,410.07,0.00,81.93,81.93,22.0080,6.25,20.0073
|
||||
,176293,92.42,Yes,Yes,1109.06,1.00,326.92,0.00,65.32,65.32,22.0080,6.25,20.0073
|
||||
,182393,99.69,Yes,Yes,797.48,1.00,340.41,0.00,68.01,68.01,11.0040,12.50,10.0036
|
||||
,Total,309.04,,,3309.71,,1077.40,0.00,215.26,215.26,18.4585,7.45,16.7804
|
||||
,Conditioned Total,309.04,,,3309.71,,1077.40,0.00,215.26,215.26,18.4585,7.45,16.7804
|
||||
,Unconditioned Total,0.00,,,0.00,,0.00,0.00,0.00,0.00,,,
|
||||
,Not Part of Total,0.00,,,0.00,,0.00,0.00,0.00,0.00,,,
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Demand End Use Components Summary
|
||||
FOR:,Entire Facility
|
||||
End Uses
|
||||
|
||||
,,Electricity [W],Natural Gas [W],Gasoline [W],Diesel [W],Coal [W],Fuel Oil No 1 [W],Fuel Oil No 2 [W],Propane [W],Other Fuel 1 [W],Other Fuel 2 [W],District Cooling [W],District Heating [W],Water [m3/s]
|
||||
,Time of Peak,01-JAN-19:15,-,-,-,-,-,-,-,-,-,20-JUL-16:30,04-FEB-07:15,10-AUG-16:15
|
||||
,Heating,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,72233.34,0.00
|
||||
,Cooling,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,45602.66,0.00,0.00
|
||||
,Interior Lighting,5133.93,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Lighting,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Interior Equipment,4667.21,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Equipment,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Fans,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Pumps,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Rejection,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Humidification,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Recovery,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Water Systems,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,20682.68,0.00
|
||||
,Refrigeration,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Generators,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,,,,,,,,,,,,,
|
||||
,Total End Uses,9801.15,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,45602.66,92916.02,0.00
|
||||
|
||||
|
||||
End Uses By Subcategory
|
||||
|
||||
,,Subcategory,Electricity [W],Natural Gas [W],Gasoline [W],Diesel [W],Coal [W],Fuel Oil No 1 [W],Fuel Oil No 2 [W],Propane [W],Other Fuel 1 [W],Other Fuel 2 [W],District Cooling [W],District Heating [W],Water [m3/s]
|
||||
,Heating,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,72233.34,0.00
|
||||
,Cooling,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,45602.66,0.00,0.00
|
||||
,Interior Lighting,ELECTRIC EQUIPMENT#175785#GeneralLights,2316.07,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#176293#GeneralLights,1830.62,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#182393#GeneralLights,987.24,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Lighting,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Interior Equipment,ELECTRIC EQUIPMENT#175785#InteriorEquipment,2105.52,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#176293#InteriorEquipment,1664.20,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,,ELECTRIC EQUIPMENT#182393#InteriorEquipment,897.49,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Exterior Equipment,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Fans,Ventilation (simple),0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Pumps,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Rejection,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Humidification,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Heat Recovery,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Water Systems,DHW 175785,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,9330.58,0.00
|
||||
,,DHW 176293,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,7374.87,0.00
|
||||
,,DHW 182393,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,3977.23,0.00
|
||||
,Refrigeration,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
,Generators,General,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Component Sizing Summary
|
||||
FOR:,Entire Facility
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Adaptive Comfort Summary
|
||||
FOR:,Entire Facility
|
||||
Time Not Meeting the Adaptive Comfort Models during Occupied Hours
|
||||
|
||||
,,ASHRAE55 90% Acceptability Limits [Hours],ASHRAE55 80% Acceptability Limits [Hours],CEN15251 Category I Acceptability Limits [Hours],CEN15251 Category II Acceptability Limits [Hours],CEN15251 Category III Acceptability Limits [Hours]
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Climatic Data Summary
|
||||
FOR:,Entire Facility
|
||||
SizingPeriod:DesignDay
|
||||
|
||||
,,Maximum Dry Bulb [C],Daily Temperature Range [deltaC],Humidity Value,Humidity Type,Wind Speed [m/s],Wind Direction
|
||||
,None,,,,,,
|
||||
|
||||
|
||||
Weather Statistics File
|
||||
|
||||
,,Value
|
||||
,None,
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Envelope Summary
|
||||
FOR:,Entire Facility
|
||||
Opaque Exterior
|
||||
|
||||
,,Construction,Reflectance,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Net Area [m2],Azimuth [deg],Tilt [deg],Cardinal Direction
|
||||
,FA73E521-0A8E-4B6E-9542-0FDCB2979277,1981_1990_6,0.40,0.644,0.713,79.35,63.50,89.98,90.00,E
|
||||
,8393EB46-4FAA-43A5-B368-E854E71AFCCB,1981_1990_6,0.40,0.644,0.713,1.88,1.50,270.07,90.00,W
|
||||
,0D219A3D-73D0-4395-A077-FAE0E70ED88B,1981_1990_6,0.40,0.644,0.713,38.53,30.83,0.07,90.00,N
|
||||
,BA0D264B-C44E-4963-803B-B57468938FB7,1981_1990_6,0.40,0.644,0.713,77.98,62.40,269.91,90.00,W
|
||||
,A06E589C-0BD6-4992-9915-2DC7BE7409A0,1981_1990_6,0.40,0.644,0.713,212.34,169.91,179.99,90.00,S
|
||||
,ABC70BFE-5F86-4A6E-B599-86D884D03D49,1981_1990_6,0.40,0.639,0.713,116.93,116.93,359.99,180.00,
|
||||
,EAA6E3A9-2413-4A36-A820-B46A75B3E2FD,1981_1990_6,0.40,0.649,0.713,116.93,116.93,0.13,0.00,
|
||||
,3329F4F6-4B50-4985-8F25-716710C86610,1981_1990_6,0.40,0.644,0.713,76.55,61.25,89.98,90.00,E
|
||||
,84083B2E-4FD5-487F-BD45-E5D4E343F45C,1981_1990_6,0.40,0.644,0.713,173.82,139.09,0.13,90.00,N
|
||||
,DC53A201-26C1-46E9-91D3-C3AE56BB4545,1981_1990_6,0.40,0.644,0.713,76.55,61.25,270.04,90.00,W
|
||||
,7B357370-6217-4FA1-A6E0-6FFA731AEC57,1981_1990_6,0.40,0.639,0.713,92.42,92.42,0.13,180.00,
|
||||
,9861AC03-4A7D-45F4-9434-58A88BD45D5C,1981_1990_6,0.40,0.649,0.713,92.42,92.42,0.13,0.00,
|
||||
,758B022C-5CEB-40D0-9150-FC36C194C20D,1981_1990_6,0.40,0.644,0.713,3.22,2.58,91.08,90.00,E
|
||||
,1E181C1C-FFC7-4372-909F-974432DCA583,1981_1990_6,0.40,0.644,0.713,106.72,85.40,2.33,90.00,N
|
||||
,7D7AD0DA-7269-4B60-8992-21C9C5459C4E,1981_1990_6,0.40,0.644,0.713,7.94,6.35,1.96,90.00,N
|
||||
,8B400EBE-48B6-4BF8-9E6E-B5F61BF7A706,1981_1990_6,0.40,0.644,0.713,57.91,46.34,270.12,90.00,W
|
||||
,69B923B3-D7A3-4221-908D-EBB3D035CD1C,1981_1990_6,0.40,0.644,0.713,114.28,91.44,180.13,90.00,S
|
||||
,D0C04E83-E439-4A67-A562-2796A5D7BAAF,1981_1990_6,0.40,0.644,0.713,50.34,40.28,90.40,90.00,E
|
||||
,F266F375-EAF0-47DC-932E-A4A7283F097A,1981_1990_6,0.40,0.639,0.713,99.69,99.69,270.40,180.00,
|
||||
,78338945-872D-486E-B168-5AEB7DBAAB66,1981_1990_6,0.40,0.649,0.713,99.69,99.69,91.08,0.00,
|
||||
|
||||
|
||||
Opaque Interior
|
||||
|
||||
,,Construction,Reflectance,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Net Area [m2],Azimuth [deg],Tilt [deg],Cardinal Direction
|
||||
,1D8C91EF-85F3-43A9-8847-F172A8303A04,1981_1990_6,0.40,0.609,0.713,173.90,173.90,0.13,90.00,N
|
||||
,0B5995F0-7DB2-4420-A13B-4BBE8EF1FBA7,1981_1990_6,0.40,0.609,0.713,173.90,173.90,180.13,90.00,S
|
||||
|
||||
|
||||
Exterior Fenestration
|
||||
|
||||
,,Construction,Glass Area [m2],Frame Area [m2],Divider Area [m2],Area of One Opening [m2],Area of Multiplied Openings [m2],Glass U-Factor [W/m2-K],Glass SHGC,Glass Visible Transmittance,Frame Conductance [W/m2-K],Divider Conductance [W/m2-K],Shade Control,Parent Surface,Azimuth [deg],Tilt [deg],Cardinal Direction
|
||||
,FA73E521-0A8E-4B6E-9542-0FDCB2979277 WINDOW,WINDOW_CONSTRUCTION_1,15.85,0.00,0.00,15.85,15.85,2.954,0.391,0.305,,,No,FA73E521-0A8E-4B6E-9542-0FDCB2979277,89.98,90.00,E
|
||||
,8393EB46-4FAA-43A5-B368-E854E71AFCCB WINDOW,WINDOW_CONSTRUCTION_1,0.37,0.00,0.00,0.37,0.37,2.954,0.391,0.305,,,No,8393EB46-4FAA-43A5-B368-E854E71AFCCB,270.07,90.00,W
|
||||
,0D219A3D-73D0-4395-A077-FAE0E70ED88B WINDOW,WINDOW_CONSTRUCTION_1,7.70,0.00,0.00,7.70,7.70,2.954,0.391,0.305,,,No,0D219A3D-73D0-4395-A077-FAE0E70ED88B,0.07,90.00,N
|
||||
,BA0D264B-C44E-4963-803B-B57468938FB7 WINDOW,WINDOW_CONSTRUCTION_1,15.58,0.00,0.00,15.58,15.58,2.954,0.391,0.305,,,No,BA0D264B-C44E-4963-803B-B57468938FB7,269.91,90.00,W
|
||||
,A06E589C-0BD6-4992-9915-2DC7BE7409A0 WINDOW,WINDOW_CONSTRUCTION_1,42.43,0.00,0.00,42.43,42.43,2.954,0.391,0.305,,,No,A06E589C-0BD6-4992-9915-2DC7BE7409A0,179.99,90.00,S
|
||||
,3329F4F6-4B50-4985-8F25-716710C86610 WINDOW,WINDOW_CONSTRUCTION_1,15.29,0.00,0.00,15.29,15.29,2.954,0.391,0.305,,,No,3329F4F6-4B50-4985-8F25-716710C86610,89.98,90.00,E
|
||||
,84083B2E-4FD5-487F-BD45-E5D4E343F45C WINDOW,WINDOW_CONSTRUCTION_1,34.73,0.00,0.00,34.73,34.73,2.954,0.391,0.305,,,No,84083B2E-4FD5-487F-BD45-E5D4E343F45C,0.13,90.00,N
|
||||
,DC53A201-26C1-46E9-91D3-C3AE56BB4545 WINDOW,WINDOW_CONSTRUCTION_1,15.29,0.00,0.00,15.29,15.29,2.954,0.391,0.305,,,No,DC53A201-26C1-46E9-91D3-C3AE56BB4545,270.04,90.00,W
|
||||
,758B022C-5CEB-40D0-9150-FC36C194C20D WINDOW,WINDOW_CONSTRUCTION_1,0.64,0.00,0.00,0.64,0.64,2.954,0.391,0.305,,,No,758B022C-5CEB-40D0-9150-FC36C194C20D,91.08,90.00,E
|
||||
,1E181C1C-FFC7-4372-909F-974432DCA583 WINDOW,WINDOW_CONSTRUCTION_1,21.32,0.00,0.00,21.32,21.32,2.954,0.391,0.305,,,No,1E181C1C-FFC7-4372-909F-974432DCA583,2.33,90.00,N
|
||||
,7D7AD0DA-7269-4B60-8992-21C9C5459C4E WINDOW,WINDOW_CONSTRUCTION_1,1.59,0.00,0.00,1.59,1.59,2.954,0.391,0.305,,,No,7D7AD0DA-7269-4B60-8992-21C9C5459C4E,1.96,90.00,N
|
||||
,8B400EBE-48B6-4BF8-9E6E-B5F61BF7A706 WINDOW,WINDOW_CONSTRUCTION_1,11.57,0.00,0.00,11.57,11.57,2.954,0.391,0.305,,,No,8B400EBE-48B6-4BF8-9E6E-B5F61BF7A706,270.12,90.00,W
|
||||
,69B923B3-D7A3-4221-908D-EBB3D035CD1C WINDOW,WINDOW_CONSTRUCTION_1,22.83,0.00,0.00,22.83,22.83,2.954,0.391,0.305,,,No,69B923B3-D7A3-4221-908D-EBB3D035CD1C,180.13,90.00,S
|
||||
,D0C04E83-E439-4A67-A562-2796A5D7BAAF WINDOW,WINDOW_CONSTRUCTION_1,10.06,0.00,0.00,10.06,10.06,2.954,0.391,0.305,,,No,D0C04E83-E439-4A67-A562-2796A5D7BAAF,90.40,90.00,E
|
||||
,Total or Average,,,,,,215.26,2.954,0.391,0.305,,,,,,,
|
||||
,North Total or Average,,,,,,65.34,2.954,0.391,0.305,,,,,,,
|
||||
,Non-North Total or Average,,,,,,149.93,2.954,0.391,0.305,,,,,,,
|
||||
|
||||
|
||||
Interior Fenestration
|
||||
|
||||
,,Construction,Area of One Opening [m2],Area of Openings [m2],Glass U-Factor [W/m2-K],Glass SHGC,Glass Visible Transmittance,Parent Surface
|
||||
,Total or Average,,,0.00,-,-,-,
|
||||
|
||||
|
||||
Exterior Door
|
||||
|
||||
,,Construction,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Parent Surface
|
||||
,None,,,,,
|
||||
|
||||
|
||||
Interior Door
|
||||
|
||||
,,Construction,U-Factor with Film [W/m2-K],U-Factor no Film [W/m2-K],Gross Area [m2],Parent Surface
|
||||
,None,,,,,
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Lighting Summary
|
||||
FOR:,Entire Facility
|
||||
Interior Lighting
|
||||
|
||||
,,Zone,Lighting Power Density [W/m2],Zone Area [m2],Total Power [W],End Use Subcategory,Schedule Name,Scheduled Hours/Week [hr],Hours/Week > 1% [hr],Full Load Hours/Week [hr],Return Air Fraction,Conditioned (Y/N),Consumption [kWh]
|
||||
,175785_LIGHTS,175785,22.0080,116.93,2573.42,ELECTRIC EQUIPMENT#175785#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,5259.87
|
||||
,176293_LIGHTS,176293,22.0080,92.42,2034.02,ELECTRIC EQUIPMENT#176293#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,4157.39
|
||||
,182393_LIGHTS,182393,11.0040,99.69,1096.94,ELECTRIC EQUIPMENT#182393#GeneralLights,LIGHTING SCHEDULES 100-MULTI-UNIT RESIDENTIAL BUILDING,39.20,63.00,39.20,0.0000,Y,2242.06
|
||||
,Interior Lighting Total,,18.4585,309.04,5704.37,,,,,,,,11659.32
|
||||
|
||||
|
||||
Daylighting
|
||||
|
||||
,,Zone,Control Name,Daylighting Method,Control Type,Fraction Controlled,Lighting Installed in Zone [W],Lighting Controlled [W]
|
||||
,None,,,,,,,
|
||||
|
||||
|
||||
Exterior Lighting
|
||||
|
||||
,,Total Watts,Astronomical Clock/Schedule,Schedule Name,Scheduled Hours/Week [hr],Hours/Week > 1% [hr],Full Load Hours/Week [hr],Consumption [kWh]
|
||||
,Exterior Lighting Total,0.00,,,,,,0.00
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Equipment Summary
|
||||
FOR:,Entire Facility
|
||||
Central Plant
|
||||
|
||||
,,Type,Nominal Capacity [W],Nominal Efficiency [W/W],IPLV in SI Units [W/W],IPLV in IP Units [Btu/W-h]
|
||||
,None,,,,,
|
||||
|
||||
|
||||
Cooling Coils
|
||||
|
||||
,,Type,Design Coil Load [W],Nominal Total Capacity [W],Nominal Sensible Capacity [W],Nominal Latent Capacity [W],Nominal Sensible Heat Ratio,Nominal Efficiency [W/W],Nominal Coil UA Value [W/C],Nominal Coil Surface Area [m2]
|
||||
,None,,,,,,,,,
|
||||
|
||||
|
||||
DX Cooling Coils
|
||||
|
||||
,,DX Cooling Coil Type,Standard Rated Net Cooling Capacity [W],Standard Rated Net COP [W/W],EER [Btu/W-h],SEER User [Btu/W-h],SEER Standard [Btu/W-h],IEER [Btu/W-h]
|
||||
,None,,,,,,,
|
||||
|
||||
|
||||
DX Cooling Coil ASHRAE 127 Standard Ratings Report
|
||||
|
||||
,,DX Cooling Coil Type,Rated Net Cooling Capacity Test A [W],Rated Electric Power Test A [W],Rated Net Cooling Capacity Test B [W],Rated Electric Power Test B [W],Rated Net Cooling Capacity Test C [W],Rated Electric Power Test C [W],Rated Net Cooling Capacity Test D [W],Rated Electric Power Test D [W]
|
||||
,None,,,,,,,,,
|
||||
|
||||
|
||||
DX Heating Coils
|
||||
|
||||
,,DX Heating Coil Type,High Temperature Heating (net) Rating Capacity [W],Low Temperature Heating (net) Rating Capacity [W],HSPF [Btu/W-h],Region Number
|
||||
,None,,,,,
|
||||
|
||||
|
||||
Heating Coils
|
||||
|
||||
,,Type,Design Coil Load [W],Nominal Total Capacity [W],Nominal Efficiency [W/W]
|
||||
,None,,,,
|
||||
|
||||
|
||||
Fans
|
||||
|
||||
,,Type,Total Efficiency [W/W],Delta Pressure [pa],Max Air Flow Rate [m3/s],Rated Electricity Rate [W],Rated Power Per Max Air Flow Rate [W-s/m3],Motor Heat In Air Fraction,Fan Energy Index,End Use Subcategory,Design Day Name for Fan Sizing Peak,Date/Time for Fan Sizing Peak
|
||||
,None,,,,,,,,,,,
|
||||
|
||||
|
||||
Pumps
|
||||
|
||||
,,Type,Control,Head [pa],Water Flow [m3/s],Electricity Rate [W],Power Per Water Flow Rate [W-s/m3],Motor Efficiency [W/W],End Use Subcategory
|
||||
,None,,,,,,,,
|
||||
|
||||
|
||||
Service Water Heating
|
||||
|
||||
,,Type,Storage Volume [m3],Input [W],Thermal Efficiency [W/W],Recovery Efficiency [W/W],Energy Factor
|
||||
,None,,,,,,
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,HVAC Sizing Summary
|
||||
FOR:,Entire Facility
|
||||
Zone Sensible Cooling
|
||||
|
||||
,,Calculated Design Load [W],User Design Load [W],User Design Load per Area [W/m2],Calculated Design Air Flow [m3/s],User Design Air Flow [m3/s],Design Day Name,Date/Time Of Peak {TIMESTAMP},Thermostat Setpoint Temperature at Peak Load [C],Indoor Temperature at Peak Load [C],Indoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Outdoor Temperature at Peak Load [C],Outdoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Minimum Outdoor Air Flow Rate [m3/s],Heat Gain Rate from DOAS [W]
|
||||
,None,,,,,,,,,,,,,,
|
||||
The Design Load is the zone sensible load only. It does not include any system effects or ventilation loads.
|
||||
|
||||
|
||||
Zone Sensible Heating
|
||||
|
||||
,,Calculated Design Load [W],User Design Load [W],User Design Load per Area [W/m2],Calculated Design Air Flow [m3/s],User Design Air Flow [m3/s],Design Day Name,Date/Time Of Peak {TIMESTAMP},Thermostat Setpoint Temperature at Peak Load [C],Indoor Temperature at Peak Load [C],Indoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Outdoor Temperature at Peak Load [C],Outdoor Humidity Ratio at Peak Load [kgWater/kgDryAir],Minimum Outdoor Air Flow Rate [m3/s],Heat Gain Rate from DOAS [W]
|
||||
,None,,,,,,,,,,,,,,
|
||||
The Design Load is the zone sensible load only. It does not include any system effects or ventilation loads.
|
||||
|
||||
|
||||
System Design Air Flow Rates
|
||||
|
||||
,,Calculated cooling [m3/s],User cooling [m3/s],Calculated heating [m3/s],User heating [m3/s],Adjusted cooling [m3/s],Adjusted heating [m3/s],Adjusted main [m3/s],Calculated Heating Air Flow Ratio [],User Heating Air Flow Ratio []
|
||||
,None,,,,,,,,,
|
||||
|
||||
|
||||
Plant Loop Coincident Design Fluid Flow Rate Adjustments
|
||||
|
||||
,,Previous Design Volume Flow Rate [m3/s],Algorithm Volume Flow Rate [m3/s],Coincident Design Volume Flow Rate [m3/s],Coincident Size Adjusted,Peak Sizing Period Name,Peak Day into Period {TIMESTAMP}[day],Peak Hour Of Day {TIMESTAMP}[hr],Peak Step Start Minute {TIMESTAMP}[min]
|
||||
,None,,,,,,,,
|
||||
|
||||
|
||||
Coil Sizing Summary
|
||||
|
||||
,,Coil Type,HVAC Type,HVAC Name,Coil Final Gross Total Capacity [W],Coil Final Gross Sensible Capacity [W],Coil Final Reference Air Volume Flow Rate [m3/s],Coil Final Reference Plant Fluid Volume Flow Rate [m3/s],Coil U-value Times Area Value [W/K],Design Day Name at Sensible Ideal Loads Peak,Date/Time at Sensible Ideal Loads Peak,Design Day Name at Air Flow Ideal Loads Peak,Date/Time at Air Flow Ideal Loads Peak,Coil Total Capacity at Ideal Loads Peak [W],Coil Sensible Capacity at Ideal Loads Peak [W],Coil Air Volume Flow Rate at Ideal Loads Peak [m3/s],Coil Entering Air Drybulb at Ideal Loads Peak [C],Coil Entering Air Wetbulb at Ideal Loads Peak [C],Coil Entering Air Humidity Ratio at Ideal Loads Peak [kgWater/kgDryAir],Coil Leaving Air Drybulb at Ideal Loads Peak [C],Coil Leaving Air Wetbulb at Ideal Loads Peak [C],Coil Leaving Air Humidity Ratio at Ideal Loads Peak [kgWater/kgDryAir],Outdoor Air Drybulb at Ideal Loads Peak [C],Outdoor Air Humidity Ratio at Ideal Loads Peak [kgWater/kgDryAir],Outdoor Air Wetbulb at Ideal Loads Peak [C],Outdoor Air Flow Percentage at Ideal Loads Peak [%],Zone Air Drybulb at Ideal Loads Peak [C],Zone Air Humidity Ratio at Ideal Loads Peak [kgWater/kgDryAir],Zone Air Relative Humidity at Ideal Loads Peak [%],Zone Sensible Heat Gain at Ideal Loads Peak [W],Zone Latent Heat Gain at Ideal Loads Peak [W],Coil Total Capacity at Rating Conditions [W],Coil Sensible Capacity at Rating Conditions [W]
|
||||
,None,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,System Summary
|
||||
FOR:,Entire Facility
|
||||
Economizer
|
||||
|
||||
,,High Limit Shutoff Control,Minimum Outdoor Air [m3/s],Maximum Outdoor Air [m3/s],Return Air Temp Limit,Return Air Enthalpy Limit,Outdoor Air Temperature Limit [C],Outdoor Air Enthalpy Limit [C]
|
||||
,None,,,,,,,
|
||||
|
||||
|
||||
Demand Controlled Ventilation using Controller:MechanicalVentilation
|
||||
|
||||
,,Controller:MechanicalVentilation Name,Outdoor Air Per Person [m3/s-person],Outdoor Air Per Area [m3/s-m2],Outdoor Air Per Zone [m3/s],Outdoor Air ACH [ach],Outdoor Air Method,Outdoor Air Schedule Name,Air Distribution Effectiveness in Cooling Mode,Air Distribution Effectiveness in Heating Mode,Air Distribution Effectiveness Schedule Name
|
||||
,None,,,,,,,,,,
|
||||
|
||||
|
||||
Time Not Comfortable Based on Simple ASHRAE 55-2004
|
||||
|
||||
,,Winter Clothes [hr],Summer Clothes [hr],Summer or Winter Clothes [hr]
|
||||
,175785,6488.00,6546.00,4705.50
|
||||
,176293,6574.50,6807.50,5004.50
|
||||
,182393,6624.75,6733.50,5006.75
|
||||
,Facility,7106.25,7011.75,5311.25
|
||||
Aggregated over the RunPeriods for Weather
|
||||
|
||||
|
||||
Time Setpoint Not Met
|
||||
|
||||
,,During Heating [hr],During Cooling [hr],During Occupied Heating [hr],During Occupied Cooling [hr]
|
||||
,175785,0.00,0.00,0.00,0.00
|
||||
,176293,0.00,0.00,0.00,0.00
|
||||
,182393,0.00,0.00,0.00,0.00
|
||||
,Facility,0.00,0.00,0.00,0.00
|
||||
Aggregated over the RunPeriods for Weather
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Outdoor Air Summary
|
||||
FOR:,Entire Facility
|
||||
Average Outdoor Air During Occupied Hours
|
||||
|
||||
,,Average Number of Occupants,Nominal Number of Occupants,Zone Volume [m3],Mechanical Ventilation [ach],Infiltration [ach],AFN Infiltration [ach],Simple Ventilation [ach]
|
||||
,175785,12.66,18.72,1403.17,0.000,0.000,0.000,0.387
|
||||
,176293,10.01,14.79,1109.06,0.000,0.000,0.000,0.387
|
||||
,182393,5.40,7.98,797.48,0.000,0.000,0.000,0.290
|
||||
Values shown for a single zone without multipliers
|
||||
|
||||
|
||||
Minimum Outdoor Air During Occupied Hours
|
||||
|
||||
,,Average Number of Occupants,Nominal Number of Occupants,Zone Volume [m3],Mechanical Ventilation [ach],Infiltration [ach],AFN Infiltration [ach],Simple Ventilation [ach]
|
||||
,175785,12.66,18.72,1403.17,0.000,0.000,0.000,0.007
|
||||
,176293,10.01,14.79,1109.06,0.000,0.000,0.000,0.007
|
||||
,182393,5.40,7.98,797.48,0.000,0.000,0.000,0.005
|
||||
Values shown for a single zone without multipliers
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Object Count Summary
|
||||
FOR:,Entire Facility
|
||||
Surfaces by Class
|
||||
|
||||
,,Total,Outdoors
|
||||
,Wall,16,14
|
||||
,Floor,3,3
|
||||
,Roof,3,3
|
||||
,Internal Mass,0,0
|
||||
,Building Detached Shading,0,0
|
||||
,Fixed Detached Shading,0,0
|
||||
,Window,14,14
|
||||
,Door,0,0
|
||||
,Glass Door,0,0
|
||||
,Shading,0,0
|
||||
,Overhang,0,0
|
||||
,Fin,0,0
|
||||
,Tubular Daylighting Device Dome,0,0
|
||||
,Tubular Daylighting Device Diffuser,0,0
|
||||
|
||||
|
||||
HVAC
|
||||
|
||||
,,Count
|
||||
,HVAC Air Loops,0
|
||||
,Conditioned Zones,3
|
||||
,Unconditioned Zones,0
|
||||
,Supply Plenums,0
|
||||
,Return Plenums,0
|
||||
|
||||
|
||||
Input Fields
|
||||
|
||||
,,Count
|
||||
,IDF Objects,113
|
||||
,Defaulted Fields,8
|
||||
,Fields with Defaults,401
|
||||
,Autosized Fields,0
|
||||
,Autosizable Fields,12
|
||||
,Autocalculated Fields,81
|
||||
,Autocalculatable Fields,84
|
||||
|
||||
|
||||
----------------------------------------------------------------------------------------------------
|
||||
REPORT:,Sensible Heat Gain Summary
|
||||
FOR:,Entire Facility
|
||||
Annual Building Sensible Heat Gain Components
|
||||
|
||||
,,HVAC Zone Eq & Other Sensible Air Heating [kWh],HVAC Zone Eq & Other Sensible Air Cooling [kWh],HVAC Terminal Unit Sensible Air Heating [kWh],HVAC Terminal Unit Sensible Air Cooling [kWh],HVAC Input Heated Surface Heating [kWh],HVAC Input Cooled Surface Cooling [kWh],People Sensible Heat Addition [kWh],Lights Sensible Heat Addition [kWh],Equipment Sensible Heat Addition [kWh],Window Heat Addition [kWh],Interzone Air Transfer Heat Addition [kWh],Infiltration Heat Addition [kWh],Opaque Surface Conduction and Other Heat Addition [kWh],Equipment Sensible Heat Removal [kWh],Window Heat Removal [kWh],Interzone Air Transfer Heat Removal [kWh],Infiltration Heat Removal [kWh],Opaque Surface Conduction and Other Heat Removal [kWh]
|
||||
,175785,43048.351,-12346.47,0.000,0.000,0.000,0.000,9408.890,5260.065,9051.411,14802.112,0.000,161.085,0.000,0.000,-17395.07,0.000,-25721.02,-26269.36
|
||||
,176293,38609.040,-7666.35,0.000,0.000,0.000,0.000,7449.341,4157.541,7154.210,7096.867,0.000,127.321,0.000,0.000,-14980.01,0.000,-20253.67,-21694.29
|
||||
,182393,32346.619,-7050.46,0.000,0.000,0.000,0.000,4038.987,2242.140,3858.228,10037.769,0.000,69.058,0.000,0.000,-14033.41,0.000,-10884.82,-20624.10
|
||||
,Total Facility,114004.011,-27063.27,0.000,0.000,0.000,0.000,20897.218,11659.746,20063.848,31936.748,0.000,357.465,0.000,0.000,-46408.49,0.000,-56859.52,-68587.75
|
||||
|
||||
|
||||
Peak Cooling Sensible Heat Gain Components
|
||||
|
||||
,,Time of Peak {TIMESTAMP},HVAC Zone Eq & Other Sensible Air Heating [W],HVAC Zone Eq & Other Sensible Air Cooling [W],HVAC Terminal Unit Sensible Air Heating [W],HVAC Terminal Unit Sensible Air Cooling [W],HVAC Input Heated Surface Heating [W],HVAC Input Cooled Surface Cooling [W],People Sensible Heat Addition [W],Lights Sensible Heat Addition [W],Equipment Sensible Heat Addition [W],Window Heat Addition [W],Interzone Air Transfer Heat Addition [W],Infiltration Heat Addition [W],Opaque Surface Conduction and Other Heat Addition [W],Equipment Sensible Heat Removal [W],Window Heat Removal [W],Interzone Air Transfer Heat Removal [W],Infiltration Heat Removal [W],Opaque Surface Conduction and Other Heat Removal [W]
|
||||
,175785,15-AUG-14:00,0.00,-17068.90,0.00,0.00,0.00,0.00,410.61,0.00,935.79,11320.00,0.00,1194.62,3207.88,0.00,-0.00,0.00,0.00,0.00
|
||||
,176293,19-JUL-18:30,0.00,-11505.90,0.00,0.00,0.00,0.00,973.64,0.00,1664.20,6601.36,0.00,713.40,1553.30,0.00,-0.00,0.00,0.00,0.00
|
||||
,182393,15-AUG-14:00,0.00,-11080.13,0.00,0.00,0.00,0.00,175.03,0.00,398.89,7757.96,0.00,510.12,2238.15,0.00,-0.00,0.00,0.00,0.00
|
||||
,Total Facility,15-AUG-14:30,0.00,-37585.08,0.00,0.00,0.00,0.00,910.18,0.00,2074.32,23736.81,0.00,2647.74,8216.03,0.00,0.00,0.00,0.00,0.00
|
||||
|
||||
|
||||
Peak Heating Sensible Heat Gain Components
|
||||
|
||||
,,Time of Peak {TIMESTAMP},HVAC Zone Eq & Other Sensible Air Heating [W],HVAC Zone Eq & Other Sensible Air Cooling [W],HVAC Terminal Unit Sensible Air Heating [W],HVAC Terminal Unit Sensible Air Cooling [W],HVAC Input Heated Surface Heating [W],HVAC Input Cooled Surface Cooling [W],People Sensible Heat Addition [W],Lights Sensible Heat Addition [W],Equipment Sensible Heat Addition [W],Window Heat Addition [W],Interzone Air Transfer Heat Addition [W],Infiltration Heat Addition [W],Opaque Surface Conduction and Other Heat Addition [W],Equipment Sensible Heat Removal [W],Window Heat Removal [W],Interzone Air Transfer Heat Removal [W],Infiltration Heat Removal [W],Opaque Surface Conduction and Other Heat Removal [W]
|
||||
,175785,12-JAN-07:03,62764.69,0.00,0.00,0.00,0.00,0.00,1327.44,1286.71,1871.57,0.00,0.00,0.00,0.00,0.00,-7102.44,0.00,-8506.39,-51641.58
|
||||
,176293,12-JAN-07:03,50123.61,0.00,0.00,0.00,0.00,0.00,1049.21,1017.01,1479.29,0.00,0.00,0.00,0.00,0.00,-5797.15,0.00,-6723.29,-41148.67
|
||||
,182393,12-JAN-07:03,39192.40,0.00,0.00,0.00,0.00,0.00,565.83,548.47,797.77,0.00,0.00,0.00,0.00,0.00,-5843.18,0.00,-3623.55,-31637.75
|
||||
,Total Facility,12-JAN-07:03,152080.70,0.00,0.00,0.00,0.00,0.00,2942.49,2852.19,4148.63,0.00,0.00,0.00,0.00,0.00,-18742.76,0.00,-18853.24,-124428.00
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -3,6 +3,7 @@ import hub.helpers.constants as cte
|
|||
import matplotlib.pyplot as plt
|
||||
import random
|
||||
import matplotlib.colors as mcolors
|
||||
from matplotlib import cm
|
||||
|
||||
class EnergySystemAnalysisReport:
|
||||
def __init__(self, file_name, city):
|
||||
|
@ -28,16 +29,22 @@ class EnergySystemAnalysisReport:
|
|||
def add_text(self, text):
|
||||
self.content.append(text)
|
||||
|
||||
def add_table(self, table_data, caption=None):
|
||||
def add_table(self, table_data, caption=None, first_column_width=None):
|
||||
num_columns = len(table_data[0])
|
||||
total_width = 0.9 # Adjust the total width as needed
|
||||
total_width = 0.9 # Default total width
|
||||
|
||||
if first_column_width is not None:
|
||||
first_column_width_str = str(first_column_width) + 'cm'
|
||||
total_width -= first_column_width / 16.0 # Adjust total width for the first column
|
||||
|
||||
if caption:
|
||||
self.content.append(r'\begin{table}[htbp]')
|
||||
self.content.append(r'\caption{' + caption + r'}')
|
||||
self.content.append(r'\centering')
|
||||
|
||||
self.content.append(r'\begin{tabularx}{\textwidth}{|' + '|'.join(['X'] * num_columns) + '|}')
|
||||
self.content.append(r'\begin{tabularx}{\textwidth}{|p{' + first_column_width_str + r'}|' + '|'.join(['X'] * (
|
||||
num_columns - 1)) + '|}' if first_column_width is not None else r'\begin{tabularx}{\textwidth}{|' + '|'.join(
|
||||
['X'] * num_columns) + '|}')
|
||||
self.content.append(r'\hline')
|
||||
for row in table_data:
|
||||
self.content.append(' & '.join(row) + r' \\')
|
||||
|
@ -166,8 +173,6 @@ class EnergySystemAnalysisReport:
|
|||
'electricity_demand_chart.jpg')
|
||||
|
||||
def maximum_monthly_hvac_chart(self):
|
||||
|
||||
|
||||
months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October',
|
||||
'November', 'December']
|
||||
for building in self.city.buildings:
|
||||
|
@ -197,6 +202,171 @@ class EnergySystemAnalysisReport:
|
|||
plt.savefig(f'{building.name}_monthly_maximum_hvac_loads.jpg')
|
||||
plt.close()
|
||||
|
||||
def load_duration_curves(self):
|
||||
for building in self.city.buildings:
|
||||
heating_demand = [demand / 1000 for demand in building.heating_demand[cte.HOUR]]
|
||||
cooling_demand = [demand / 1000 for demand in building.cooling_demand[cte.HOUR]]
|
||||
heating_demand_sorted = sorted(heating_demand, reverse=True)
|
||||
cooling_demand_sorted = sorted(cooling_demand, reverse=True)
|
||||
|
||||
plt.style.use('seaborn-darkgrid')
|
||||
|
||||
# Create figure and axis objects with 1 row and 2 columns
|
||||
fig, axs = plt.subplots(1, 2, figsize=(12, 6))
|
||||
|
||||
# Plot sorted heating demand
|
||||
axs[0].plot(heating_demand_sorted, color='red', linewidth=2, label='Heating Demand')
|
||||
axs[0].set_xlabel('Hour', fontsize=14)
|
||||
axs[0].set_ylabel('Heating Demand', fontsize=14)
|
||||
axs[0].set_title('Heating Load Duration Curve', fontsize=16)
|
||||
axs[0].grid(True)
|
||||
axs[0].legend(loc='upper right', fontsize=12)
|
||||
|
||||
# Plot sorted cooling demand
|
||||
axs[1].plot(cooling_demand_sorted, color='blue', linewidth=2, label='Cooling Demand')
|
||||
axs[1].set_xlabel('Hour', fontsize=14)
|
||||
axs[1].set_ylabel('Cooling Demand', fontsize=14)
|
||||
axs[1].set_title('Cooling Load Duration Curve', fontsize=16)
|
||||
axs[1].grid(True)
|
||||
axs[1].legend(loc='upper right', fontsize=12)
|
||||
|
||||
# Adjust layout
|
||||
plt.tight_layout()
|
||||
|
||||
# Save the plot
|
||||
plt.savefig(f'{building.name}_load_duration_curve.jpg')
|
||||
|
||||
# Close the plot to release memory
|
||||
plt.close()
|
||||
|
||||
def individual_building_info(self, building):
|
||||
table_data = [
|
||||
["Maximum Monthly HVAC Demands",
|
||||
f"\\includegraphics[width=1\\linewidth]{{{building.name}_monthly_maximum_hvac_loads.jpg}}"],
|
||||
["Load Duration Curve", f"\\includegraphics[width=1\\linewidth]{{{building.name}_load_duration_curve.jpg}}"],
|
||||
]
|
||||
|
||||
self.add_table(table_data, caption=f'{building.name} Information', first_column_width=1.5)
|
||||
|
||||
def building_existing_system_info(self, building):
|
||||
existing_archetype = building.energy_systems_archetype_name
|
||||
fuels = []
|
||||
system_schematic = "-"
|
||||
heating_system = "-"
|
||||
cooling_system = "-"
|
||||
dhw = "-"
|
||||
electricity = "Grid"
|
||||
hvac_ec = format((building.heating_consumption[cte.YEAR][0] + building.cooling_consumption[cte.YEAR][0])/1e6, '.2f')
|
||||
dhw_ec = format(building.domestic_hot_water_consumption[cte.YEAR][0]/1e6, '.2f')
|
||||
on_site_generation = "-"
|
||||
yearly_operational_cost = "-"
|
||||
life_cycle_cost = "-"
|
||||
for energy_system in building.energy_systems:
|
||||
if cte.HEATING and cte.DOMESTIC_HOT_WATER in energy_system.demand_types:
|
||||
heating_system = energy_system.name
|
||||
dhw = energy_system.name
|
||||
elif cte.DOMESTIC_HOT_WATER in energy_system.demand_types:
|
||||
dhw = energy_system.name
|
||||
elif cte.HEATING in energy_system.demand_types:
|
||||
heating_system = energy_system.name
|
||||
elif cte.COOLING in energy_system.demand_types:
|
||||
cooling_system = energy_system.name
|
||||
for generation_system in energy_system.generation_systems:
|
||||
fuels.append(generation_system.fuel_type)
|
||||
if generation_system.system_type == cte.PHOTOVOLTAIC:
|
||||
electricity = "Grid-tied PV"
|
||||
|
||||
energy_system_table_data = [
|
||||
["Detail", "Existing System", "Proposed System"],
|
||||
["Energy System Archetype", existing_archetype, "-"],
|
||||
["System Schematic", system_schematic, system_schematic],
|
||||
["Heating System", heating_system, "-"],
|
||||
["Cooling System", cooling_system, "-"],
|
||||
["DHW System", dhw, "-"],
|
||||
["Electricity", electricity, "-"],
|
||||
["Fuel(s)", str(fuels), "-"],
|
||||
["HVAC Energy Consumption (MWh)", hvac_ec, "-"],
|
||||
["DHW Energy Consumption (MWH)", dhw_ec, "-"],
|
||||
["Yearly Operational Cost (CAD)", yearly_operational_cost, "-"],
|
||||
["Life Cycle Cost (CAD)", life_cycle_cost, "-"]
|
||||
]
|
||||
self.add_table(energy_system_table_data, caption= f'Building {building.name} Energy System Characteristics')
|
||||
|
||||
def building_fuel_consumption_breakdown(self, building):
|
||||
# Initialize variables to store fuel consumption breakdown
|
||||
fuel_breakdown = {
|
||||
"Heating": {"Gas": 0, "Electricity": 0},
|
||||
"Domestic Hot Water": {"Gas": 0, "Electricity": 0},
|
||||
"Cooling": {"Electricity": 0},
|
||||
"Appliance": building.appliances_electrical_demand[cte.YEAR][0] / 1e6,
|
||||
"Lighting": building.lighting_electrical_demand[cte.YEAR][0] / 1e6
|
||||
}
|
||||
|
||||
# Iterate through energy systems of the building
|
||||
for energy_system in building.energy_systems:
|
||||
for demand_type in energy_system.demand_types:
|
||||
for generation_system in energy_system.generation_systems:
|
||||
consumption = 0
|
||||
if demand_type == cte.HEATING:
|
||||
consumption = building.heating_consumption[cte.YEAR][0] / 1e6
|
||||
elif demand_type == cte.DOMESTIC_HOT_WATER:
|
||||
consumption = building.domestic_hot_water_consumption[cte.YEAR][0] / 1e6
|
||||
elif demand_type == cte.COOLING:
|
||||
consumption = building.cooling_consumption[cte.YEAR][0] / 1e6
|
||||
|
||||
if generation_system.fuel_type == cte.ELECTRICITY:
|
||||
fuel_breakdown[demand_type]["Electricity"] += consumption
|
||||
else:
|
||||
fuel_breakdown[demand_type]["Gas"] += consumption
|
||||
|
||||
electricity_labels = ['Appliance', 'Lighting']
|
||||
electricity_sizes = [fuel_breakdown['Appliance'], fuel_breakdown['Lighting']]
|
||||
if fuel_breakdown['Heating']['Electricity'] > 0:
|
||||
electricity_labels.append('Heating')
|
||||
electricity_sizes.append(fuel_breakdown['Heating']['Electricity'])
|
||||
if fuel_breakdown['Cooling']['Electricity'] > 0:
|
||||
electricity_labels.append('Cooling')
|
||||
electricity_sizes.append(fuel_breakdown['Cooling']['Electricity'])
|
||||
if fuel_breakdown['Domestic Hot Water']['Electricity'] > 0:
|
||||
electricity_labels.append('Domestic Hot Water')
|
||||
electricity_sizes.append(fuel_breakdown['Domestic Hot Water']['Electricity'])
|
||||
|
||||
# Data for bar chart
|
||||
gas_labels = ['Heating', 'Domestic Hot Water']
|
||||
gas_sizes = [fuel_breakdown['Heating']['Gas'], fuel_breakdown['Domestic Hot Water']['Gas']]
|
||||
|
||||
# Set the style
|
||||
plt.style.use('seaborn-muted')
|
||||
|
||||
# Create plot grid
|
||||
fig, axs = plt.subplots(1, 2, figsize=(12, 6))
|
||||
|
||||
# Plot pie chart for electricity consumption breakdown
|
||||
colors = cm.get_cmap('tab20c', len(electricity_labels))
|
||||
axs[0].pie(electricity_sizes, labels=electricity_labels,
|
||||
autopct=lambda pct: f"{pct:.1f}%\n({pct / 100 * sum(electricity_sizes):.2f})",
|
||||
startangle=90, colors=[colors(i) for i in range(len(electricity_labels))])
|
||||
axs[0].set_title('Electricity Consumption Breakdown')
|
||||
|
||||
# Plot bar chart for natural gas consumption breakdown
|
||||
colors = cm.get_cmap('Paired', len(gas_labels))
|
||||
axs[1].bar(gas_labels, gas_sizes, color=[colors(i) for i in range(len(gas_labels))])
|
||||
axs[1].set_ylabel('Consumption (MWh)')
|
||||
axs[1].set_title('Natural Gas Consumption Breakdown')
|
||||
|
||||
# Add grid to bar chart
|
||||
axs[1].grid(axis='y', linestyle='--', alpha=0.7)
|
||||
|
||||
# Add a title to the entire figure
|
||||
plt.suptitle('Building Energy Consumption Breakdown', fontsize=16, fontweight='bold')
|
||||
|
||||
# Adjust layout
|
||||
plt.tight_layout()
|
||||
|
||||
# Save the plot as a high-quality image
|
||||
plt.savefig(f'{building.name}_energy_consumption_breakdown.png', dpi=300)
|
||||
plt.close()
|
||||
|
||||
def save_report(self):
|
||||
self.content.append(r'\end{document}') # Add this line to close the document
|
||||
with open(self.file_name, 'w') as f:
|
||||
|
|
Loading…
Reference in New Issue
Block a user