openstudio-workflow 1.3.4 → 1.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +89 -77
- data/README.md +67 -93
- data/Rakefile +36 -36
- data/lib/openstudio-workflow.rb +65 -65
- data/lib/openstudio/workflow/adapters/input/local.rb +311 -324
- data/lib/openstudio/workflow/adapters/output/local.rb +158 -161
- data/lib/openstudio/workflow/adapters/output/socket.rb +106 -107
- data/lib/openstudio/workflow/adapters/output/web.rb +82 -82
- data/lib/openstudio/workflow/adapters/output_adapter.rb +163 -163
- data/lib/openstudio/workflow/job.rb +57 -57
- data/lib/openstudio/workflow/jobs/resources/monthly_report.idf +222 -222
- data/lib/openstudio/workflow/jobs/run_energyplus.rb +70 -70
- data/lib/openstudio/workflow/jobs/run_ep_measures.rb +73 -73
- data/lib/openstudio/workflow/jobs/run_initialization.rb +203 -203
- data/lib/openstudio/workflow/jobs/run_os_measures.rb +89 -89
- data/lib/openstudio/workflow/jobs/run_postprocess.rb +73 -73
- data/lib/openstudio/workflow/jobs/run_preprocess.rb +104 -104
- data/lib/openstudio/workflow/jobs/run_reporting_measures.rb +118 -118
- data/lib/openstudio/workflow/jobs/run_translation.rb +84 -84
- data/lib/openstudio/workflow/multi_delegator.rb +62 -62
- data/lib/openstudio/workflow/registry.rb +172 -172
- data/lib/openstudio/workflow/run.rb +342 -328
- data/lib/openstudio/workflow/time_logger.rb +96 -96
- data/lib/openstudio/workflow/util.rb +49 -49
- data/lib/openstudio/workflow/util/energyplus.rb +575 -605
- data/lib/openstudio/workflow/util/io.rb +68 -68
- data/lib/openstudio/workflow/util/measure.rb +658 -650
- data/lib/openstudio/workflow/util/model.rb +151 -151
- data/lib/openstudio/workflow/util/post_process.rb +235 -238
- data/lib/openstudio/workflow/util/weather_file.rb +143 -143
- data/lib/openstudio/workflow/version.rb +40 -40
- data/lib/openstudio/workflow_json.rb +475 -476
- data/lib/openstudio/workflow_runner.rb +263 -268
- metadata +24 -24
@@ -1,57 +1,57 @@
|
|
1
|
-
# *******************************************************************************
|
2
|
-
# OpenStudio(R), Copyright (c) 2008-
|
3
|
-
# All rights reserved.
|
4
|
-
# Redistribution and use in source and binary forms, with or without
|
5
|
-
# modification, are permitted provided that the following conditions are met:
|
6
|
-
#
|
7
|
-
# (1) Redistributions of source code must retain the above copyright notice,
|
8
|
-
# this list of conditions and the following disclaimer.
|
9
|
-
#
|
10
|
-
# (2) Redistributions in binary form must reproduce the above copyright notice,
|
11
|
-
# this list of conditions and the following disclaimer in the documentation
|
12
|
-
# and/or other materials provided with the distribution.
|
13
|
-
#
|
14
|
-
# (3) Neither the name of the copyright holder nor the names of any contributors
|
15
|
-
# may be used to endorse or promote products derived from this software without
|
16
|
-
# specific prior written permission from the respective party.
|
17
|
-
#
|
18
|
-
# (4) Other than as required in clauses (1) and (2), distributions in any form
|
19
|
-
# of modifications or other derivative works may not use the "OpenStudio"
|
20
|
-
# trademark, "OS", "os", or any other confusingly similar designation without
|
21
|
-
# specific prior written permission from Alliance for Sustainable Energy, LLC.
|
22
|
-
#
|
23
|
-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
24
|
-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
25
|
-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
26
|
-
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, THE UNITED STATES
|
27
|
-
# GOVERNMENT, OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
28
|
-
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
29
|
-
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
30
|
-
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
31
|
-
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
32
|
-
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
33
|
-
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
34
|
-
# *******************************************************************************
|
35
|
-
|
36
|
-
module OpenStudio
|
37
|
-
module Workflow
|
38
|
-
class Job
|
39
|
-
def initialize(input_adapter, output_adapter, registry, options = {})
|
40
|
-
@options = options
|
41
|
-
@input_adapter = input_adapter
|
42
|
-
@output_adapter = output_adapter
|
43
|
-
@registry = registry
|
44
|
-
@logger = @registry[:logger]
|
45
|
-
@results = {}
|
46
|
-
|
47
|
-
@logger.debug "#{self.class} passed the following options #{@options}"
|
48
|
-
@logger.debug "#{self.class} passed the following registry #{@registry.to_hash}" if @options[:debug]
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
def self.new_class(current_job, input_adapter, output_adapter, registry, options = {})
|
53
|
-
new_job = Object.const_get(current_job).new(input_adapter, output_adapter, registry, options)
|
54
|
-
return new_job
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
1
|
+
# *******************************************************************************
|
2
|
+
# OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC.
|
3
|
+
# All rights reserved.
|
4
|
+
# Redistribution and use in source and binary forms, with or without
|
5
|
+
# modification, are permitted provided that the following conditions are met:
|
6
|
+
#
|
7
|
+
# (1) Redistributions of source code must retain the above copyright notice,
|
8
|
+
# this list of conditions and the following disclaimer.
|
9
|
+
#
|
10
|
+
# (2) Redistributions in binary form must reproduce the above copyright notice,
|
11
|
+
# this list of conditions and the following disclaimer in the documentation
|
12
|
+
# and/or other materials provided with the distribution.
|
13
|
+
#
|
14
|
+
# (3) Neither the name of the copyright holder nor the names of any contributors
|
15
|
+
# may be used to endorse or promote products derived from this software without
|
16
|
+
# specific prior written permission from the respective party.
|
17
|
+
#
|
18
|
+
# (4) Other than as required in clauses (1) and (2), distributions in any form
|
19
|
+
# of modifications or other derivative works may not use the "OpenStudio"
|
20
|
+
# trademark, "OS", "os", or any other confusingly similar designation without
|
21
|
+
# specific prior written permission from Alliance for Sustainable Energy, LLC.
|
22
|
+
#
|
23
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
24
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
25
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
26
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, THE UNITED STATES
|
27
|
+
# GOVERNMENT, OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
28
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
29
|
+
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
30
|
+
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
31
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
32
|
+
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
33
|
+
# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
34
|
+
# *******************************************************************************
|
35
|
+
|
36
|
+
module OpenStudio
|
37
|
+
module Workflow
|
38
|
+
class Job
|
39
|
+
def initialize(input_adapter, output_adapter, registry, options = {})
|
40
|
+
@options = options
|
41
|
+
@input_adapter = input_adapter
|
42
|
+
@output_adapter = output_adapter
|
43
|
+
@registry = registry
|
44
|
+
@logger = @registry[:logger]
|
45
|
+
@results = {}
|
46
|
+
|
47
|
+
@logger.debug "#{self.class} passed the following options #{@options}"
|
48
|
+
@logger.debug "#{self.class} passed the following registry #{@registry.to_hash}" if @options[:debug]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def self.new_class(current_job, input_adapter, output_adapter, registry, options = {})
|
53
|
+
new_job = Object.const_get(current_job).new(input_adapter, output_adapter, registry, options)
|
54
|
+
return new_job
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -1,222 +1,222 @@
|
|
1
|
-
Output:Table:Monthly,
|
2
|
-
Building Energy Performance - Electricity, !- Name
|
3
|
-
2, !- Digits After Decimal
|
4
|
-
InteriorLights:Electricity, !- Variable or Meter 1 Name
|
5
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
6
|
-
ExteriorLights:Electricity, !- Variable or Meter 2 Name
|
7
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
8
|
-
InteriorEquipment:Electricity, !- Variable or Meter 3 Name
|
9
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
10
|
-
ExteriorEquipment:Electricity, !- Variable or Meter 4 Name
|
11
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
12
|
-
Fans:Electricity, !- Variable or Meter 5 Name
|
13
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
14
|
-
Pumps:Electricity, !- Variable or Meter 6 Name
|
15
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 6
|
16
|
-
Heating:Electricity, !- Variable or Meter 7 Name
|
17
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 7
|
18
|
-
Cooling:Electricity, !- Variable or Meter 8 Name
|
19
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 8
|
20
|
-
HeatRejection:Electricity, !- Variable or Meter 9 Name
|
21
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 9
|
22
|
-
Humidifier:Electricity, !- Variable or Meter 10 Name
|
23
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 10
|
24
|
-
HeatRecovery:Electricity,!- Variable or Meter 11 Name
|
25
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 11
|
26
|
-
WaterSystems:Electricity,!- Variable or Meter 12 Name
|
27
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 12
|
28
|
-
Cogeneration:Electricity,!- Variable or Meter 13 Name
|
29
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 13
|
30
|
-
Refrigeration:Electricity,!- Variable or Meter 14 Name
|
31
|
-
SumOrAverage; !- Aggregation Type for Variable or Meter 14
|
32
|
-
|
33
|
-
Output:Table:Monthly,
|
34
|
-
Building Energy Performance - Natural Gas, !- Name
|
35
|
-
2, !- Digits After Decimal
|
36
|
-
InteriorEquipment:Gas, !- Variable or Meter 1 Name
|
37
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
38
|
-
ExteriorEquipment:Gas, !- Variable or Meter 2 Name
|
39
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
40
|
-
Heating:Gas, !- Variable or Meter 3 Name
|
41
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
42
|
-
Cooling:Gas, !- Variable or Meter 4 Name
|
43
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
44
|
-
WaterSystems:Gas, !- Variable or Meter 5 Name
|
45
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
46
|
-
Cogeneration:Gas, !- Variable or Meter 6 Name
|
47
|
-
SumOrAverage; !- Aggregation Type for Variable or Meter 6
|
48
|
-
|
49
|
-
Output:Table:Monthly,
|
50
|
-
Building Energy Performance - District Heating, !- Name
|
51
|
-
2, !- Digits After Decimal
|
52
|
-
InteriorLights:DistrictHeating, !- Variable or Meter 1 Name
|
53
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
54
|
-
ExteriorLights:DistrictHeating, !- Variable or Meter 2 Name
|
55
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
56
|
-
InteriorEquipment:DistrictHeating, !- Variable or Meter 3 Name
|
57
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
58
|
-
ExteriorEquipment:DistrictHeating, !- Variable or Meter 4 Name
|
59
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
60
|
-
Fans:DistrictHeating, !- Variable or Meter 5 Name
|
61
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
62
|
-
Pumps:DistrictHeating, !- Variable or Meter 6 Name
|
63
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 6
|
64
|
-
Heating:DistrictHeating, !- Variable or Meter 7 Name
|
65
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 7
|
66
|
-
Cooling:DistrictHeating, !- Variable or Meter 8 Name
|
67
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 8
|
68
|
-
HeatRejection:DistrictHeating, !- Variable or Meter 9 Name
|
69
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 9
|
70
|
-
Humidifier:DistrictHeating, !- Variable or Meter 10 Name
|
71
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 10
|
72
|
-
HeatRecovery:DistrictHeating,!- Variable or Meter 11 Name
|
73
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 11
|
74
|
-
WaterSystems:DistrictHeating,!- Variable or Meter 12 Name
|
75
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 12
|
76
|
-
Cogeneration:DistrictHeating,!- Variable or Meter 13 Name
|
77
|
-
SumOrAverage; !- Aggregation Type for Variable or Meter 13
|
78
|
-
|
79
|
-
Output:Table:Monthly,
|
80
|
-
Building Energy Performance - District Cooling, !- Name
|
81
|
-
2, !- Digits After Decimal
|
82
|
-
InteriorLights:DistrictCooling, !- Variable or Meter 1 Name
|
83
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
84
|
-
ExteriorLights:DistrictCooling, !- Variable or Meter 2 Name
|
85
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
86
|
-
InteriorEquipment:DistrictCooling, !- Variable or Meter 3 Name
|
87
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
88
|
-
ExteriorEquipment:DistrictCooling, !- Variable or Meter 4 Name
|
89
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
90
|
-
Fans:DistrictCooling, !- Variable or Meter 5 Name
|
91
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
92
|
-
Pumps:DistrictCooling, !- Variable or Meter 6 Name
|
93
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 6
|
94
|
-
Heating:DistrictCooling, !- Variable or Meter 7 Name
|
95
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 7
|
96
|
-
Cooling:DistrictCooling, !- Variable or Meter 8 Name
|
97
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 8
|
98
|
-
HeatRejection:DistrictCooling, !- Variable or Meter 9 Name
|
99
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 9
|
100
|
-
Humidifier:DistrictCooling, !- Variable or Meter 10 Name
|
101
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 10
|
102
|
-
HeatRecovery:DistrictCooling,!- Variable or Meter 11 Name
|
103
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 11
|
104
|
-
WaterSystems:DistrictCooling,!- Variable or Meter 12 Name
|
105
|
-
SumOrAverage, !- Aggregation Type for Variable or Meter 12
|
106
|
-
Cogeneration:DistrictCooling,!- Variable or Meter 13 Name
|
107
|
-
SumOrAverage; !- Aggregation Type for Variable or Meter 13
|
108
|
-
|
109
|
-
Output:Table:Monthly,
|
110
|
-
Building Energy Performance - Electricity Peak Demand, !- Name
|
111
|
-
2, !- Digits After Decimal
|
112
|
-
Electricity:Facility, !- Variable or Meter 1 Name
|
113
|
-
Maximum, !- Aggregation Type for Variable or Meter 1
|
114
|
-
InteriorLights:Electricity, !- Variable or Meter 1 Name
|
115
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
116
|
-
ExteriorLights:Electricity, !- Variable or Meter 2 Name
|
117
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
118
|
-
InteriorEquipment:Electricity, !- Variable or Meter 3 Name
|
119
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
120
|
-
ExteriorEquipment:Electricity, !- Variable or Meter 4 Name
|
121
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
122
|
-
Fans:Electricity, !- Variable or Meter 5 Name
|
123
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
124
|
-
Pumps:Electricity, !- Variable or Meter 6 Name
|
125
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6
|
126
|
-
Heating:Electricity, !- Variable or Meter 7 Name
|
127
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7
|
128
|
-
Cooling:Electricity, !- Variable or Meter 8 Name
|
129
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8
|
130
|
-
HeatRejection:Electricity, !- Variable or Meter 9 Name
|
131
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9
|
132
|
-
Humidifier:Electricity, !- Variable or Meter 10 Name
|
133
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10
|
134
|
-
HeatRecovery:Electricity,!- Variable or Meter 11 Name
|
135
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11
|
136
|
-
WaterSystems:Electricity,!- Variable or Meter 12 Name
|
137
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12
|
138
|
-
Cogeneration:Electricity,!- Variable or Meter 13 Name
|
139
|
-
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 13
|
140
|
-
|
141
|
-
Output:Table:Monthly,
|
142
|
-
Building Energy Performance - Natural Gas Peak Demand, !- Name
|
143
|
-
2, !- Digits After Decimal
|
144
|
-
Gas:Facility, !- Variable or Meter 1 Name
|
145
|
-
Maximum, !- Aggregation Type for Variable or Meter 1
|
146
|
-
InteriorEquipment:Gas, !- Variable or Meter 1 Name
|
147
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
148
|
-
ExteriorEquipment:Gas, !- Variable or Meter 2 Name
|
149
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
150
|
-
Heating:Gas, !- Variable or Meter 3 Name
|
151
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
152
|
-
Cooling:Gas, !- Variable or Meter 4 Name
|
153
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
154
|
-
WaterSystems:Gas, !- Variable or Meter 5 Name
|
155
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
156
|
-
Cogeneration:Gas, !- Variable or Meter 6 Name
|
157
|
-
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 6
|
158
|
-
|
159
|
-
Output:Table:Monthly,
|
160
|
-
Building Energy Performance - District Heating Peak Demand, !- Name
|
161
|
-
2, !- Digits After Decimal
|
162
|
-
DistrictHeating:Facility, !- Variable or Meter 1 Name
|
163
|
-
Maximum, !- Aggregation Type for Variable or Meter 1
|
164
|
-
InteriorLights:DistrictHeating, !- Variable or Meter 1 Name
|
165
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
166
|
-
ExteriorLights:DistrictHeating, !- Variable or Meter 2 Name
|
167
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
168
|
-
InteriorEquipment:DistrictHeating, !- Variable or Meter 3 Name
|
169
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
170
|
-
ExteriorEquipment:DistrictHeating, !- Variable or Meter 4 Name
|
171
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
172
|
-
Fans:DistrictHeating, !- Variable or Meter 5 Name
|
173
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
174
|
-
Pumps:DistrictHeating, !- Variable or Meter 6 Name
|
175
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6
|
176
|
-
Heating:DistrictHeating, !- Variable or Meter 7 Name
|
177
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7
|
178
|
-
Cooling:DistrictHeating, !- Variable or Meter 8 Name
|
179
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8
|
180
|
-
HeatRejection:DistrictHeating, !- Variable or Meter 9 Name
|
181
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9
|
182
|
-
Humidifier:DistrictHeating, !- Variable or Meter 10 Name
|
183
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10
|
184
|
-
HeatRecovery:DistrictHeating,!- Variable or Meter 11 Name
|
185
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11
|
186
|
-
WaterSystems:DistrictHeating,!- Variable or Meter 12 Name
|
187
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12
|
188
|
-
Cogeneration:DistrictHeating,!- Variable or Meter 13 Name
|
189
|
-
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 13
|
190
|
-
|
191
|
-
Output:Table:Monthly,
|
192
|
-
Building Energy Performance - District Cooling Peak Demand, !- Name
|
193
|
-
2, !- Digits After Decimal
|
194
|
-
DistrictCooling:Facility, !- Variable or Meter 1 Name
|
195
|
-
Maximum, !- Aggregation Type for Variable or Meter 1
|
196
|
-
InteriorLights:DistrictCooling, !- Variable or Meter 1 Name
|
197
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
198
|
-
ExteriorLights:DistrictCooling, !- Variable or Meter 2 Name
|
199
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
200
|
-
InteriorEquipment:DistrictCooling, !- Variable or Meter 3 Name
|
201
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
202
|
-
ExteriorEquipment:DistrictCooling, !- Variable or Meter 4 Name
|
203
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
204
|
-
Fans:DistrictCooling, !- Variable or Meter 5 Name
|
205
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
206
|
-
Pumps:DistrictCooling, !- Variable or Meter 6 Name
|
207
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6
|
208
|
-
Heating:DistrictCooling, !- Variable or Meter 7 Name
|
209
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7
|
210
|
-
Cooling:DistrictCooling, !- Variable or Meter 8 Name
|
211
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8
|
212
|
-
HeatRejection:DistrictCooling, !- Variable or Meter 9 Name
|
213
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9
|
214
|
-
Humidifier:DistrictCooling, !- Variable or Meter 10 Name
|
215
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10
|
216
|
-
HeatRecovery:DistrictCooling,!- Variable or Meter 11 Name
|
217
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11
|
218
|
-
WaterSystems:DistrictCooling,!- Variable or Meter 12 Name
|
219
|
-
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12
|
220
|
-
Cogeneration:DistrictCooling,!- Variable or Meter 13 Name
|
221
|
-
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 13
|
222
|
-
|
1
|
+
Output:Table:Monthly,
|
2
|
+
Building Energy Performance - Electricity, !- Name
|
3
|
+
2, !- Digits After Decimal
|
4
|
+
InteriorLights:Electricity, !- Variable or Meter 1 Name
|
5
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
6
|
+
ExteriorLights:Electricity, !- Variable or Meter 2 Name
|
7
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
8
|
+
InteriorEquipment:Electricity, !- Variable or Meter 3 Name
|
9
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
10
|
+
ExteriorEquipment:Electricity, !- Variable or Meter 4 Name
|
11
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
12
|
+
Fans:Electricity, !- Variable or Meter 5 Name
|
13
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
14
|
+
Pumps:Electricity, !- Variable or Meter 6 Name
|
15
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 6
|
16
|
+
Heating:Electricity, !- Variable or Meter 7 Name
|
17
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 7
|
18
|
+
Cooling:Electricity, !- Variable or Meter 8 Name
|
19
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 8
|
20
|
+
HeatRejection:Electricity, !- Variable or Meter 9 Name
|
21
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 9
|
22
|
+
Humidifier:Electricity, !- Variable or Meter 10 Name
|
23
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 10
|
24
|
+
HeatRecovery:Electricity,!- Variable or Meter 11 Name
|
25
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 11
|
26
|
+
WaterSystems:Electricity,!- Variable or Meter 12 Name
|
27
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 12
|
28
|
+
Cogeneration:Electricity,!- Variable or Meter 13 Name
|
29
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 13
|
30
|
+
Refrigeration:Electricity,!- Variable or Meter 14 Name
|
31
|
+
SumOrAverage; !- Aggregation Type for Variable or Meter 14
|
32
|
+
|
33
|
+
Output:Table:Monthly,
|
34
|
+
Building Energy Performance - Natural Gas, !- Name
|
35
|
+
2, !- Digits After Decimal
|
36
|
+
InteriorEquipment:Gas, !- Variable or Meter 1 Name
|
37
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
38
|
+
ExteriorEquipment:Gas, !- Variable or Meter 2 Name
|
39
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
40
|
+
Heating:Gas, !- Variable or Meter 3 Name
|
41
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
42
|
+
Cooling:Gas, !- Variable or Meter 4 Name
|
43
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
44
|
+
WaterSystems:Gas, !- Variable or Meter 5 Name
|
45
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
46
|
+
Cogeneration:Gas, !- Variable or Meter 6 Name
|
47
|
+
SumOrAverage; !- Aggregation Type for Variable or Meter 6
|
48
|
+
|
49
|
+
Output:Table:Monthly,
|
50
|
+
Building Energy Performance - District Heating, !- Name
|
51
|
+
2, !- Digits After Decimal
|
52
|
+
InteriorLights:DistrictHeating, !- Variable or Meter 1 Name
|
53
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
54
|
+
ExteriorLights:DistrictHeating, !- Variable or Meter 2 Name
|
55
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
56
|
+
InteriorEquipment:DistrictHeating, !- Variable or Meter 3 Name
|
57
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
58
|
+
ExteriorEquipment:DistrictHeating, !- Variable or Meter 4 Name
|
59
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
60
|
+
Fans:DistrictHeating, !- Variable or Meter 5 Name
|
61
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
62
|
+
Pumps:DistrictHeating, !- Variable or Meter 6 Name
|
63
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 6
|
64
|
+
Heating:DistrictHeating, !- Variable or Meter 7 Name
|
65
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 7
|
66
|
+
Cooling:DistrictHeating, !- Variable or Meter 8 Name
|
67
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 8
|
68
|
+
HeatRejection:DistrictHeating, !- Variable or Meter 9 Name
|
69
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 9
|
70
|
+
Humidifier:DistrictHeating, !- Variable or Meter 10 Name
|
71
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 10
|
72
|
+
HeatRecovery:DistrictHeating,!- Variable or Meter 11 Name
|
73
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 11
|
74
|
+
WaterSystems:DistrictHeating,!- Variable or Meter 12 Name
|
75
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 12
|
76
|
+
Cogeneration:DistrictHeating,!- Variable or Meter 13 Name
|
77
|
+
SumOrAverage; !- Aggregation Type for Variable or Meter 13
|
78
|
+
|
79
|
+
Output:Table:Monthly,
|
80
|
+
Building Energy Performance - District Cooling, !- Name
|
81
|
+
2, !- Digits After Decimal
|
82
|
+
InteriorLights:DistrictCooling, !- Variable or Meter 1 Name
|
83
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 1
|
84
|
+
ExteriorLights:DistrictCooling, !- Variable or Meter 2 Name
|
85
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 2
|
86
|
+
InteriorEquipment:DistrictCooling, !- Variable or Meter 3 Name
|
87
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 3
|
88
|
+
ExteriorEquipment:DistrictCooling, !- Variable or Meter 4 Name
|
89
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 4
|
90
|
+
Fans:DistrictCooling, !- Variable or Meter 5 Name
|
91
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 5
|
92
|
+
Pumps:DistrictCooling, !- Variable or Meter 6 Name
|
93
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 6
|
94
|
+
Heating:DistrictCooling, !- Variable or Meter 7 Name
|
95
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 7
|
96
|
+
Cooling:DistrictCooling, !- Variable or Meter 8 Name
|
97
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 8
|
98
|
+
HeatRejection:DistrictCooling, !- Variable or Meter 9 Name
|
99
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 9
|
100
|
+
Humidifier:DistrictCooling, !- Variable or Meter 10 Name
|
101
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 10
|
102
|
+
HeatRecovery:DistrictCooling,!- Variable or Meter 11 Name
|
103
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 11
|
104
|
+
WaterSystems:DistrictCooling,!- Variable or Meter 12 Name
|
105
|
+
SumOrAverage, !- Aggregation Type for Variable or Meter 12
|
106
|
+
Cogeneration:DistrictCooling,!- Variable or Meter 13 Name
|
107
|
+
SumOrAverage; !- Aggregation Type for Variable or Meter 13
|
108
|
+
|
109
|
+
Output:Table:Monthly,
|
110
|
+
Building Energy Performance - Electricity Peak Demand, !- Name
|
111
|
+
2, !- Digits After Decimal
|
112
|
+
Electricity:Facility, !- Variable or Meter 1 Name
|
113
|
+
Maximum, !- Aggregation Type for Variable or Meter 1
|
114
|
+
InteriorLights:Electricity, !- Variable or Meter 1 Name
|
115
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
116
|
+
ExteriorLights:Electricity, !- Variable or Meter 2 Name
|
117
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
118
|
+
InteriorEquipment:Electricity, !- Variable or Meter 3 Name
|
119
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
120
|
+
ExteriorEquipment:Electricity, !- Variable or Meter 4 Name
|
121
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
122
|
+
Fans:Electricity, !- Variable or Meter 5 Name
|
123
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
124
|
+
Pumps:Electricity, !- Variable or Meter 6 Name
|
125
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6
|
126
|
+
Heating:Electricity, !- Variable or Meter 7 Name
|
127
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7
|
128
|
+
Cooling:Electricity, !- Variable or Meter 8 Name
|
129
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8
|
130
|
+
HeatRejection:Electricity, !- Variable or Meter 9 Name
|
131
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9
|
132
|
+
Humidifier:Electricity, !- Variable or Meter 10 Name
|
133
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10
|
134
|
+
HeatRecovery:Electricity,!- Variable or Meter 11 Name
|
135
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11
|
136
|
+
WaterSystems:Electricity,!- Variable or Meter 12 Name
|
137
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12
|
138
|
+
Cogeneration:Electricity,!- Variable or Meter 13 Name
|
139
|
+
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 13
|
140
|
+
|
141
|
+
Output:Table:Monthly,
|
142
|
+
Building Energy Performance - Natural Gas Peak Demand, !- Name
|
143
|
+
2, !- Digits After Decimal
|
144
|
+
Gas:Facility, !- Variable or Meter 1 Name
|
145
|
+
Maximum, !- Aggregation Type for Variable or Meter 1
|
146
|
+
InteriorEquipment:Gas, !- Variable or Meter 1 Name
|
147
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
148
|
+
ExteriorEquipment:Gas, !- Variable or Meter 2 Name
|
149
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
150
|
+
Heating:Gas, !- Variable or Meter 3 Name
|
151
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
152
|
+
Cooling:Gas, !- Variable or Meter 4 Name
|
153
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
154
|
+
WaterSystems:Gas, !- Variable or Meter 5 Name
|
155
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
156
|
+
Cogeneration:Gas, !- Variable or Meter 6 Name
|
157
|
+
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 6
|
158
|
+
|
159
|
+
Output:Table:Monthly,
|
160
|
+
Building Energy Performance - District Heating Peak Demand, !- Name
|
161
|
+
2, !- Digits After Decimal
|
162
|
+
DistrictHeating:Facility, !- Variable or Meter 1 Name
|
163
|
+
Maximum, !- Aggregation Type for Variable or Meter 1
|
164
|
+
InteriorLights:DistrictHeating, !- Variable or Meter 1 Name
|
165
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
166
|
+
ExteriorLights:DistrictHeating, !- Variable or Meter 2 Name
|
167
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
168
|
+
InteriorEquipment:DistrictHeating, !- Variable or Meter 3 Name
|
169
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
170
|
+
ExteriorEquipment:DistrictHeating, !- Variable or Meter 4 Name
|
171
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
172
|
+
Fans:DistrictHeating, !- Variable or Meter 5 Name
|
173
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
174
|
+
Pumps:DistrictHeating, !- Variable or Meter 6 Name
|
175
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6
|
176
|
+
Heating:DistrictHeating, !- Variable or Meter 7 Name
|
177
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7
|
178
|
+
Cooling:DistrictHeating, !- Variable or Meter 8 Name
|
179
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8
|
180
|
+
HeatRejection:DistrictHeating, !- Variable or Meter 9 Name
|
181
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9
|
182
|
+
Humidifier:DistrictHeating, !- Variable or Meter 10 Name
|
183
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10
|
184
|
+
HeatRecovery:DistrictHeating,!- Variable or Meter 11 Name
|
185
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11
|
186
|
+
WaterSystems:DistrictHeating,!- Variable or Meter 12 Name
|
187
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12
|
188
|
+
Cogeneration:DistrictHeating,!- Variable or Meter 13 Name
|
189
|
+
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 13
|
190
|
+
|
191
|
+
Output:Table:Monthly,
|
192
|
+
Building Energy Performance - District Cooling Peak Demand, !- Name
|
193
|
+
2, !- Digits After Decimal
|
194
|
+
DistrictCooling:Facility, !- Variable or Meter 1 Name
|
195
|
+
Maximum, !- Aggregation Type for Variable or Meter 1
|
196
|
+
InteriorLights:DistrictCooling, !- Variable or Meter 1 Name
|
197
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 1
|
198
|
+
ExteriorLights:DistrictCooling, !- Variable or Meter 2 Name
|
199
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 2
|
200
|
+
InteriorEquipment:DistrictCooling, !- Variable or Meter 3 Name
|
201
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3
|
202
|
+
ExteriorEquipment:DistrictCooling, !- Variable or Meter 4 Name
|
203
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4
|
204
|
+
Fans:DistrictCooling, !- Variable or Meter 5 Name
|
205
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5
|
206
|
+
Pumps:DistrictCooling, !- Variable or Meter 6 Name
|
207
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6
|
208
|
+
Heating:DistrictCooling, !- Variable or Meter 7 Name
|
209
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7
|
210
|
+
Cooling:DistrictCooling, !- Variable or Meter 8 Name
|
211
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8
|
212
|
+
HeatRejection:DistrictCooling, !- Variable or Meter 9 Name
|
213
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9
|
214
|
+
Humidifier:DistrictCooling, !- Variable or Meter 10 Name
|
215
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10
|
216
|
+
HeatRecovery:DistrictCooling,!- Variable or Meter 11 Name
|
217
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11
|
218
|
+
WaterSystems:DistrictCooling,!- Variable or Meter 12 Name
|
219
|
+
ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12
|
220
|
+
Cogeneration:DistrictCooling,!- Variable or Meter 13 Name
|
221
|
+
ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 13
|
222
|
+
|