urbanopt-scenario 0.1.1 → 0.3.0
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 +5 -5
- data/.github/ISSUE_TEMPLATE/bug_report.md +0 -8
- data/.github/ISSUE_TEMPLATE/feature_request.md +2 -10
- data/.github/pull_request_template.md +5 -15
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +45 -1
- data/{.github/CONTRIBUTING.md → CONTRIBUTING.md} +0 -0
- data/Gemfile +8 -12
- data/Jenkinsfile +2 -2
- data/Rakefile +2 -2
- data/docs/package-lock.json +4607 -6451
- data/docs/package.json +1 -1
- data/lib/measures/.rubocop.yml +1 -1
- data/lib/measures/default_feature_reports/LICENSE.md +1 -1
- data/lib/measures/default_feature_reports/README.md +5 -35
- data/lib/measures/default_feature_reports/measure.rb +315 -44
- data/lib/measures/default_feature_reports/measure.xml +38 -17
- data/lib/urbanopt/scenario.rb +1 -0
- data/lib/urbanopt/scenario/default_reports/distributed_generation.rb +209 -17
- data/lib/urbanopt/scenario/default_reports/feature_report.rb +57 -3
- data/lib/urbanopt/scenario/default_reports/power_distribution.rb +102 -0
- data/lib/urbanopt/scenario/default_reports/program.rb +6 -2
- data/lib/urbanopt/scenario/default_reports/reporting_period.rb +15 -9
- data/lib/urbanopt/scenario/default_reports/scenario_report.rb +24 -7
- data/lib/urbanopt/scenario/default_reports/schema/README.md +11 -12
- data/lib/urbanopt/scenario/default_reports/schema/scenario_csv_columns.txt +33 -12
- data/lib/urbanopt/scenario/default_reports/schema/scenario_schema.json +52 -25
- data/lib/urbanopt/scenario/default_reports/solar_pv.rb +1 -0
- data/lib/urbanopt/scenario/default_reports/timeseries_csv.rb +62 -21
- data/lib/urbanopt/scenario/scenario_post_processor_opendss.rb +276 -0
- data/lib/urbanopt/scenario/scenario_runner_osw.rb +21 -5
- data/lib/urbanopt/scenario/simulation_dir_osw.rb +0 -4
- data/lib/urbanopt/scenario/version.rb +1 -1
- data/urbanopt-scenario-gem.gemspec +10 -12
- metadata +31 -48
- data/.travis.yml +0 -23
- data/lib/change_log.rb +0 -147
- data/lib/measures/default_feature_reports/tests/USA_CO_Golden-NREL.724666_TMY3.epw +0 -8768
- data/lib/measures/default_feature_reports/tests/default_feature_reports_test.rb +0 -238
- data/lib/measures/default_feature_reports/tests/example_model.osm +0 -4378
@@ -1,238 +0,0 @@
|
|
1
|
-
# *********************************************************************************
|
2
|
-
# URBANopt, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other
|
3
|
-
# contributors. All rights reserved.
|
4
|
-
#
|
5
|
-
# Redistribution and use in source and binary forms, with or without modification,
|
6
|
-
# are permitted provided that the following conditions are met:
|
7
|
-
#
|
8
|
-
# Redistributions of source code must retain the above copyright notice, this list
|
9
|
-
# of conditions and the following disclaimer.
|
10
|
-
#
|
11
|
-
# Redistributions in binary form must reproduce the above copyright notice, this
|
12
|
-
# list of conditions and the following disclaimer in the documentation and/or other
|
13
|
-
# materials provided with the distribution.
|
14
|
-
#
|
15
|
-
# Neither the name of the copyright holder nor the names of its contributors may be
|
16
|
-
# used to endorse or promote products derived from this software without specific
|
17
|
-
# prior written permission.
|
18
|
-
#
|
19
|
-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
20
|
-
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
21
|
-
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
22
|
-
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
23
|
-
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
24
|
-
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
25
|
-
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
26
|
-
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
27
|
-
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
28
|
-
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
-
# *********************************************************************************
|
30
|
-
|
31
|
-
require 'openstudio'
|
32
|
-
require 'openstudio/ruleset/ShowRunnerOutput'
|
33
|
-
require 'minitest/autorun'
|
34
|
-
|
35
|
-
require_relative '../measure.rb'
|
36
|
-
|
37
|
-
require 'fileutils'
|
38
|
-
require 'csv'
|
39
|
-
|
40
|
-
class DefaultFeatureReportsTest < MiniTest::Test
|
41
|
-
def openstudio_2?
|
42
|
-
begin
|
43
|
-
workflow = OpenStudio::WorkflowJSON.new
|
44
|
-
rescue StandardError
|
45
|
-
return false
|
46
|
-
end
|
47
|
-
return true
|
48
|
-
end
|
49
|
-
|
50
|
-
def model_in_path_default
|
51
|
-
return "#{File.dirname(__FILE__)}/ExampleModel.osm"
|
52
|
-
end
|
53
|
-
|
54
|
-
def epw_path_default
|
55
|
-
# make sure we have a weather data location
|
56
|
-
epw = nil
|
57
|
-
epw = OpenStudio::Path.new("#{File.dirname(__FILE__)}/USA_CO_Golden-NREL.724666_TMY3.epw")
|
58
|
-
assert(File.exist?(epw.to_s))
|
59
|
-
return epw.to_s
|
60
|
-
end
|
61
|
-
|
62
|
-
def run_dir(test_name)
|
63
|
-
# always generate test output in specially named 'output' directory so result files are not made part of the measure
|
64
|
-
"#{File.dirname(__FILE__)}/output/#{test_name}"
|
65
|
-
end
|
66
|
-
|
67
|
-
def model_out_path(test_name)
|
68
|
-
"#{run_dir(test_name)}/TestOutput.osm"
|
69
|
-
end
|
70
|
-
|
71
|
-
# rubocop: disable Style/GuardClause
|
72
|
-
def workspace_path(test_name)
|
73
|
-
if openstudio_2?
|
74
|
-
return "#{run_dir(test_name)}/run/in.idf"
|
75
|
-
else
|
76
|
-
return "#{run_dir(test_name)}/ModelToIdf/in.idf"
|
77
|
-
end
|
78
|
-
end
|
79
|
-
|
80
|
-
def sql_path(test_name)
|
81
|
-
if openstudio_2?
|
82
|
-
return "#{run_dir(test_name)}/run/eplusout.sql"
|
83
|
-
else
|
84
|
-
return "#{run_dir(test_name)}/ModelToIdf/EnergyPlusPreProcess-0/EnergyPlus-0/eplusout.sql"
|
85
|
-
end
|
86
|
-
end
|
87
|
-
|
88
|
-
def report_path(test_name)
|
89
|
-
"#{run_dir(test_name)}/report.html"
|
90
|
-
end
|
91
|
-
|
92
|
-
# method for running the test simulation using OpenStudio 1.x API
|
93
|
-
def setup_test_1(test_name, epw_path)
|
94
|
-
co = OpenStudio::Runmanager::ConfigOptions.new(true)
|
95
|
-
co.findTools(false, true, false, true)
|
96
|
-
|
97
|
-
if !File.exist?(sql_path(test_name))
|
98
|
-
puts 'Running EnergyPlus'
|
99
|
-
|
100
|
-
wf = OpenStudio::Runmanager::Workflow.new('modeltoidf->energypluspreprocess->energyplus')
|
101
|
-
wf.add(co.getTools)
|
102
|
-
job = wf.create(OpenStudio::Path.new(run_dir(test_name)), OpenStudio::Path.new(model_out_path(test_name)), OpenStudio::Path.new(epw_path))
|
103
|
-
|
104
|
-
rm = OpenStudio::Runmanager::RunManager.new
|
105
|
-
rm.enqueue(job, true)
|
106
|
-
rm.waitForFinished
|
107
|
-
end
|
108
|
-
end
|
109
|
-
|
110
|
-
# method for running the test simulation using OpenStudio 2.x API
|
111
|
-
def setup_test_2(test_name, epw_path)
|
112
|
-
if !File.exist?(sql_path(test_name))
|
113
|
-
osw_path = File.join(run_dir(test_name), 'in.osw')
|
114
|
-
osw_path = File.absolute_path(osw_path)
|
115
|
-
|
116
|
-
workflow = OpenStudio::WorkflowJSON.new
|
117
|
-
workflow.setSeedFile(File.absolute_path(model_out_path(test_name)))
|
118
|
-
workflow.setWeatherFile(File.absolute_path(epw_path))
|
119
|
-
workflow.saveAs(osw_path)
|
120
|
-
|
121
|
-
cli_path = OpenStudio.getOpenStudioCLI
|
122
|
-
cmd = "\"#{cli_path}\" run -w \"#{osw_path}\""
|
123
|
-
puts cmd
|
124
|
-
system(cmd)
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
# create test files if they do not exist when the test first runs
|
129
|
-
def setup_test(test_name, idf_output_requests, model_in_path = model_in_path_default, epw_path = epw_path_default)
|
130
|
-
if !File.exist?(run_dir(test_name))
|
131
|
-
FileUtils.mkdir_p(run_dir(test_name))
|
132
|
-
end
|
133
|
-
assert(File.exist?(run_dir(test_name)))
|
134
|
-
|
135
|
-
if File.exist?(report_path(test_name))
|
136
|
-
FileUtils.rm(report_path(test_name))
|
137
|
-
end
|
138
|
-
|
139
|
-
assert(File.exist?(model_in_path))
|
140
|
-
|
141
|
-
if File.exist?(model_out_path(test_name))
|
142
|
-
FileUtils.rm(model_out_path(test_name))
|
143
|
-
end
|
144
|
-
|
145
|
-
# convert output requests to OSM for testing, OS App and PAT will add these to the E+ Idf
|
146
|
-
workspace = OpenStudio::Workspace.new('Draft'.to_StrictnessLevel, 'EnergyPlus'.to_IddFileType)
|
147
|
-
workspace.addObjects(idf_output_requests)
|
148
|
-
rt = OpenStudio::EnergyPlus::ReverseTranslator.new
|
149
|
-
request_model = rt.translateWorkspace(workspace)
|
150
|
-
|
151
|
-
translator = OpenStudio::OSVersion::VersionTranslator.new
|
152
|
-
model = translator.loadModel(model_in_path)
|
153
|
-
assert(!model.empty?)
|
154
|
-
model = model.get
|
155
|
-
model.addObjects(request_model.objects)
|
156
|
-
model.save(model_out_path(test_name), true)
|
157
|
-
|
158
|
-
if openstudio_2?
|
159
|
-
setup_test_2(test_name, epw_path)
|
160
|
-
else
|
161
|
-
setup_test_1(test_name, epw_path)
|
162
|
-
end
|
163
|
-
end
|
164
|
-
|
165
|
-
# rubocop: disable Metrics/AbcSize
|
166
|
-
def test_good_argument_values
|
167
|
-
test_name = 'good_argument_values'
|
168
|
-
model_in_path = "#{File.dirname(__FILE__)}/example_model.osm"
|
169
|
-
|
170
|
-
# create an instance of the measure
|
171
|
-
measure = DefaultFeatureReports.new
|
172
|
-
|
173
|
-
# create an instance of a runner
|
174
|
-
runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new)
|
175
|
-
|
176
|
-
# get arguments
|
177
|
-
arguments = measure.arguments
|
178
|
-
argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments)
|
179
|
-
|
180
|
-
# create hash of argument values.
|
181
|
-
# If the argument has a default that you want to use, you don't need it in the hash
|
182
|
-
args_hash = {}
|
183
|
-
|
184
|
-
# populate argument with specified hash value if specified
|
185
|
-
arguments.each do |arg|
|
186
|
-
temp_arg_var = arg.clone
|
187
|
-
if args_hash[arg.name]
|
188
|
-
assert(temp_arg_var.setValue(args_hash[arg.name]))
|
189
|
-
end
|
190
|
-
argument_map[arg.name] = temp_arg_var
|
191
|
-
end
|
192
|
-
|
193
|
-
# get the energyplus output requests, this will be done automatically by OS App and PAT
|
194
|
-
idf_output_requests = measure.energyPlusOutputRequests(runner, argument_map)
|
195
|
-
# assert_equal(3, idf_output_requests.size)
|
196
|
-
|
197
|
-
# mimic the process of running this measure in OS App or PAT
|
198
|
-
# todo - create alternate setup or new args to pass in IDF with tariff objects using all fuels
|
199
|
-
epw_path = epw_path_default
|
200
|
-
setup_test(test_name, idf_output_requests, model_in_path)
|
201
|
-
|
202
|
-
assert(File.exist?(model_out_path(test_name)))
|
203
|
-
assert(File.exist?(sql_path(test_name)))
|
204
|
-
assert(File.exist?(epw_path))
|
205
|
-
|
206
|
-
# set up runner, this will happen automatically when measure is run in PAT or OpenStudio
|
207
|
-
runner.setLastOpenStudioModelPath(OpenStudio::Path.new(model_out_path(test_name)))
|
208
|
-
runner.setLastEnergyPlusWorkspacePath(OpenStudio::Path.new(workspace_path(test_name)))
|
209
|
-
runner.setLastEpwFilePath(epw_path)
|
210
|
-
runner.setLastEnergyPlusSqlFilePath(OpenStudio::Path.new(sql_path(test_name)))
|
211
|
-
|
212
|
-
# delete the output if it exists
|
213
|
-
if File.exist?(report_path(test_name))
|
214
|
-
FileUtils.rm(report_path(test_name))
|
215
|
-
end
|
216
|
-
assert(!File.exist?(report_path(test_name)))
|
217
|
-
|
218
|
-
# temporarily change directory to the run directory and run the measure
|
219
|
-
start_dir = Dir.pwd
|
220
|
-
begin
|
221
|
-
Dir.chdir(run_dir(test_name))
|
222
|
-
|
223
|
-
# run the measure
|
224
|
-
measure.run(runner, argument_map)
|
225
|
-
result = runner.result
|
226
|
-
show_output(result)
|
227
|
-
assert_equal('Success', result.value.valueName)
|
228
|
-
ensure
|
229
|
-
Dir.chdir(start_dir)
|
230
|
-
end
|
231
|
-
|
232
|
-
# make sure the report files exists
|
233
|
-
assert(File.exist?("#{run_dir(test_name)}/default_feature_reports.json"))
|
234
|
-
assert(File.exist?("#{run_dir(test_name)}/default_feature_reports.csv"))
|
235
|
-
end
|
236
|
-
end
|
237
|
-
# rubocop: enable Style/GuardClause
|
238
|
-
# rubocop: enable Metrics/AbcSize
|
@@ -1,4378 +0,0 @@
|
|
1
|
-
|
2
|
-
OS:Version,
|
3
|
-
{575286ba-57e3-4d71-b432-be4e3d067915}, !- Handle
|
4
|
-
2.7.1; !- Version Identifier
|
5
|
-
|
6
|
-
OS:SimulationControl,
|
7
|
-
{41f65c43-2dc9-4d82-a6e4-a562bae08803}, !- Handle
|
8
|
-
Yes, !- Do Zone Sizing Calculation
|
9
|
-
Yes, !- Do System Sizing Calculation
|
10
|
-
, !- Do Plant Sizing Calculation
|
11
|
-
Yes, !- Run Simulation for Sizing Periods
|
12
|
-
Yes; !- Run Simulation for Weather File Run Periods
|
13
|
-
|
14
|
-
OS:Timestep,
|
15
|
-
{eb4c2965-98e5-4997-8a4e-8c4f15debb16}, !- Handle
|
16
|
-
6; !- Number of Timesteps per Hour
|
17
|
-
|
18
|
-
OS:SurfaceConvectionAlgorithm:Inside,
|
19
|
-
{81e0d50e-12a1-42bd-977d-f7c5a2f8db48}, !- Handle
|
20
|
-
TARP; !- Algorithm
|
21
|
-
|
22
|
-
OS:SurfaceConvectionAlgorithm:Outside,
|
23
|
-
{4cd5774b-32a2-4735-bc88-a9704e322959}, !- Handle
|
24
|
-
DOE-2; !- Algorithm
|
25
|
-
|
26
|
-
OS:HeatBalanceAlgorithm,
|
27
|
-
{fb07df21-178f-40a0-868e-360603ea5cfc}, !- Handle
|
28
|
-
ConductionTransferFunction, !- Algorithm
|
29
|
-
200; !- Surface Temperature Upper Limit {C}
|
30
|
-
|
31
|
-
OS:ZoneAirHeatBalanceAlgorithm,
|
32
|
-
{82730f22-7533-4ae2-85c6-69dbcc9f2cda}, !- Handle
|
33
|
-
AnalyticalSolution; !- Algorithm
|
34
|
-
|
35
|
-
OS:ConvergenceLimits,
|
36
|
-
{17bc7ac9-f4b7-4401-b4e6-9cdcd6f62f24}; !- Handle
|
37
|
-
|
38
|
-
OS:ShadowCalculation,
|
39
|
-
{2c59bec7-e7be-489b-8d3d-042e6bf6bda3}, !- Handle
|
40
|
-
7, !- Calculation Frequency
|
41
|
-
15000; !- Maximum Figures in Shadow Overlap Calculations
|
42
|
-
|
43
|
-
OS:Site,
|
44
|
-
{5c1f9d16-87a5-488e-aa99-a6dd668a2146}, !- Handle
|
45
|
-
Site 1, !- Name
|
46
|
-
39.74, !- Latitude {deg}
|
47
|
-
-105.18, !- Longitude {deg}
|
48
|
-
-7, !- Time Zone {hr}
|
49
|
-
1829, !- Elevation {m}
|
50
|
-
; !- Terrain
|
51
|
-
|
52
|
-
OS:Site:GroundTemperature:BuildingSurface,
|
53
|
-
{2d661510-368a-464f-97bd-5b2b69e35b08}, !- Handle
|
54
|
-
19.527, !- January Ground Temperature {C}
|
55
|
-
19.502, !- February Ground Temperature {C}
|
56
|
-
19.536, !- March Ground Temperature {C}
|
57
|
-
19.598, !- April Ground Temperature {C}
|
58
|
-
20.002, !- May Ground Temperature {C}
|
59
|
-
21.64, !- June Ground Temperature {C}
|
60
|
-
22.225, !- July Ground Temperature {C}
|
61
|
-
22.375, !- August Ground Temperature {C}
|
62
|
-
21.449, !- September Ground Temperature {C}
|
63
|
-
20.121, !- October Ground Temperature {C}
|
64
|
-
19.802, !- November Ground Temperature {C}
|
65
|
-
19.633; !- December Ground Temperature {C}
|
66
|
-
|
67
|
-
OS:Site:WaterMainsTemperature,
|
68
|
-
{b1134434-51a2-4c57-a796-ee6a763117e6}, !- Handle
|
69
|
-
Correlation, !- Calculation Method
|
70
|
-
, !- Temperature Schedule Name
|
71
|
-
9.69, !- Annual Average Outdoor Air Temperature {C}
|
72
|
-
28.1; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC}
|
73
|
-
|
74
|
-
OS:SizingPeriod:DesignDay,
|
75
|
-
{93dffeb2-8b85-49e9-8487-9710c53e82fe}, !- Handle
|
76
|
-
Sizing Period Design Day 1, !- Name
|
77
|
-
-20.6, !- Maximum Dry-Bulb Temperature {C}
|
78
|
-
0, !- Daily Dry-Bulb Temperature Range {deltaC}
|
79
|
-
-20.6, !- Humidity Indicating Conditions at Maximum Dry-Bulb
|
80
|
-
99063, !- Barometric Pressure {Pa}
|
81
|
-
4.9, !- Wind Speed {m/s}
|
82
|
-
270, !- Wind Direction {deg}
|
83
|
-
0, !- Sky Clearness
|
84
|
-
0, !- Rain Indicator
|
85
|
-
0, !- Snow Indicator
|
86
|
-
21, !- Day of Month
|
87
|
-
1, !- Month
|
88
|
-
WinterDesignDay, !- Day Type
|
89
|
-
0, !- Daylight Saving Time Indicator
|
90
|
-
WetBulb, !- Humidity Indicating Type
|
91
|
-
, !- Humidity Indicating Day Schedule Name
|
92
|
-
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
93
|
-
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
94
|
-
AshraeClearSky; !- Solar Model Indicator
|
95
|
-
|
96
|
-
OS:SizingPeriod:DesignDay,
|
97
|
-
{ab722a10-2e37-4ef0-983a-14f23e04319c}, !- Handle
|
98
|
-
Sizing Period Design Day 2, !- Name
|
99
|
-
33.2, !- Maximum Dry-Bulb Temperature {C}
|
100
|
-
10.7, !- Daily Dry-Bulb Temperature Range {deltaC}
|
101
|
-
23.8, !- Humidity Indicating Conditions at Maximum Dry-Bulb
|
102
|
-
99063, !- Barometric Pressure {Pa}
|
103
|
-
5.3, !- Wind Speed {m/s}
|
104
|
-
230, !- Wind Direction {deg}
|
105
|
-
1, !- Sky Clearness
|
106
|
-
0, !- Rain Indicator
|
107
|
-
0, !- Snow Indicator
|
108
|
-
21, !- Day of Month
|
109
|
-
7, !- Month
|
110
|
-
SummerDesignDay, !- Day Type
|
111
|
-
0, !- Daylight Saving Time Indicator
|
112
|
-
WetBulb, !- Humidity Indicating Type
|
113
|
-
, !- Humidity Indicating Day Schedule Name
|
114
|
-
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
|
115
|
-
, !- Dry-Bulb Temperature Range Modifier Schedule Name
|
116
|
-
AshraeClearSky; !- Solar Model Indicator
|
117
|
-
|
118
|
-
OS:ScheduleTypeLimits,
|
119
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Handle
|
120
|
-
Temperature, !- Name
|
121
|
-
-60, !- Lower Limit Value
|
122
|
-
200, !- Upper Limit Value
|
123
|
-
CONTINUOUS, !- Numeric Type
|
124
|
-
Temperature; !- Unit Type
|
125
|
-
|
126
|
-
OS:DefaultScheduleSet,
|
127
|
-
{530f9623-af4a-491d-9109-39cfa4e2ff70}, !- Handle
|
128
|
-
Default Schedules, !- Name
|
129
|
-
, !- Hours of Operation Schedule Name
|
130
|
-
{35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Number of People Schedule Name
|
131
|
-
{2bb42ccb-e34b-4324-8f09-5156c3fbc2e9}, !- People Activity Level Schedule Name
|
132
|
-
{1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Lighting Schedule Name
|
133
|
-
{5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Electric Equipment Schedule Name
|
134
|
-
{17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Gas Equipment Schedule Name
|
135
|
-
{fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Hot Water Equipment Schedule Name
|
136
|
-
{0817a303-def9-43ca-87bc-67ba69219932}, !- Infiltration Schedule Name
|
137
|
-
, !- Steam Equipment Schedule Name
|
138
|
-
; !- Other Equipment Schedule Name
|
139
|
-
|
140
|
-
OS:Schedule:Ruleset,
|
141
|
-
{35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Handle
|
142
|
-
Medium Office Number of People Schedule, !- Name
|
143
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
144
|
-
{8c58dfc9-2203-4e39-b1d1-cddb1aec4625}, !- Default Day Schedule Name
|
145
|
-
{2ad4872c-04f0-4fb1-bd5a-e6c06804b414}; !- Summer Design Day Schedule Name
|
146
|
-
|
147
|
-
OS:Schedule:Day,
|
148
|
-
{8c58dfc9-2203-4e39-b1d1-cddb1aec4625}, !- Handle
|
149
|
-
Medium Office Number of People All Other Days Schedule, !- Name
|
150
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
151
|
-
, !- Interpolate to Timestep
|
152
|
-
24, !- Hour 1
|
153
|
-
0, !- Minute 1
|
154
|
-
0; !- Value Until Time 1
|
155
|
-
|
156
|
-
OS:Schedule:Day,
|
157
|
-
{d7dc2489-089a-43f2-bce6-91912fc8bf31}, !- Handle
|
158
|
-
Medium Office Number of People Summer Design Day Schedule, !- Name
|
159
|
-
, !- Schedule Type Limits Name
|
160
|
-
, !- Interpolate to Timestep
|
161
|
-
6, !- Hour 1
|
162
|
-
0, !- Minute 1
|
163
|
-
0, !- Value Until Time 1
|
164
|
-
22, !- Hour 2
|
165
|
-
0, !- Minute 2
|
166
|
-
1, !- Value Until Time 2
|
167
|
-
24, !- Hour 3
|
168
|
-
0, !- Minute 3
|
169
|
-
0.05; !- Value Until Time 3
|
170
|
-
|
171
|
-
OS:Schedule:Day,
|
172
|
-
{2ad4872c-04f0-4fb1-bd5a-e6c06804b414}, !- Handle
|
173
|
-
Medium Office Number of People Summer Design Day Schedule 1, !- Name
|
174
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
175
|
-
, !- Interpolate to Timestep
|
176
|
-
6, !- Hour 1
|
177
|
-
0, !- Minute 1
|
178
|
-
0, !- Value Until Time 1
|
179
|
-
22, !- Hour 2
|
180
|
-
0, !- Minute 2
|
181
|
-
1, !- Value Until Time 2
|
182
|
-
24, !- Hour 3
|
183
|
-
0, !- Minute 3
|
184
|
-
0.05; !- Value Until Time 3
|
185
|
-
|
186
|
-
OS:Schedule:Rule,
|
187
|
-
{84d67a93-4f94-4b9c-97e8-7256e6a4a525}, !- Handle
|
188
|
-
Medium Office Number of People Schedule Weekdays Rule, !- Name
|
189
|
-
{35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Schedule Ruleset Name
|
190
|
-
1, !- Rule Order
|
191
|
-
{d1e3b54e-956f-4cf9-ad46-6b016df057b5}, !- Day Schedule Name
|
192
|
-
, !- Apply Sunday
|
193
|
-
Yes, !- Apply Monday
|
194
|
-
Yes, !- Apply Tuesday
|
195
|
-
Yes, !- Apply Wednesday
|
196
|
-
Yes, !- Apply Thursday
|
197
|
-
Yes; !- Apply Friday
|
198
|
-
|
199
|
-
OS:Schedule:Day,
|
200
|
-
{d1e3b54e-956f-4cf9-ad46-6b016df057b5}, !- Handle
|
201
|
-
Medium Office Number of People Weekdays Schedule, !- Name
|
202
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
203
|
-
, !- Interpolate to Timestep
|
204
|
-
6, !- Hour 1
|
205
|
-
0, !- Minute 1
|
206
|
-
0, !- Value Until Time 1
|
207
|
-
7, !- Hour 2
|
208
|
-
0, !- Minute 2
|
209
|
-
0.1, !- Value Until Time 2
|
210
|
-
8, !- Hour 3
|
211
|
-
0, !- Minute 3
|
212
|
-
0.2, !- Value Until Time 3
|
213
|
-
12, !- Hour 4
|
214
|
-
0, !- Minute 4
|
215
|
-
0.95, !- Value Until Time 4
|
216
|
-
13, !- Hour 5
|
217
|
-
0, !- Minute 5
|
218
|
-
0.5, !- Value Until Time 5
|
219
|
-
17, !- Hour 6
|
220
|
-
0, !- Minute 6
|
221
|
-
0.95, !- Value Until Time 6
|
222
|
-
18, !- Hour 7
|
223
|
-
0, !- Minute 7
|
224
|
-
0.7, !- Value Until Time 7
|
225
|
-
20, !- Hour 8
|
226
|
-
0, !- Minute 8
|
227
|
-
0.4, !- Value Until Time 8
|
228
|
-
22, !- Hour 9
|
229
|
-
0, !- Minute 9
|
230
|
-
0.1, !- Value Until Time 9
|
231
|
-
24, !- Hour 10
|
232
|
-
0, !- Minute 10
|
233
|
-
0.05; !- Value Until Time 10
|
234
|
-
|
235
|
-
OS:Schedule:Rule,
|
236
|
-
{38230b6f-22e1-42c1-b909-190a9e11ff3d}, !- Handle
|
237
|
-
Medium Office Number of People Schedule Saturday Rule, !- Name
|
238
|
-
{35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Schedule Ruleset Name
|
239
|
-
0, !- Rule Order
|
240
|
-
{22292183-b2fd-42ce-ae32-0c4bedefce79}, !- Day Schedule Name
|
241
|
-
, !- Apply Sunday
|
242
|
-
, !- Apply Monday
|
243
|
-
, !- Apply Tuesday
|
244
|
-
, !- Apply Wednesday
|
245
|
-
, !- Apply Thursday
|
246
|
-
, !- Apply Friday
|
247
|
-
Yes; !- Apply Saturday
|
248
|
-
|
249
|
-
OS:Schedule:Day,
|
250
|
-
{22292183-b2fd-42ce-ae32-0c4bedefce79}, !- Handle
|
251
|
-
Medium Office Number of People Saturday Schedule, !- Name
|
252
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
253
|
-
, !- Interpolate to Timestep
|
254
|
-
6, !- Hour 1
|
255
|
-
0, !- Minute 1
|
256
|
-
0, !- Value Until Time 1
|
257
|
-
8, !- Hour 2
|
258
|
-
0, !- Minute 2
|
259
|
-
0.1, !- Value Until Time 2
|
260
|
-
14, !- Hour 3
|
261
|
-
0, !- Minute 3
|
262
|
-
0.5, !- Value Until Time 3
|
263
|
-
17, !- Hour 4
|
264
|
-
0, !- Minute 4
|
265
|
-
0.1, !- Value Until Time 4
|
266
|
-
24, !- Hour 5
|
267
|
-
0, !- Minute 5
|
268
|
-
0; !- Value Until Time 5
|
269
|
-
|
270
|
-
OS:ScheduleTypeLimits,
|
271
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Handle
|
272
|
-
Fractional, !- Name
|
273
|
-
0, !- Lower Limit Value
|
274
|
-
1, !- Upper Limit Value
|
275
|
-
Continuous; !- Numeric Type
|
276
|
-
|
277
|
-
OS:Schedule:Ruleset,
|
278
|
-
{2bb42ccb-e34b-4324-8f09-5156c3fbc2e9}, !- Handle
|
279
|
-
Medium Office People Activity Level Schedule, !- Name
|
280
|
-
{08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, !- Schedule Type Limits Name
|
281
|
-
{be2217e5-f9a6-4145-82e4-fe6dea134fdf}; !- Default Day Schedule Name
|
282
|
-
|
283
|
-
OS:Schedule:Day,
|
284
|
-
{be2217e5-f9a6-4145-82e4-fe6dea134fdf}, !- Handle
|
285
|
-
Medium Office People Activity Level All Days Schedule, !- Name
|
286
|
-
{08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, !- Schedule Type Limits Name
|
287
|
-
, !- Interpolate to Timestep
|
288
|
-
24, !- Hour 1
|
289
|
-
0, !- Minute 1
|
290
|
-
120; !- Value Until Time 1
|
291
|
-
|
292
|
-
OS:ScheduleTypeLimits,
|
293
|
-
{08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, !- Handle
|
294
|
-
ActivityLevel, !- Name
|
295
|
-
0, !- Lower Limit Value
|
296
|
-
, !- Upper Limit Value
|
297
|
-
Continuous, !- Numeric Type
|
298
|
-
ActivityLevel; !- Unit Type
|
299
|
-
|
300
|
-
OS:Schedule:Ruleset,
|
301
|
-
{1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Handle
|
302
|
-
Medium Office Lighting Schedule, !- Name
|
303
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
304
|
-
{52dc26b0-ebb2-41a7-be32-1329122c80d2}, !- Default Day Schedule Name
|
305
|
-
{735bcaaa-90b4-4638-9810-1140c5040126}, !- Summer Design Day Schedule Name
|
306
|
-
{2e222c53-7abb-4f2a-b857-579df1c90494}; !- Winter Design Day Schedule Name
|
307
|
-
|
308
|
-
OS:Schedule:Day,
|
309
|
-
{52dc26b0-ebb2-41a7-be32-1329122c80d2}, !- Handle
|
310
|
-
Medium Office Lighting All Other Days Schedule, !- Name
|
311
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
312
|
-
, !- Interpolate to Timestep
|
313
|
-
24, !- Hour 1
|
314
|
-
0, !- Minute 1
|
315
|
-
0.05; !- Value Until Time 1
|
316
|
-
|
317
|
-
OS:Schedule:Day,
|
318
|
-
{2ec688b9-ece2-477b-8517-990049371503}, !- Handle
|
319
|
-
Medium Office Lighting Summer Design Day Schedule, !- Name
|
320
|
-
, !- Schedule Type Limits Name
|
321
|
-
, !- Interpolate to Timestep
|
322
|
-
6, !- Hour 1
|
323
|
-
0, !- Minute 1
|
324
|
-
1, !- Value Until Time 1
|
325
|
-
24, !- Hour 2
|
326
|
-
0, !- Minute 2
|
327
|
-
0; !- Value Until Time 2
|
328
|
-
|
329
|
-
OS:Schedule:Day,
|
330
|
-
{735bcaaa-90b4-4638-9810-1140c5040126}, !- Handle
|
331
|
-
Medium Office Lighting Summer Design Day Schedule 1, !- Name
|
332
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
333
|
-
, !- Interpolate to Timestep
|
334
|
-
6, !- Hour 1
|
335
|
-
0, !- Minute 1
|
336
|
-
1, !- Value Until Time 1
|
337
|
-
24, !- Hour 2
|
338
|
-
0, !- Minute 2
|
339
|
-
0; !- Value Until Time 2
|
340
|
-
|
341
|
-
OS:Schedule:Day,
|
342
|
-
{7694d260-3e08-4966-bdaf-fca94e097e46}, !- Handle
|
343
|
-
Medium Office Lighting Winter Design Day Schedule, !- Name
|
344
|
-
, !- Schedule Type Limits Name
|
345
|
-
, !- Interpolate to Timestep
|
346
|
-
24, !- Hour 1
|
347
|
-
0, !- Minute 1
|
348
|
-
0; !- Value Until Time 1
|
349
|
-
|
350
|
-
OS:Schedule:Day,
|
351
|
-
{2e222c53-7abb-4f2a-b857-579df1c90494}, !- Handle
|
352
|
-
Medium Office Lighting Winter Design Day Schedule 1, !- Name
|
353
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
354
|
-
, !- Interpolate to Timestep
|
355
|
-
24, !- Hour 1
|
356
|
-
0, !- Minute 1
|
357
|
-
0; !- Value Until Time 1
|
358
|
-
|
359
|
-
OS:Schedule:Rule,
|
360
|
-
{8ee9ca74-9a1a-44fe-ba78-5daad1484425}, !- Handle
|
361
|
-
Medium Office Lighting Schedule Weekdays Rule, !- Name
|
362
|
-
{1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Schedule Ruleset Name
|
363
|
-
1, !- Rule Order
|
364
|
-
{b0f474ad-7ea5-41d4-a944-4ad9ad64068b}, !- Day Schedule Name
|
365
|
-
, !- Apply Sunday
|
366
|
-
Yes, !- Apply Monday
|
367
|
-
Yes, !- Apply Tuesday
|
368
|
-
Yes, !- Apply Wednesday
|
369
|
-
Yes, !- Apply Thursday
|
370
|
-
Yes; !- Apply Friday
|
371
|
-
|
372
|
-
OS:Schedule:Day,
|
373
|
-
{b0f474ad-7ea5-41d4-a944-4ad9ad64068b}, !- Handle
|
374
|
-
Medium Office Lighting Weekdays Schedule, !- Name
|
375
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
376
|
-
, !- Interpolate to Timestep
|
377
|
-
5, !- Hour 1
|
378
|
-
0, !- Minute 1
|
379
|
-
0.05, !- Value Until Time 1
|
380
|
-
7, !- Hour 2
|
381
|
-
0, !- Minute 2
|
382
|
-
0.1, !- Value Until Time 2
|
383
|
-
8, !- Hour 3
|
384
|
-
0, !- Minute 3
|
385
|
-
0.3, !- Value Until Time 3
|
386
|
-
17, !- Hour 4
|
387
|
-
0, !- Minute 4
|
388
|
-
0.9, !- Value Until Time 4
|
389
|
-
18, !- Hour 5
|
390
|
-
0, !- Minute 5
|
391
|
-
0.7, !- Value Until Time 5
|
392
|
-
20, !- Hour 6
|
393
|
-
0, !- Minute 6
|
394
|
-
0.5, !- Value Until Time 6
|
395
|
-
22, !- Hour 7
|
396
|
-
0, !- Minute 7
|
397
|
-
0.3, !- Value Until Time 7
|
398
|
-
23, !- Hour 8
|
399
|
-
0, !- Minute 8
|
400
|
-
0.1, !- Value Until Time 8
|
401
|
-
24, !- Hour 9
|
402
|
-
0, !- Minute 9
|
403
|
-
0.05; !- Value Until Time 9
|
404
|
-
|
405
|
-
OS:Schedule:Rule,
|
406
|
-
{4db8ca8f-75fd-4884-930b-df9f36c68d3d}, !- Handle
|
407
|
-
Medium Office Lighting Schedule Saturday Rule, !- Name
|
408
|
-
{1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Schedule Ruleset Name
|
409
|
-
0, !- Rule Order
|
410
|
-
{a74bb354-c78f-4c0f-a8d3-f014b72f5a52}, !- Day Schedule Name
|
411
|
-
, !- Apply Sunday
|
412
|
-
, !- Apply Monday
|
413
|
-
, !- Apply Tuesday
|
414
|
-
, !- Apply Wednesday
|
415
|
-
, !- Apply Thursday
|
416
|
-
, !- Apply Friday
|
417
|
-
Yes; !- Apply Saturday
|
418
|
-
|
419
|
-
OS:Schedule:Day,
|
420
|
-
{a74bb354-c78f-4c0f-a8d3-f014b72f5a52}, !- Handle
|
421
|
-
Medium Office Lighting Saturday Schedule, !- Name
|
422
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
423
|
-
, !- Interpolate to Timestep
|
424
|
-
6, !- Hour 1
|
425
|
-
0, !- Minute 1
|
426
|
-
0.05, !- Value Until Time 1
|
427
|
-
8, !- Hour 2
|
428
|
-
0, !- Minute 2
|
429
|
-
0.1, !- Value Until Time 2
|
430
|
-
14, !- Hour 3
|
431
|
-
0, !- Minute 3
|
432
|
-
0.5, !- Value Until Time 3
|
433
|
-
17, !- Hour 4
|
434
|
-
0, !- Minute 4
|
435
|
-
0.15, !- Value Until Time 4
|
436
|
-
24, !- Hour 5
|
437
|
-
0, !- Minute 5
|
438
|
-
0.05; !- Value Until Time 5
|
439
|
-
|
440
|
-
OS:Schedule:Ruleset,
|
441
|
-
{5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Handle
|
442
|
-
Medium Office Electric Equipment Schedule, !- Name
|
443
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
444
|
-
{60425952-2855-41ce-89ae-fd00b5e20368}, !- Default Day Schedule Name
|
445
|
-
{cadacfcd-bb65-41e4-8c6f-40516a3ead6d}, !- Summer Design Day Schedule Name
|
446
|
-
{f6bdaa84-8b3e-4e2d-9909-edb8b75b9ac1}; !- Winter Design Day Schedule Name
|
447
|
-
|
448
|
-
OS:Schedule:Day,
|
449
|
-
{60425952-2855-41ce-89ae-fd00b5e20368}, !- Handle
|
450
|
-
Medium Office Electric Equipment All Other Days Schedule, !- Name
|
451
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
452
|
-
, !- Interpolate to Timestep
|
453
|
-
24, !- Hour 1
|
454
|
-
0, !- Minute 1
|
455
|
-
0.3; !- Value Until Time 1
|
456
|
-
|
457
|
-
OS:Schedule:Day,
|
458
|
-
{517cee82-af8f-4bc8-b8c0-6aafaa719955}, !- Handle
|
459
|
-
Medium Office Electric Equipment Summer Design Day Schedule, !- Name
|
460
|
-
, !- Schedule Type Limits Name
|
461
|
-
, !- Interpolate to Timestep
|
462
|
-
6, !- Hour 1
|
463
|
-
0, !- Minute 1
|
464
|
-
1, !- Value Until Time 1
|
465
|
-
24, !- Hour 2
|
466
|
-
0, !- Minute 2
|
467
|
-
0; !- Value Until Time 2
|
468
|
-
|
469
|
-
OS:Schedule:Day,
|
470
|
-
{cadacfcd-bb65-41e4-8c6f-40516a3ead6d}, !- Handle
|
471
|
-
Medium Office Electric Equipment Summer Design Day Schedule 1, !- Name
|
472
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
473
|
-
, !- Interpolate to Timestep
|
474
|
-
6, !- Hour 1
|
475
|
-
0, !- Minute 1
|
476
|
-
1, !- Value Until Time 1
|
477
|
-
24, !- Hour 2
|
478
|
-
0, !- Minute 2
|
479
|
-
0; !- Value Until Time 2
|
480
|
-
|
481
|
-
OS:Schedule:Day,
|
482
|
-
{b6d14b80-ba6e-4844-b274-57f6a8068d6d}, !- Handle
|
483
|
-
Medium Office Electric Equipment Winter Design Day Schedule, !- Name
|
484
|
-
, !- Schedule Type Limits Name
|
485
|
-
, !- Interpolate to Timestep
|
486
|
-
24, !- Hour 1
|
487
|
-
0, !- Minute 1
|
488
|
-
0; !- Value Until Time 1
|
489
|
-
|
490
|
-
OS:Schedule:Day,
|
491
|
-
{f6bdaa84-8b3e-4e2d-9909-edb8b75b9ac1}, !- Handle
|
492
|
-
Medium Office Electric Equipment Winter Design Day Schedule 1, !- Name
|
493
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
494
|
-
, !- Interpolate to Timestep
|
495
|
-
24, !- Hour 1
|
496
|
-
0, !- Minute 1
|
497
|
-
0; !- Value Until Time 1
|
498
|
-
|
499
|
-
OS:Schedule:Rule,
|
500
|
-
{fc3c0917-2cfc-49b2-9500-534807f71b81}, !- Handle
|
501
|
-
Medium Office Electric Equipment Schedule Weekdays Rule, !- Name
|
502
|
-
{5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Schedule Ruleset Name
|
503
|
-
1, !- Rule Order
|
504
|
-
{f68a15c8-a377-48d7-b8fe-d903355cf2d7}, !- Day Schedule Name
|
505
|
-
, !- Apply Sunday
|
506
|
-
Yes, !- Apply Monday
|
507
|
-
Yes, !- Apply Tuesday
|
508
|
-
Yes, !- Apply Wednesday
|
509
|
-
Yes, !- Apply Thursday
|
510
|
-
Yes; !- Apply Friday
|
511
|
-
|
512
|
-
OS:Schedule:Day,
|
513
|
-
{f68a15c8-a377-48d7-b8fe-d903355cf2d7}, !- Handle
|
514
|
-
Medium Office Electric Equipment Weekdays Schedule, !- Name
|
515
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
516
|
-
, !- Interpolate to Timestep
|
517
|
-
8, !- Hour 1
|
518
|
-
0, !- Minute 1
|
519
|
-
0.4, !- Value Until Time 1
|
520
|
-
12, !- Hour 2
|
521
|
-
0, !- Minute 2
|
522
|
-
0.9, !- Value Until Time 2
|
523
|
-
13, !- Hour 3
|
524
|
-
0, !- Minute 3
|
525
|
-
0.8, !- Value Until Time 3
|
526
|
-
17, !- Hour 4
|
527
|
-
0, !- Minute 4
|
528
|
-
0.9, !- Value Until Time 4
|
529
|
-
18, !- Hour 5
|
530
|
-
0, !- Minute 5
|
531
|
-
0.8, !- Value Until Time 5
|
532
|
-
20, !- Hour 6
|
533
|
-
0, !- Minute 6
|
534
|
-
0.6, !- Value Until Time 6
|
535
|
-
22, !- Hour 7
|
536
|
-
0, !- Minute 7
|
537
|
-
0.5, !- Value Until Time 7
|
538
|
-
24, !- Hour 8
|
539
|
-
0, !- Minute 8
|
540
|
-
0.4; !- Value Until Time 8
|
541
|
-
|
542
|
-
OS:Schedule:Rule,
|
543
|
-
{b1750ba2-6a17-4cdc-bcaa-cd99babdec60}, !- Handle
|
544
|
-
Medium Office Electric Equipment Schedule Saturday Rule, !- Name
|
545
|
-
{5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Schedule Ruleset Name
|
546
|
-
0, !- Rule Order
|
547
|
-
{bc0c90c8-a38f-45cd-bd98-b13da679e5e0}, !- Day Schedule Name
|
548
|
-
, !- Apply Sunday
|
549
|
-
, !- Apply Monday
|
550
|
-
, !- Apply Tuesday
|
551
|
-
, !- Apply Wednesday
|
552
|
-
, !- Apply Thursday
|
553
|
-
, !- Apply Friday
|
554
|
-
Yes; !- Apply Saturday
|
555
|
-
|
556
|
-
OS:Schedule:Day,
|
557
|
-
{bc0c90c8-a38f-45cd-bd98-b13da679e5e0}, !- Handle
|
558
|
-
Medium Office Electric Equipment Saturday Schedule, !- Name
|
559
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
560
|
-
, !- Interpolate to Timestep
|
561
|
-
6, !- Hour 1
|
562
|
-
0, !- Minute 1
|
563
|
-
0.3, !- Value Until Time 1
|
564
|
-
8, !- Hour 2
|
565
|
-
0, !- Minute 2
|
566
|
-
0.4, !- Value Until Time 2
|
567
|
-
14, !- Hour 3
|
568
|
-
0, !- Minute 3
|
569
|
-
0.5, !- Value Until Time 3
|
570
|
-
17, !- Hour 4
|
571
|
-
0, !- Minute 4
|
572
|
-
0.35, !- Value Until Time 4
|
573
|
-
24, !- Hour 5
|
574
|
-
0, !- Minute 5
|
575
|
-
0.3; !- Value Until Time 5
|
576
|
-
|
577
|
-
OS:Schedule:Ruleset,
|
578
|
-
{17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Handle
|
579
|
-
Medium Office Gas Equipment Schedule, !- Name
|
580
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
581
|
-
{61c7a887-87f1-418d-9253-2811684c428b}, !- Default Day Schedule Name
|
582
|
-
{d069537b-4890-4227-a189-e7d9f4952c91}, !- Summer Design Day Schedule Name
|
583
|
-
{e78b0b24-59fe-40ed-a063-872a0a7d3c9b}; !- Winter Design Day Schedule Name
|
584
|
-
|
585
|
-
OS:Schedule:Day,
|
586
|
-
{61c7a887-87f1-418d-9253-2811684c428b}, !- Handle
|
587
|
-
Medium Office Gas Equipment All Other Days Schedule, !- Name
|
588
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
589
|
-
, !- Interpolate to Timestep
|
590
|
-
24, !- Hour 1
|
591
|
-
0, !- Minute 1
|
592
|
-
0.3; !- Value Until Time 1
|
593
|
-
|
594
|
-
OS:Schedule:Day,
|
595
|
-
{9521fd14-7124-44a9-a468-436a025d6ad5}, !- Handle
|
596
|
-
Medium Office Gas Equipment Summer Design Day Schedule, !- Name
|
597
|
-
, !- Schedule Type Limits Name
|
598
|
-
, !- Interpolate to Timestep
|
599
|
-
6, !- Hour 1
|
600
|
-
0, !- Minute 1
|
601
|
-
1, !- Value Until Time 1
|
602
|
-
24, !- Hour 2
|
603
|
-
0, !- Minute 2
|
604
|
-
0; !- Value Until Time 2
|
605
|
-
|
606
|
-
OS:Schedule:Day,
|
607
|
-
{d069537b-4890-4227-a189-e7d9f4952c91}, !- Handle
|
608
|
-
Medium Office Gas Equipment Summer Design Day Schedule 1, !- Name
|
609
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
610
|
-
, !- Interpolate to Timestep
|
611
|
-
6, !- Hour 1
|
612
|
-
0, !- Minute 1
|
613
|
-
1, !- Value Until Time 1
|
614
|
-
24, !- Hour 2
|
615
|
-
0, !- Minute 2
|
616
|
-
0; !- Value Until Time 2
|
617
|
-
|
618
|
-
OS:Schedule:Day,
|
619
|
-
{221ec613-5505-4bff-9908-ef3663e0f90f}, !- Handle
|
620
|
-
Medium Office Gas Equipment Winter Design Day Schedule, !- Name
|
621
|
-
, !- Schedule Type Limits Name
|
622
|
-
, !- Interpolate to Timestep
|
623
|
-
24, !- Hour 1
|
624
|
-
0, !- Minute 1
|
625
|
-
0; !- Value Until Time 1
|
626
|
-
|
627
|
-
OS:Schedule:Day,
|
628
|
-
{e78b0b24-59fe-40ed-a063-872a0a7d3c9b}, !- Handle
|
629
|
-
Medium Office Gas Equipment Winter Design Day Schedule 1, !- Name
|
630
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
631
|
-
, !- Interpolate to Timestep
|
632
|
-
24, !- Hour 1
|
633
|
-
0, !- Minute 1
|
634
|
-
0; !- Value Until Time 1
|
635
|
-
|
636
|
-
OS:Schedule:Rule,
|
637
|
-
{8086c332-a134-49de-8815-7d57e0516c4d}, !- Handle
|
638
|
-
Medium Office Gas Equipment Schedule Weekdays Rule, !- Name
|
639
|
-
{17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Schedule Ruleset Name
|
640
|
-
1, !- Rule Order
|
641
|
-
{0c9689a2-4ded-435e-9e24-16147cbadae2}, !- Day Schedule Name
|
642
|
-
, !- Apply Sunday
|
643
|
-
Yes, !- Apply Monday
|
644
|
-
Yes, !- Apply Tuesday
|
645
|
-
Yes, !- Apply Wednesday
|
646
|
-
Yes, !- Apply Thursday
|
647
|
-
Yes; !- Apply Friday
|
648
|
-
|
649
|
-
OS:Schedule:Day,
|
650
|
-
{0c9689a2-4ded-435e-9e24-16147cbadae2}, !- Handle
|
651
|
-
Medium Office Gas Equipment Weekdays Schedule, !- Name
|
652
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
653
|
-
, !- Interpolate to Timestep
|
654
|
-
8, !- Hour 1
|
655
|
-
0, !- Minute 1
|
656
|
-
0.4, !- Value Until Time 1
|
657
|
-
12, !- Hour 2
|
658
|
-
0, !- Minute 2
|
659
|
-
0.9, !- Value Until Time 2
|
660
|
-
13, !- Hour 3
|
661
|
-
0, !- Minute 3
|
662
|
-
0.8, !- Value Until Time 3
|
663
|
-
17, !- Hour 4
|
664
|
-
0, !- Minute 4
|
665
|
-
0.9, !- Value Until Time 4
|
666
|
-
18, !- Hour 5
|
667
|
-
0, !- Minute 5
|
668
|
-
0.8, !- Value Until Time 5
|
669
|
-
20, !- Hour 6
|
670
|
-
0, !- Minute 6
|
671
|
-
0.6, !- Value Until Time 6
|
672
|
-
22, !- Hour 7
|
673
|
-
0, !- Minute 7
|
674
|
-
0.5, !- Value Until Time 7
|
675
|
-
24, !- Hour 8
|
676
|
-
0, !- Minute 8
|
677
|
-
0.4; !- Value Until Time 8
|
678
|
-
|
679
|
-
OS:Schedule:Rule,
|
680
|
-
{18bd1011-4b0b-424f-9ca9-768af75c7fe1}, !- Handle
|
681
|
-
Medium Office Gas Equipment Schedule Saturday Rule, !- Name
|
682
|
-
{17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Schedule Ruleset Name
|
683
|
-
0, !- Rule Order
|
684
|
-
{f792b5be-c7f5-4596-9f1e-b8f098488d77}, !- Day Schedule Name
|
685
|
-
, !- Apply Sunday
|
686
|
-
, !- Apply Monday
|
687
|
-
, !- Apply Tuesday
|
688
|
-
, !- Apply Wednesday
|
689
|
-
, !- Apply Thursday
|
690
|
-
, !- Apply Friday
|
691
|
-
Yes; !- Apply Saturday
|
692
|
-
|
693
|
-
OS:Schedule:Day,
|
694
|
-
{f792b5be-c7f5-4596-9f1e-b8f098488d77}, !- Handle
|
695
|
-
Medium Office Gas Equipment Saturday Schedule, !- Name
|
696
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
697
|
-
, !- Interpolate to Timestep
|
698
|
-
6, !- Hour 1
|
699
|
-
0, !- Minute 1
|
700
|
-
0.3, !- Value Until Time 1
|
701
|
-
8, !- Hour 2
|
702
|
-
0, !- Minute 2
|
703
|
-
0.4, !- Value Until Time 2
|
704
|
-
14, !- Hour 3
|
705
|
-
0, !- Minute 3
|
706
|
-
0.5, !- Value Until Time 3
|
707
|
-
17, !- Hour 4
|
708
|
-
0, !- Minute 4
|
709
|
-
0.35, !- Value Until Time 4
|
710
|
-
24, !- Hour 5
|
711
|
-
0, !- Minute 5
|
712
|
-
0.3; !- Value Until Time 5
|
713
|
-
|
714
|
-
OS:Schedule:Ruleset,
|
715
|
-
{fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Handle
|
716
|
-
Medium Office Hot Water Equipment Schedule, !- Name
|
717
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
718
|
-
{eab3f7c6-a85a-4c94-87f4-7e5048db057d}, !- Default Day Schedule Name
|
719
|
-
{bba4f310-6433-48c8-9121-340699cb2bd8}, !- Summer Design Day Schedule Name
|
720
|
-
{2d842ac5-7650-4aa9-b4bf-c4e377a94dbc}; !- Winter Design Day Schedule Name
|
721
|
-
|
722
|
-
OS:Schedule:Day,
|
723
|
-
{eab3f7c6-a85a-4c94-87f4-7e5048db057d}, !- Handle
|
724
|
-
Medium Office Hot Water Equipment Default Schedule, !- Name
|
725
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
726
|
-
, !- Interpolate to Timestep
|
727
|
-
5, !- Hour 1
|
728
|
-
0, !- Minute 1
|
729
|
-
0.04, !- Value Until Time 1
|
730
|
-
6, !- Hour 2
|
731
|
-
0, !- Minute 2
|
732
|
-
0.07, !- Value Until Time 2
|
733
|
-
11, !- Hour 3
|
734
|
-
0, !- Minute 3
|
735
|
-
0.04, !- Value Until Time 3
|
736
|
-
13, !- Hour 4
|
737
|
-
0, !- Minute 4
|
738
|
-
0.06, !- Value Until Time 4
|
739
|
-
14, !- Hour 5
|
740
|
-
0, !- Minute 5
|
741
|
-
0.09, !- Value Until Time 5
|
742
|
-
15, !- Hour 6
|
743
|
-
0, !- Minute 6
|
744
|
-
0.06, !- Value Until Time 6
|
745
|
-
21, !- Hour 7
|
746
|
-
0, !- Minute 7
|
747
|
-
0.04, !- Value Until Time 7
|
748
|
-
22, !- Hour 8
|
749
|
-
0, !- Minute 8
|
750
|
-
0.07, !- Value Until Time 8
|
751
|
-
24, !- Hour 9
|
752
|
-
0, !- Minute 9
|
753
|
-
0.04; !- Value Until Time 9
|
754
|
-
|
755
|
-
OS:Schedule:Day,
|
756
|
-
{77eb4f53-1834-4131-92db-e9b2b0f79ba1}, !- Handle
|
757
|
-
Medium Office Hot Water Equipment Summer Design Day Schedule, !- Name
|
758
|
-
, !- Schedule Type Limits Name
|
759
|
-
, !- Interpolate to Timestep
|
760
|
-
5, !- Hour 1
|
761
|
-
0, !- Minute 1
|
762
|
-
0.05, !- Value Until Time 1
|
763
|
-
6, !- Hour 2
|
764
|
-
0, !- Minute 2
|
765
|
-
0.08, !- Value Until Time 2
|
766
|
-
7, !- Hour 3
|
767
|
-
0, !- Minute 3
|
768
|
-
0.07, !- Value Until Time 3
|
769
|
-
8, !- Hour 4
|
770
|
-
0, !- Minute 4
|
771
|
-
0.19, !- Value Until Time 4
|
772
|
-
9, !- Hour 5
|
773
|
-
0, !- Minute 5
|
774
|
-
0.35, !- Value Until Time 5
|
775
|
-
10, !- Hour 6
|
776
|
-
0, !- Minute 6
|
777
|
-
0.38, !- Value Until Time 6
|
778
|
-
11, !- Hour 7
|
779
|
-
0, !- Minute 7
|
780
|
-
0.39, !- Value Until Time 7
|
781
|
-
12, !- Hour 8
|
782
|
-
0, !- Minute 8
|
783
|
-
0.47, !- Value Until Time 8
|
784
|
-
13, !- Hour 9
|
785
|
-
0, !- Minute 9
|
786
|
-
0.57, !- Value Until Time 9
|
787
|
-
14, !- Hour 10
|
788
|
-
0, !- Minute 10
|
789
|
-
0.54, !- Value Until Time 10
|
790
|
-
15, !- Hour 11
|
791
|
-
0, !- Minute 11
|
792
|
-
0.34, !- Value Until Time 11
|
793
|
-
16, !- Hour 12
|
794
|
-
0, !- Minute 12
|
795
|
-
0.33, !- Value Until Time 12
|
796
|
-
17, !- Hour 13
|
797
|
-
0, !- Minute 13
|
798
|
-
0.44, !- Value Until Time 13
|
799
|
-
18, !- Hour 14
|
800
|
-
0, !- Minute 14
|
801
|
-
0.26, !- Value Until Time 14
|
802
|
-
19, !- Hour 15
|
803
|
-
0, !- Minute 15
|
804
|
-
0.21, !- Value Until Time 15
|
805
|
-
20, !- Hour 16
|
806
|
-
0, !- Minute 16
|
807
|
-
0.15, !- Value Until Time 16
|
808
|
-
21, !- Hour 17
|
809
|
-
0, !- Minute 17
|
810
|
-
0.17, !- Value Until Time 17
|
811
|
-
22, !- Hour 18
|
812
|
-
0, !- Minute 18
|
813
|
-
0.08, !- Value Until Time 18
|
814
|
-
24, !- Hour 19
|
815
|
-
0, !- Minute 19
|
816
|
-
0.05; !- Value Until Time 19
|
817
|
-
|
818
|
-
OS:Schedule:Day,
|
819
|
-
{bba4f310-6433-48c8-9121-340699cb2bd8}, !- Handle
|
820
|
-
Medium Office Hot Water Equipment Summer Design Day Schedule 1, !- Name
|
821
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
822
|
-
, !- Interpolate to Timestep
|
823
|
-
5, !- Hour 1
|
824
|
-
0, !- Minute 1
|
825
|
-
0.05, !- Value Until Time 1
|
826
|
-
6, !- Hour 2
|
827
|
-
0, !- Minute 2
|
828
|
-
0.08, !- Value Until Time 2
|
829
|
-
7, !- Hour 3
|
830
|
-
0, !- Minute 3
|
831
|
-
0.07, !- Value Until Time 3
|
832
|
-
8, !- Hour 4
|
833
|
-
0, !- Minute 4
|
834
|
-
0.19, !- Value Until Time 4
|
835
|
-
9, !- Hour 5
|
836
|
-
0, !- Minute 5
|
837
|
-
0.35, !- Value Until Time 5
|
838
|
-
10, !- Hour 6
|
839
|
-
0, !- Minute 6
|
840
|
-
0.38, !- Value Until Time 6
|
841
|
-
11, !- Hour 7
|
842
|
-
0, !- Minute 7
|
843
|
-
0.39, !- Value Until Time 7
|
844
|
-
12, !- Hour 8
|
845
|
-
0, !- Minute 8
|
846
|
-
0.47, !- Value Until Time 8
|
847
|
-
13, !- Hour 9
|
848
|
-
0, !- Minute 9
|
849
|
-
0.57, !- Value Until Time 9
|
850
|
-
14, !- Hour 10
|
851
|
-
0, !- Minute 10
|
852
|
-
0.54, !- Value Until Time 10
|
853
|
-
15, !- Hour 11
|
854
|
-
0, !- Minute 11
|
855
|
-
0.34, !- Value Until Time 11
|
856
|
-
16, !- Hour 12
|
857
|
-
0, !- Minute 12
|
858
|
-
0.33, !- Value Until Time 12
|
859
|
-
17, !- Hour 13
|
860
|
-
0, !- Minute 13
|
861
|
-
0.44, !- Value Until Time 13
|
862
|
-
18, !- Hour 14
|
863
|
-
0, !- Minute 14
|
864
|
-
0.26, !- Value Until Time 14
|
865
|
-
19, !- Hour 15
|
866
|
-
0, !- Minute 15
|
867
|
-
0.21, !- Value Until Time 15
|
868
|
-
20, !- Hour 16
|
869
|
-
0, !- Minute 16
|
870
|
-
0.15, !- Value Until Time 16
|
871
|
-
21, !- Hour 17
|
872
|
-
0, !- Minute 17
|
873
|
-
0.17, !- Value Until Time 17
|
874
|
-
22, !- Hour 18
|
875
|
-
0, !- Minute 18
|
876
|
-
0.08, !- Value Until Time 18
|
877
|
-
24, !- Hour 19
|
878
|
-
0, !- Minute 19
|
879
|
-
0.05; !- Value Until Time 19
|
880
|
-
|
881
|
-
OS:Schedule:Rule,
|
882
|
-
{e7f4775d-e709-4b0f-a9de-585e7f8de071}, !- Handle
|
883
|
-
Medium Office Hot Water Schedule Weekdays Rule, !- Name
|
884
|
-
{fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Schedule Ruleset Name
|
885
|
-
1, !- Rule Order
|
886
|
-
{ecc5b92e-c700-45dd-9c3a-c89d744aceb7}, !- Day Schedule Name
|
887
|
-
, !- Apply Sunday
|
888
|
-
Yes, !- Apply Monday
|
889
|
-
Yes, !- Apply Tuesday
|
890
|
-
Yes, !- Apply Wednesday
|
891
|
-
Yes, !- Apply Thursday
|
892
|
-
Yes; !- Apply Friday
|
893
|
-
|
894
|
-
OS:Schedule:Day,
|
895
|
-
{ecc5b92e-c700-45dd-9c3a-c89d744aceb7}, !- Handle
|
896
|
-
Medium Office Hot Water Equipment Weekdays Schedule, !- Name
|
897
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
898
|
-
, !- Interpolate to Timestep
|
899
|
-
5, !- Hour 1
|
900
|
-
0, !- Minute 1
|
901
|
-
0.05, !- Value Until Time 1
|
902
|
-
6, !- Hour 2
|
903
|
-
0, !- Minute 2
|
904
|
-
0.08, !- Value Until Time 2
|
905
|
-
7, !- Hour 3
|
906
|
-
0, !- Minute 3
|
907
|
-
0.07, !- Value Until Time 3
|
908
|
-
8, !- Hour 4
|
909
|
-
0, !- Minute 4
|
910
|
-
0.19, !- Value Until Time 4
|
911
|
-
9, !- Hour 5
|
912
|
-
0, !- Minute 5
|
913
|
-
0.35, !- Value Until Time 5
|
914
|
-
10, !- Hour 6
|
915
|
-
0, !- Minute 6
|
916
|
-
0.38, !- Value Until Time 6
|
917
|
-
11, !- Hour 7
|
918
|
-
0, !- Minute 7
|
919
|
-
0.39, !- Value Until Time 7
|
920
|
-
12, !- Hour 8
|
921
|
-
0, !- Minute 8
|
922
|
-
0.47, !- Value Until Time 8
|
923
|
-
13, !- Hour 9
|
924
|
-
0, !- Minute 9
|
925
|
-
0.57, !- Value Until Time 9
|
926
|
-
14, !- Hour 10
|
927
|
-
0, !- Minute 10
|
928
|
-
0.54, !- Value Until Time 10
|
929
|
-
15, !- Hour 11
|
930
|
-
0, !- Minute 11
|
931
|
-
0.34, !- Value Until Time 11
|
932
|
-
16, !- Hour 12
|
933
|
-
0, !- Minute 12
|
934
|
-
0.33, !- Value Until Time 12
|
935
|
-
17, !- Hour 13
|
936
|
-
0, !- Minute 13
|
937
|
-
0.44, !- Value Until Time 13
|
938
|
-
18, !- Hour 14
|
939
|
-
0, !- Minute 14
|
940
|
-
0.26, !- Value Until Time 14
|
941
|
-
19, !- Hour 15
|
942
|
-
0, !- Minute 15
|
943
|
-
0.21, !- Value Until Time 15
|
944
|
-
20, !- Hour 16
|
945
|
-
0, !- Minute 16
|
946
|
-
0.15, !- Value Until Time 16
|
947
|
-
21, !- Hour 17
|
948
|
-
0, !- Minute 17
|
949
|
-
0.17, !- Value Until Time 17
|
950
|
-
22, !- Hour 18
|
951
|
-
0, !- Minute 18
|
952
|
-
0.08, !- Value Until Time 18
|
953
|
-
24, !- Hour 19
|
954
|
-
0, !- Minute 19
|
955
|
-
0.05; !- Value Until Time 19
|
956
|
-
|
957
|
-
OS:Schedule:Day,
|
958
|
-
{95c22007-35ea-49b9-a888-40989e6f9154}, !- Handle
|
959
|
-
Medium Office Hot Water Equipment Winter Design Day Schedule, !- Name
|
960
|
-
, !- Schedule Type Limits Name
|
961
|
-
, !- Interpolate to Timestep
|
962
|
-
5, !- Hour 1
|
963
|
-
0, !- Minute 1
|
964
|
-
0.05, !- Value Until Time 1
|
965
|
-
6, !- Hour 2
|
966
|
-
0, !- Minute 2
|
967
|
-
0.08, !- Value Until Time 2
|
968
|
-
7, !- Hour 3
|
969
|
-
0, !- Minute 3
|
970
|
-
0.07, !- Value Until Time 3
|
971
|
-
8, !- Hour 4
|
972
|
-
0, !- Minute 4
|
973
|
-
0.11, !- Value Until Time 4
|
974
|
-
9, !- Hour 5
|
975
|
-
0, !- Minute 5
|
976
|
-
0.15, !- Value Until Time 5
|
977
|
-
10, !- Hour 6
|
978
|
-
0, !- Minute 6
|
979
|
-
0.21, !- Value Until Time 6
|
980
|
-
11, !- Hour 7
|
981
|
-
0, !- Minute 7
|
982
|
-
0.19, !- Value Until Time 7
|
983
|
-
12, !- Hour 8
|
984
|
-
0, !- Minute 8
|
985
|
-
0.23, !- Value Until Time 8
|
986
|
-
13, !- Hour 9
|
987
|
-
0, !- Minute 9
|
988
|
-
0.2, !- Value Until Time 9
|
989
|
-
14, !- Hour 10
|
990
|
-
0, !- Minute 10
|
991
|
-
0.19, !- Value Until Time 10
|
992
|
-
15, !- Hour 11
|
993
|
-
0, !- Minute 11
|
994
|
-
0.15, !- Value Until Time 11
|
995
|
-
16, !- Hour 12
|
996
|
-
0, !- Minute 12
|
997
|
-
0.13, !- Value Until Time 12
|
998
|
-
17, !- Hour 13
|
999
|
-
0, !- Minute 13
|
1000
|
-
0.14, !- Value Until Time 13
|
1001
|
-
21, !- Hour 14
|
1002
|
-
0, !- Minute 14
|
1003
|
-
0.07, !- Value Until Time 14
|
1004
|
-
22, !- Hour 15
|
1005
|
-
0, !- Minute 15
|
1006
|
-
0.09, !- Value Until Time 15
|
1007
|
-
24, !- Hour 16
|
1008
|
-
0, !- Minute 16
|
1009
|
-
0.05; !- Value Until Time 16
|
1010
|
-
|
1011
|
-
OS:Schedule:Day,
|
1012
|
-
{2d842ac5-7650-4aa9-b4bf-c4e377a94dbc}, !- Handle
|
1013
|
-
Medium Office Hot Water Equipment Winter Design Day Schedule 1, !- Name
|
1014
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1015
|
-
, !- Interpolate to Timestep
|
1016
|
-
5, !- Hour 1
|
1017
|
-
0, !- Minute 1
|
1018
|
-
0.05, !- Value Until Time 1
|
1019
|
-
6, !- Hour 2
|
1020
|
-
0, !- Minute 2
|
1021
|
-
0.08, !- Value Until Time 2
|
1022
|
-
7, !- Hour 3
|
1023
|
-
0, !- Minute 3
|
1024
|
-
0.07, !- Value Until Time 3
|
1025
|
-
8, !- Hour 4
|
1026
|
-
0, !- Minute 4
|
1027
|
-
0.11, !- Value Until Time 4
|
1028
|
-
9, !- Hour 5
|
1029
|
-
0, !- Minute 5
|
1030
|
-
0.15, !- Value Until Time 5
|
1031
|
-
10, !- Hour 6
|
1032
|
-
0, !- Minute 6
|
1033
|
-
0.21, !- Value Until Time 6
|
1034
|
-
11, !- Hour 7
|
1035
|
-
0, !- Minute 7
|
1036
|
-
0.19, !- Value Until Time 7
|
1037
|
-
12, !- Hour 8
|
1038
|
-
0, !- Minute 8
|
1039
|
-
0.23, !- Value Until Time 8
|
1040
|
-
13, !- Hour 9
|
1041
|
-
0, !- Minute 9
|
1042
|
-
0.2, !- Value Until Time 9
|
1043
|
-
14, !- Hour 10
|
1044
|
-
0, !- Minute 10
|
1045
|
-
0.19, !- Value Until Time 10
|
1046
|
-
15, !- Hour 11
|
1047
|
-
0, !- Minute 11
|
1048
|
-
0.15, !- Value Until Time 11
|
1049
|
-
16, !- Hour 12
|
1050
|
-
0, !- Minute 12
|
1051
|
-
0.13, !- Value Until Time 12
|
1052
|
-
17, !- Hour 13
|
1053
|
-
0, !- Minute 13
|
1054
|
-
0.14, !- Value Until Time 13
|
1055
|
-
21, !- Hour 14
|
1056
|
-
0, !- Minute 14
|
1057
|
-
0.07, !- Value Until Time 14
|
1058
|
-
22, !- Hour 15
|
1059
|
-
0, !- Minute 15
|
1060
|
-
0.09, !- Value Until Time 15
|
1061
|
-
24, !- Hour 16
|
1062
|
-
0, !- Minute 16
|
1063
|
-
0.05; !- Value Until Time 16
|
1064
|
-
|
1065
|
-
OS:Schedule:Rule,
|
1066
|
-
{65496630-d30e-469e-88d7-8a621f284675}, !- Handle
|
1067
|
-
Medium Office Hot Water Schedule Saturday Rule, !- Name
|
1068
|
-
{fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Schedule Ruleset Name
|
1069
|
-
0, !- Rule Order
|
1070
|
-
{6ebd9e71-8edf-4d97-895a-5d4dfdada090}, !- Day Schedule Name
|
1071
|
-
, !- Apply Sunday
|
1072
|
-
, !- Apply Monday
|
1073
|
-
, !- Apply Tuesday
|
1074
|
-
, !- Apply Wednesday
|
1075
|
-
, !- Apply Thursday
|
1076
|
-
, !- Apply Friday
|
1077
|
-
Yes; !- Apply Saturday
|
1078
|
-
|
1079
|
-
OS:Schedule:Day,
|
1080
|
-
{6ebd9e71-8edf-4d97-895a-5d4dfdada090}, !- Handle
|
1081
|
-
Medium Office Hot Water Equipment Saturday Schedule, !- Name
|
1082
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1083
|
-
, !- Interpolate to Timestep
|
1084
|
-
5, !- Hour 1
|
1085
|
-
0, !- Minute 1
|
1086
|
-
0.05, !- Value Until Time 1
|
1087
|
-
6, !- Hour 2
|
1088
|
-
0, !- Minute 2
|
1089
|
-
0.08, !- Value Until Time 2
|
1090
|
-
7, !- Hour 3
|
1091
|
-
0, !- Minute 3
|
1092
|
-
0.07, !- Value Until Time 3
|
1093
|
-
8, !- Hour 4
|
1094
|
-
0, !- Minute 4
|
1095
|
-
0.11, !- Value Until Time 4
|
1096
|
-
9, !- Hour 5
|
1097
|
-
0, !- Minute 5
|
1098
|
-
0.15, !- Value Until Time 5
|
1099
|
-
10, !- Hour 6
|
1100
|
-
0, !- Minute 6
|
1101
|
-
0.21, !- Value Until Time 6
|
1102
|
-
11, !- Hour 7
|
1103
|
-
0, !- Minute 7
|
1104
|
-
0.19, !- Value Until Time 7
|
1105
|
-
12, !- Hour 8
|
1106
|
-
0, !- Minute 8
|
1107
|
-
0.23, !- Value Until Time 8
|
1108
|
-
13, !- Hour 9
|
1109
|
-
0, !- Minute 9
|
1110
|
-
0.2, !- Value Until Time 9
|
1111
|
-
14, !- Hour 10
|
1112
|
-
0, !- Minute 10
|
1113
|
-
0.19, !- Value Until Time 10
|
1114
|
-
15, !- Hour 11
|
1115
|
-
0, !- Minute 11
|
1116
|
-
0.15, !- Value Until Time 11
|
1117
|
-
16, !- Hour 12
|
1118
|
-
0, !- Minute 12
|
1119
|
-
0.13, !- Value Until Time 12
|
1120
|
-
17, !- Hour 13
|
1121
|
-
0, !- Minute 13
|
1122
|
-
0.14, !- Value Until Time 13
|
1123
|
-
21, !- Hour 14
|
1124
|
-
0, !- Minute 14
|
1125
|
-
0.07, !- Value Until Time 14
|
1126
|
-
22, !- Hour 15
|
1127
|
-
0, !- Minute 15
|
1128
|
-
0.09, !- Value Until Time 15
|
1129
|
-
24, !- Hour 16
|
1130
|
-
0, !- Minute 16
|
1131
|
-
0.05; !- Value Until Time 16
|
1132
|
-
|
1133
|
-
OS:Schedule:Ruleset,
|
1134
|
-
{0817a303-def9-43ca-87bc-67ba69219932}, !- Handle
|
1135
|
-
Medium Office Infiltration Schedule, !- Name
|
1136
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1137
|
-
{0f98fdc3-df16-4be0-b67a-a250b0c59707}, !- Default Day Schedule Name
|
1138
|
-
{87884ef9-074d-4c15-81f4-6ea06454e067}, !- Summer Design Day Schedule Name
|
1139
|
-
{4ef554fc-8338-4a16-a81c-e30e49d952b2}; !- Winter Design Day Schedule Name
|
1140
|
-
|
1141
|
-
OS:Schedule:Day,
|
1142
|
-
{0f98fdc3-df16-4be0-b67a-a250b0c59707}, !- Handle
|
1143
|
-
Medium Office Infiltration Default Schedule, !- Name
|
1144
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1145
|
-
, !- Interpolate to Timestep
|
1146
|
-
24, !- Hour 1
|
1147
|
-
0, !- Minute 1
|
1148
|
-
1; !- Value Until Time 1
|
1149
|
-
|
1150
|
-
OS:Schedule:Day,
|
1151
|
-
{5172715a-3080-4bf6-9f2b-bfc528c12495}, !- Handle
|
1152
|
-
Medium Office Infiltration Summer Design Day Schedule, !- Name
|
1153
|
-
, !- Schedule Type Limits Name
|
1154
|
-
, !- Interpolate to Timestep
|
1155
|
-
6, !- Hour 1
|
1156
|
-
0, !- Minute 1
|
1157
|
-
1, !- Value Until Time 1
|
1158
|
-
22, !- Hour 2
|
1159
|
-
0, !- Minute 2
|
1160
|
-
0.25, !- Value Until Time 2
|
1161
|
-
24, !- Hour 3
|
1162
|
-
0, !- Minute 3
|
1163
|
-
1; !- Value Until Time 3
|
1164
|
-
|
1165
|
-
OS:Schedule:Day,
|
1166
|
-
{87884ef9-074d-4c15-81f4-6ea06454e067}, !- Handle
|
1167
|
-
Medium Office Infiltration Summer Design Day Schedule 1, !- Name
|
1168
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1169
|
-
, !- Interpolate to Timestep
|
1170
|
-
6, !- Hour 1
|
1171
|
-
0, !- Minute 1
|
1172
|
-
1, !- Value Until Time 1
|
1173
|
-
22, !- Hour 2
|
1174
|
-
0, !- Minute 2
|
1175
|
-
0.25, !- Value Until Time 2
|
1176
|
-
24, !- Hour 3
|
1177
|
-
0, !- Minute 3
|
1178
|
-
1; !- Value Until Time 3
|
1179
|
-
|
1180
|
-
OS:Schedule:Rule,
|
1181
|
-
{79ccd7b5-8154-4fb3-89b0-ba883d843a0c}, !- Handle
|
1182
|
-
Medium Office Infiltration Schedule Weekdays Rule, !- Name
|
1183
|
-
{0817a303-def9-43ca-87bc-67ba69219932}, !- Schedule Ruleset Name
|
1184
|
-
1, !- Rule Order
|
1185
|
-
{7f990e4e-a912-40e7-b7f5-7112e7a02b1c}, !- Day Schedule Name
|
1186
|
-
, !- Apply Sunday
|
1187
|
-
Yes, !- Apply Monday
|
1188
|
-
Yes, !- Apply Tuesday
|
1189
|
-
Yes, !- Apply Wednesday
|
1190
|
-
Yes, !- Apply Thursday
|
1191
|
-
Yes; !- Apply Friday
|
1192
|
-
|
1193
|
-
OS:Schedule:Day,
|
1194
|
-
{7f990e4e-a912-40e7-b7f5-7112e7a02b1c}, !- Handle
|
1195
|
-
Medium Office Infiltration Weekdays Schedule, !- Name
|
1196
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1197
|
-
, !- Interpolate to Timestep
|
1198
|
-
6, !- Hour 1
|
1199
|
-
0, !- Minute 1
|
1200
|
-
1, !- Value Until Time 1
|
1201
|
-
22, !- Hour 2
|
1202
|
-
0, !- Minute 2
|
1203
|
-
0.25, !- Value Until Time 2
|
1204
|
-
24, !- Hour 3
|
1205
|
-
0, !- Minute 3
|
1206
|
-
1; !- Value Until Time 3
|
1207
|
-
|
1208
|
-
OS:Schedule:Day,
|
1209
|
-
{ec9f8f21-ee0d-4eb8-b3a2-4fc356ee5386}, !- Handle
|
1210
|
-
Medium Office Infiltration Winter Design Day Schedule, !- Name
|
1211
|
-
, !- Schedule Type Limits Name
|
1212
|
-
, !- Interpolate to Timestep
|
1213
|
-
6, !- Hour 1
|
1214
|
-
0, !- Minute 1
|
1215
|
-
1, !- Value Until Time 1
|
1216
|
-
18, !- Hour 2
|
1217
|
-
0, !- Minute 2
|
1218
|
-
0.25, !- Value Until Time 2
|
1219
|
-
24, !- Hour 3
|
1220
|
-
0, !- Minute 3
|
1221
|
-
1; !- Value Until Time 3
|
1222
|
-
|
1223
|
-
OS:Schedule:Day,
|
1224
|
-
{4ef554fc-8338-4a16-a81c-e30e49d952b2}, !- Handle
|
1225
|
-
Medium Office Infiltration Winter Design Day Schedule 1, !- Name
|
1226
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1227
|
-
, !- Interpolate to Timestep
|
1228
|
-
6, !- Hour 1
|
1229
|
-
0, !- Minute 1
|
1230
|
-
1, !- Value Until Time 1
|
1231
|
-
18, !- Hour 2
|
1232
|
-
0, !- Minute 2
|
1233
|
-
0.25, !- Value Until Time 2
|
1234
|
-
24, !- Hour 3
|
1235
|
-
0, !- Minute 3
|
1236
|
-
1; !- Value Until Time 3
|
1237
|
-
|
1238
|
-
OS:Schedule:Rule,
|
1239
|
-
{b3494ed9-a1f5-4dea-8c75-946d3483e33e}, !- Handle
|
1240
|
-
Medium Office Infiltration Schedule Saturday Rule, !- Name
|
1241
|
-
{0817a303-def9-43ca-87bc-67ba69219932}, !- Schedule Ruleset Name
|
1242
|
-
0, !- Rule Order
|
1243
|
-
{41c8d5cf-e6de-4e57-8b7e-e1a5a55bc0e8}, !- Day Schedule Name
|
1244
|
-
, !- Apply Sunday
|
1245
|
-
, !- Apply Monday
|
1246
|
-
, !- Apply Tuesday
|
1247
|
-
, !- Apply Wednesday
|
1248
|
-
, !- Apply Thursday
|
1249
|
-
, !- Apply Friday
|
1250
|
-
Yes; !- Apply Saturday
|
1251
|
-
|
1252
|
-
OS:Schedule:Day,
|
1253
|
-
{41c8d5cf-e6de-4e57-8b7e-e1a5a55bc0e8}, !- Handle
|
1254
|
-
Medium Office Infiltration Saturday Schedule, !- Name
|
1255
|
-
{5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name
|
1256
|
-
, !- Interpolate to Timestep
|
1257
|
-
6, !- Hour 1
|
1258
|
-
0, !- Minute 1
|
1259
|
-
1, !- Value Until Time 1
|
1260
|
-
18, !- Hour 2
|
1261
|
-
0, !- Minute 2
|
1262
|
-
0.25, !- Value Until Time 2
|
1263
|
-
24, !- Hour 3
|
1264
|
-
0, !- Minute 3
|
1265
|
-
1; !- Value Until Time 3
|
1266
|
-
|
1267
|
-
OS:Schedule:Ruleset,
|
1268
|
-
{df3e3633-7709-4d03-8b8c-d2380d3bf15c}, !- Handle
|
1269
|
-
Medium Office Cooling Setpoint Schedule, !- Name
|
1270
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1271
|
-
{59c29b3f-5ec2-41eb-ad03-9f8d8a3367e1}, !- Default Day Schedule Name
|
1272
|
-
{228eb914-1741-4b49-924b-2cd109408353}; !- Summer Design Day Schedule Name
|
1273
|
-
|
1274
|
-
OS:Schedule:Day,
|
1275
|
-
{59c29b3f-5ec2-41eb-ad03-9f8d8a3367e1}, !- Handle
|
1276
|
-
Medium Office Cooling Setpoint All Other Days Schedule, !- Name
|
1277
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1278
|
-
, !- Interpolate to Timestep
|
1279
|
-
24, !- Hour 1
|
1280
|
-
0, !- Minute 1
|
1281
|
-
26.7; !- Value Until Time 1
|
1282
|
-
|
1283
|
-
OS:Schedule:Day,
|
1284
|
-
{f7b9f15f-f032-440d-a1dd-1bdbcba48a08}, !- Handle
|
1285
|
-
Medium Office Cooling Setpoint Summer Design Day Schedule, !- Name
|
1286
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1287
|
-
, !- Interpolate to Timestep
|
1288
|
-
6, !- Hour 1
|
1289
|
-
0, !- Minute 1
|
1290
|
-
26.7, !- Value Until Time 1
|
1291
|
-
22, !- Hour 2
|
1292
|
-
0, !- Minute 2
|
1293
|
-
24, !- Value Until Time 2
|
1294
|
-
24, !- Hour 3
|
1295
|
-
0, !- Minute 3
|
1296
|
-
26.7; !- Value Until Time 3
|
1297
|
-
|
1298
|
-
OS:Schedule:Day,
|
1299
|
-
{228eb914-1741-4b49-924b-2cd109408353}, !- Handle
|
1300
|
-
Medium Office Cooling Setpoint Summer Design Day Schedule 1, !- Name
|
1301
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1302
|
-
, !- Interpolate to Timestep
|
1303
|
-
6, !- Hour 1
|
1304
|
-
0, !- Minute 1
|
1305
|
-
26.7, !- Value Until Time 1
|
1306
|
-
22, !- Hour 2
|
1307
|
-
0, !- Minute 2
|
1308
|
-
24, !- Value Until Time 2
|
1309
|
-
24, !- Hour 3
|
1310
|
-
0, !- Minute 3
|
1311
|
-
26.7; !- Value Until Time 3
|
1312
|
-
|
1313
|
-
OS:Schedule:Rule,
|
1314
|
-
{16d21843-31f7-40d1-ade1-299b8c0e9239}, !- Handle
|
1315
|
-
Medium Office Cooling Setpoint Schedule Weekdays Rule, !- Name
|
1316
|
-
{df3e3633-7709-4d03-8b8c-d2380d3bf15c}, !- Schedule Ruleset Name
|
1317
|
-
1, !- Rule Order
|
1318
|
-
{55522280-9c6f-4340-b3c1-c364ad05f4a4}, !- Day Schedule Name
|
1319
|
-
, !- Apply Sunday
|
1320
|
-
Yes, !- Apply Monday
|
1321
|
-
Yes, !- Apply Tuesday
|
1322
|
-
Yes, !- Apply Wednesday
|
1323
|
-
Yes, !- Apply Thursday
|
1324
|
-
Yes; !- Apply Friday
|
1325
|
-
|
1326
|
-
OS:Schedule:Day,
|
1327
|
-
{55522280-9c6f-4340-b3c1-c364ad05f4a4}, !- Handle
|
1328
|
-
Medium Office Cooling Setpoint Weekdays Schedule, !- Name
|
1329
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1330
|
-
, !- Interpolate to Timestep
|
1331
|
-
6, !- Hour 1
|
1332
|
-
0, !- Minute 1
|
1333
|
-
26.7, !- Value Until Time 1
|
1334
|
-
22, !- Hour 2
|
1335
|
-
0, !- Minute 2
|
1336
|
-
24, !- Value Until Time 2
|
1337
|
-
24, !- Hour 3
|
1338
|
-
0, !- Minute 3
|
1339
|
-
26.7; !- Value Until Time 3
|
1340
|
-
|
1341
|
-
OS:Schedule:Rule,
|
1342
|
-
{9097a283-83f9-4812-b53b-962f4f83e1e0}, !- Handle
|
1343
|
-
Medium Office Cooling Setpoint Schedule Saturday Rule, !- Name
|
1344
|
-
{df3e3633-7709-4d03-8b8c-d2380d3bf15c}, !- Schedule Ruleset Name
|
1345
|
-
0, !- Rule Order
|
1346
|
-
{eafd19d4-e4ae-4975-9d86-56fc38df748c}, !- Day Schedule Name
|
1347
|
-
, !- Apply Sunday
|
1348
|
-
, !- Apply Monday
|
1349
|
-
, !- Apply Tuesday
|
1350
|
-
, !- Apply Wednesday
|
1351
|
-
, !- Apply Thursday
|
1352
|
-
, !- Apply Friday
|
1353
|
-
Yes; !- Apply Saturday
|
1354
|
-
|
1355
|
-
OS:Schedule:Day,
|
1356
|
-
{eafd19d4-e4ae-4975-9d86-56fc38df748c}, !- Handle
|
1357
|
-
Medium Office Cooling Setpoint Saturday Schedule, !- Name
|
1358
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1359
|
-
, !- Interpolate to Timestep
|
1360
|
-
6, !- Hour 1
|
1361
|
-
0, !- Minute 1
|
1362
|
-
26.7, !- Value Until Time 1
|
1363
|
-
18, !- Hour 2
|
1364
|
-
0, !- Minute 2
|
1365
|
-
24, !- Value Until Time 2
|
1366
|
-
24, !- Hour 3
|
1367
|
-
0, !- Minute 3
|
1368
|
-
26.7; !- Value Until Time 3
|
1369
|
-
|
1370
|
-
OS:Schedule:Ruleset,
|
1371
|
-
{d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Handle
|
1372
|
-
Medium Office Heating Setpoint Schedule, !- Name
|
1373
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1374
|
-
{887a72c6-5343-441e-961d-7641a93495dd}, !- Default Day Schedule Name
|
1375
|
-
, !- Summer Design Day Schedule Name
|
1376
|
-
{0cc81ba7-2cb4-4014-bc12-3e55c577deb0}; !- Winter Design Day Schedule Name
|
1377
|
-
|
1378
|
-
OS:Schedule:Day,
|
1379
|
-
{887a72c6-5343-441e-961d-7641a93495dd}, !- Handle
|
1380
|
-
Medium Office Heating Setpoint All Other Days Schedule, !- Name
|
1381
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1382
|
-
, !- Interpolate to Timestep
|
1383
|
-
24, !- Hour 1
|
1384
|
-
0, !- Minute 1
|
1385
|
-
15.6; !- Value Until Time 1
|
1386
|
-
|
1387
|
-
OS:Schedule:Day,
|
1388
|
-
{0cb35b54-5636-41cc-8e23-4b38e5f98f70}, !- Handle
|
1389
|
-
Medium Office Heating Setpoint Winter Design Day Schedule, !- Name
|
1390
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1391
|
-
, !- Interpolate to Timestep
|
1392
|
-
24, !- Hour 1
|
1393
|
-
0, !- Minute 1
|
1394
|
-
21; !- Value Until Time 1
|
1395
|
-
|
1396
|
-
OS:Schedule:Day,
|
1397
|
-
{0cc81ba7-2cb4-4014-bc12-3e55c577deb0}, !- Handle
|
1398
|
-
Medium Office Heating Setpoint Winter Design Day Schedule 1, !- Name
|
1399
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1400
|
-
, !- Interpolate to Timestep
|
1401
|
-
24, !- Hour 1
|
1402
|
-
0, !- Minute 1
|
1403
|
-
21; !- Value Until Time 1
|
1404
|
-
|
1405
|
-
OS:Schedule:Rule,
|
1406
|
-
{0eb310a1-12bc-46a8-a645-5fbae689edf8}, !- Handle
|
1407
|
-
Medium Office Heating Setpoint Schedule Weekdays Rule, !- Name
|
1408
|
-
{d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Schedule Ruleset Name
|
1409
|
-
1, !- Rule Order
|
1410
|
-
{2a7922b3-0ec5-491d-a8c3-38b0af6b6fa0}, !- Day Schedule Name
|
1411
|
-
, !- Apply Sunday
|
1412
|
-
Yes, !- Apply Monday
|
1413
|
-
Yes, !- Apply Tuesday
|
1414
|
-
Yes, !- Apply Wednesday
|
1415
|
-
Yes, !- Apply Thursday
|
1416
|
-
Yes; !- Apply Friday
|
1417
|
-
|
1418
|
-
OS:Schedule:Day,
|
1419
|
-
{2a7922b3-0ec5-491d-a8c3-38b0af6b6fa0}, !- Handle
|
1420
|
-
Medium Office Heating Setpoint Weekdays Schedule, !- Name
|
1421
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1422
|
-
, !- Interpolate to Timestep
|
1423
|
-
6, !- Hour 1
|
1424
|
-
0, !- Minute 1
|
1425
|
-
15.6, !- Value Until Time 1
|
1426
|
-
22, !- Hour 2
|
1427
|
-
0, !- Minute 2
|
1428
|
-
21, !- Value Until Time 2
|
1429
|
-
24, !- Hour 3
|
1430
|
-
0, !- Minute 3
|
1431
|
-
15.6; !- Value Until Time 3
|
1432
|
-
|
1433
|
-
OS:Schedule:Rule,
|
1434
|
-
{a86910b6-5b04-4868-9a70-7eba180d0706}, !- Handle
|
1435
|
-
Medium Office Heating Setpoint Schedule Saturday Rule, !- Name
|
1436
|
-
{d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Schedule Ruleset Name
|
1437
|
-
0, !- Rule Order
|
1438
|
-
{b41e5d08-c913-43f6-aa39-0967e399b681}, !- Day Schedule Name
|
1439
|
-
, !- Apply Sunday
|
1440
|
-
, !- Apply Monday
|
1441
|
-
, !- Apply Tuesday
|
1442
|
-
, !- Apply Wednesday
|
1443
|
-
, !- Apply Thursday
|
1444
|
-
, !- Apply Friday
|
1445
|
-
Yes; !- Apply Saturday
|
1446
|
-
|
1447
|
-
OS:Schedule:Day,
|
1448
|
-
{b41e5d08-c913-43f6-aa39-0967e399b681}, !- Handle
|
1449
|
-
Medium Office Heating Setpoint Saturday Schedule, !- Name
|
1450
|
-
{5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name
|
1451
|
-
, !- Interpolate to Timestep
|
1452
|
-
6, !- Hour 1
|
1453
|
-
0, !- Minute 1
|
1454
|
-
15.6, !- Value Until Time 1
|
1455
|
-
18, !- Hour 2
|
1456
|
-
0, !- Minute 2
|
1457
|
-
21, !- Value Until Time 2
|
1458
|
-
24, !- Hour 3
|
1459
|
-
0, !- Minute 3
|
1460
|
-
15.6; !- Value Until Time 3
|
1461
|
-
|
1462
|
-
OS:DefaultConstructionSet,
|
1463
|
-
{c50911a9-e76e-4759-bb87-25716b1a78da}, !- Handle
|
1464
|
-
Default Constructions, !- Name
|
1465
|
-
{fc66023b-7db0-4a01-85ee-dcbb644dea02}, !- Default Exterior Surface Constructions Name
|
1466
|
-
{120c6117-aade-4d6a-843e-e619187441d6}, !- Default Interior Surface Constructions Name
|
1467
|
-
{a70921cd-dee0-4c00-9621-9d357557fc17}, !- Default Ground Contact Surface Constructions Name
|
1468
|
-
{e69fe22a-82bb-4ce9-ab85-ccce546c3867}, !- Default Exterior SubSurface Constructions Name
|
1469
|
-
{e0614ef6-411f-4119-b2f0-8bbdf663fc8d}, !- Default Interior SubSurface Constructions Name
|
1470
|
-
{b2cbb0ea-6535-4d3c-956b-742c1f3ae382}, !- Interior Partition Construction Name
|
1471
|
-
, !- Space Shading Construction Name
|
1472
|
-
, !- Building Shading Construction Name
|
1473
|
-
; !- Site Shading Construction Name
|
1474
|
-
|
1475
|
-
OS:DefaultSurfaceConstructions,
|
1476
|
-
{fc66023b-7db0-4a01-85ee-dcbb644dea02}, !- Handle
|
1477
|
-
Exterior Surface Constructions, !- Name
|
1478
|
-
, !- Floor Construction Name
|
1479
|
-
{caa58376-d24d-4bc4-8d0f-3a92bce53f09}, !- Wall Construction Name
|
1480
|
-
{78a76174-c95d-4b69-8a5f-7815517db3f6}; !- Roof Ceiling Construction Name
|
1481
|
-
|
1482
|
-
OS:DefaultSurfaceConstructions,
|
1483
|
-
{120c6117-aade-4d6a-843e-e619187441d6}, !- Handle
|
1484
|
-
Interior Surface Constructions, !- Name
|
1485
|
-
{7f836c9e-0a6c-47d4-b85a-9dae019d8019}, !- Floor Construction Name
|
1486
|
-
{56743cf8-5bbe-469c-a829-251ef9d4912a}, !- Wall Construction Name
|
1487
|
-
{c42029ff-8c7f-4804-8017-d32191580342}; !- Roof Ceiling Construction Name
|
1488
|
-
|
1489
|
-
OS:DefaultSurfaceConstructions,
|
1490
|
-
{a70921cd-dee0-4c00-9621-9d357557fc17}, !- Handle
|
1491
|
-
Ground Contact Surface Constructions, !- Name
|
1492
|
-
{0a92b73e-9d8f-4ee2-b899-8055c9924bd1}, !- Floor Construction Name
|
1493
|
-
, !- Wall Construction Name
|
1494
|
-
; !- Roof Ceiling Construction Name
|
1495
|
-
|
1496
|
-
OS:DefaultSubSurfaceConstructions,
|
1497
|
-
{e69fe22a-82bb-4ce9-ab85-ccce546c3867}, !- Handle
|
1498
|
-
Exterior SubSurface Constructions, !- Name
|
1499
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Fixed Window Construction Name
|
1500
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Operable Window Construction Name
|
1501
|
-
{c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Door Construction Name
|
1502
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Glass Door Construction Name
|
1503
|
-
{c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Overhead Door Construction Name
|
1504
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Skylight Construction Name
|
1505
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Tubular Daylight Dome Construction Name
|
1506
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}; !- Tubular Daylight Diffuser Construction Name
|
1507
|
-
|
1508
|
-
OS:DefaultSubSurfaceConstructions,
|
1509
|
-
{e0614ef6-411f-4119-b2f0-8bbdf663fc8d}, !- Handle
|
1510
|
-
Interior SubSurface Constructions, !- Name
|
1511
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Fixed Window Construction Name
|
1512
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Operable Window Construction Name
|
1513
|
-
{d71a482d-3cf7-4558-95f5-bd7d6f6e592c}, !- Door Construction Name
|
1514
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Glass Door Construction Name
|
1515
|
-
{d71a482d-3cf7-4558-95f5-bd7d6f6e592c}, !- Overhead Door Construction Name
|
1516
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Skylight Construction Name
|
1517
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Tubular Daylight Dome Construction Name
|
1518
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}; !- Tubular Daylight Diffuser Construction Name
|
1519
|
-
|
1520
|
-
OS:Material,
|
1521
|
-
{72bec73f-619f-4f5a-815a-a7a76706d6fc}, !- Handle
|
1522
|
-
M01 100mm brick, !- Name
|
1523
|
-
MediumRough, !- Roughness
|
1524
|
-
0.1016, !- Thickness {m}
|
1525
|
-
0.89, !- Conductivity {W/m-K}
|
1526
|
-
1920, !- Density {kg/m3}
|
1527
|
-
790; !- Specific Heat {J/kg-K}
|
1528
|
-
|
1529
|
-
OS:Material,
|
1530
|
-
{ab9b2203-1184-41a7-8759-49f593ef4015}, !- Handle
|
1531
|
-
M15 200mm heavyweight concrete, !- Name
|
1532
|
-
MediumRough, !- Roughness
|
1533
|
-
0.2032, !- Thickness {m}
|
1534
|
-
1.95, !- Conductivity {W/m-K}
|
1535
|
-
2240, !- Density {kg/m3}
|
1536
|
-
900; !- Specific Heat {J/kg-K}
|
1537
|
-
|
1538
|
-
OS:Material,
|
1539
|
-
{a2de9a57-f5c7-4040-a7c3-5e9e783a1f95}, !- Handle
|
1540
|
-
I02 50mm insulation board, !- Name
|
1541
|
-
MediumRough, !- Roughness
|
1542
|
-
0.0508, !- Thickness {m}
|
1543
|
-
0.03, !- Conductivity {W/m-K}
|
1544
|
-
43, !- Density {kg/m3}
|
1545
|
-
1210; !- Specific Heat {J/kg-K}
|
1546
|
-
|
1547
|
-
OS:Material:AirGap,
|
1548
|
-
{17225ec2-56f2-4470-832d-2cd762f99f98}, !- Handle
|
1549
|
-
F04 Wall air space resistance, !- Name
|
1550
|
-
0.15; !- Thermal Resistance {m2-K/W}
|
1551
|
-
|
1552
|
-
OS:Material,
|
1553
|
-
{fd30b7cc-6da0-49fd-a3dd-339962d18610}, !- Handle
|
1554
|
-
G01a 19mm gypsum board, !- Name
|
1555
|
-
MediumSmooth, !- Roughness
|
1556
|
-
0.019, !- Thickness {m}
|
1557
|
-
0.16, !- Conductivity {W/m-K}
|
1558
|
-
800, !- Density {kg/m3}
|
1559
|
-
1090; !- Specific Heat {J/kg-K}
|
1560
|
-
|
1561
|
-
OS:Construction,
|
1562
|
-
{caa58376-d24d-4bc4-8d0f-3a92bce53f09}, !- Handle
|
1563
|
-
Exterior Wall, !- Name
|
1564
|
-
{d4e88be4-9a77-43fc-80eb-2ea58781b0e5}, !- Surface Rendering Name
|
1565
|
-
{72bec73f-619f-4f5a-815a-a7a76706d6fc}, !- Layer 1
|
1566
|
-
{ab9b2203-1184-41a7-8759-49f593ef4015}, !- Layer 2
|
1567
|
-
{a2de9a57-f5c7-4040-a7c3-5e9e783a1f95}, !- Layer 3
|
1568
|
-
{17225ec2-56f2-4470-832d-2cd762f99f98}, !- Layer 4
|
1569
|
-
{fd30b7cc-6da0-49fd-a3dd-339962d18610}; !- Layer 5
|
1570
|
-
|
1571
|
-
OS:StandardsInformation:Construction,
|
1572
|
-
{0fed2599-a9fb-49a7-9f6d-9314e62bc523}, !- Handle
|
1573
|
-
{caa58376-d24d-4bc4-8d0f-3a92bce53f09}, !- Construction Name
|
1574
|
-
, !- Intended Surface Type
|
1575
|
-
, !- Standards Construction Type
|
1576
|
-
2, !- Perturbable Layer
|
1577
|
-
Insulation, !- Perturbable Layer Type
|
1578
|
-
; !- Other Perturbable Layer Type
|
1579
|
-
|
1580
|
-
OS:Material,
|
1581
|
-
{d3f40ebc-0c64-4305-be9c-461c165c927c}, !- Handle
|
1582
|
-
M11 100mm lightweight concrete, !- Name
|
1583
|
-
MediumRough, !- Roughness
|
1584
|
-
0.1016, !- Thickness {m}
|
1585
|
-
0.53, !- Conductivity {W/m-K}
|
1586
|
-
1280, !- Density {kg/m3}
|
1587
|
-
840; !- Specific Heat {J/kg-K}
|
1588
|
-
|
1589
|
-
OS:Material:AirGap,
|
1590
|
-
{d97468f9-8e44-4d52-970a-08af7ade886e}, !- Handle
|
1591
|
-
F05 Ceiling air space resistance, !- Name
|
1592
|
-
0.18; !- Thermal Resistance {m2-K/W}
|
1593
|
-
|
1594
|
-
OS:Material,
|
1595
|
-
{9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}, !- Handle
|
1596
|
-
F16 Acoustic tile, !- Name
|
1597
|
-
MediumSmooth, !- Roughness
|
1598
|
-
0.0191, !- Thickness {m}
|
1599
|
-
0.06, !- Conductivity {W/m-K}
|
1600
|
-
368, !- Density {kg/m3}
|
1601
|
-
590; !- Specific Heat {J/kg-K}
|
1602
|
-
|
1603
|
-
OS:Construction,
|
1604
|
-
{78a76174-c95d-4b69-8a5f-7815517db3f6}, !- Handle
|
1605
|
-
Exterior Roof, !- Name
|
1606
|
-
{7ed533ab-d2c5-446a-af4f-b67887144c63}, !- Surface Rendering Name
|
1607
|
-
{d3f40ebc-0c64-4305-be9c-461c165c927c}, !- Layer 1
|
1608
|
-
{d97468f9-8e44-4d52-970a-08af7ade886e}, !- Layer 2
|
1609
|
-
{9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}; !- Layer 3
|
1610
|
-
|
1611
|
-
OS:Construction,
|
1612
|
-
{7f836c9e-0a6c-47d4-b85a-9dae019d8019}, !- Handle
|
1613
|
-
Interior Floor, !- Name
|
1614
|
-
{138f7fb4-4dfe-4696-a15e-be8598fe2a8d}, !- Surface Rendering Name
|
1615
|
-
{9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}, !- Layer 1
|
1616
|
-
{d97468f9-8e44-4d52-970a-08af7ade886e}, !- Layer 2
|
1617
|
-
{d3f40ebc-0c64-4305-be9c-461c165c927c}; !- Layer 3
|
1618
|
-
|
1619
|
-
OS:Material:AirWall,
|
1620
|
-
{73967d5f-7741-4476-bebf-3784750f9b5c}, !- Handle
|
1621
|
-
Air Wall Material; !- Name
|
1622
|
-
|
1623
|
-
OS:Construction,
|
1624
|
-
{56743cf8-5bbe-469c-a829-251ef9d4912a}, !- Handle
|
1625
|
-
Air Wall, !- Name
|
1626
|
-
{a2d1a3ed-5888-42c2-85a7-2f9aa5483155}, !- Surface Rendering Name
|
1627
|
-
{73967d5f-7741-4476-bebf-3784750f9b5c}; !- Layer 1
|
1628
|
-
|
1629
|
-
OS:Construction,
|
1630
|
-
{c42029ff-8c7f-4804-8017-d32191580342}, !- Handle
|
1631
|
-
Interior Ceiling, !- Name
|
1632
|
-
{09b90351-0e81-4a77-8c56-c316ddbf06cf}, !- Surface Rendering Name
|
1633
|
-
{d3f40ebc-0c64-4305-be9c-461c165c927c}, !- Layer 1
|
1634
|
-
{d97468f9-8e44-4d52-970a-08af7ade886e}, !- Layer 2
|
1635
|
-
{9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}; !- Layer 3
|
1636
|
-
|
1637
|
-
OS:Material,
|
1638
|
-
{04df09a4-6cce-45c6-93bf-727fc3628b8b}, !- Handle
|
1639
|
-
MAT-CC05 8 HW CONCRETE, !- Name
|
1640
|
-
Rough, !- Roughness
|
1641
|
-
0.2032, !- Thickness {m}
|
1642
|
-
1.311, !- Conductivity {W/m-K}
|
1643
|
-
2240, !- Density {kg/m3}
|
1644
|
-
836.8, !- Specific Heat {J/kg-K}
|
1645
|
-
0.9, !- Thermal Absorptance
|
1646
|
-
0.7, !- Solar Absorptance
|
1647
|
-
0.7; !- Visible Absorptance
|
1648
|
-
|
1649
|
-
OS:Material:NoMass,
|
1650
|
-
{6a1562f0-e9fb-4f1e-bf01-9a3fe6339dd6}, !- Handle
|
1651
|
-
CP02 CARPET PAD, !- Name
|
1652
|
-
VeryRough, !- Roughness
|
1653
|
-
0.2165, !- Thermal Resistance {m2-K/W}
|
1654
|
-
0.9, !- Thermal Absorptance
|
1655
|
-
0.7, !- Solar Absorptance
|
1656
|
-
0.8; !- Visible Absorptance
|
1657
|
-
|
1658
|
-
OS:Construction,
|
1659
|
-
{0a92b73e-9d8f-4ee2-b899-8055c9924bd1}, !- Handle
|
1660
|
-
Slab, !- Name
|
1661
|
-
{d090e440-e24b-45b8-947a-65afb64a374e}, !- Surface Rendering Name
|
1662
|
-
{04df09a4-6cce-45c6-93bf-727fc3628b8b}, !- Layer 1
|
1663
|
-
{6a1562f0-e9fb-4f1e-bf01-9a3fe6339dd6}; !- Layer 2
|
1664
|
-
|
1665
|
-
OS:WindowMaterial:SimpleGlazingSystem,
|
1666
|
-
{72ea4c49-7c50-42ee-ac0f-58c3648c5cd3}, !- Handle
|
1667
|
-
Simple Glazing, !- Name
|
1668
|
-
3.23646, !- U-Factor {W/m2-K}
|
1669
|
-
0.39, !- Solar Heat Gain Coefficient
|
1670
|
-
0.6; !- Visible Transmittance
|
1671
|
-
|
1672
|
-
OS:WindowMaterial:Glazing,
|
1673
|
-
{d6d337d7-3a8e-49dd-9d7b-c6aedf22968b}, !- Handle
|
1674
|
-
Clear 3mm, !- Name
|
1675
|
-
SpectralAverage, !- Optical Data Type
|
1676
|
-
, !- Window Glass Spectral Data Set Name
|
1677
|
-
0.003, !- Thickness {m}
|
1678
|
-
0.837, !- Solar Transmittance at Normal Incidence
|
1679
|
-
0.075, !- Front Side Solar Reflectance at Normal Incidence
|
1680
|
-
0.075, !- Back Side Solar Reflectance at Normal Incidence
|
1681
|
-
0.898, !- Visible Transmittance at Normal Incidence
|
1682
|
-
0.081, !- Front Side Visible Reflectance at Normal Incidence
|
1683
|
-
0.081, !- Back Side Visible Reflectance at Normal Incidence
|
1684
|
-
0, !- Infrared Transmittance at Normal Incidence
|
1685
|
-
0.084, !- Front Side Infrared Hemispherical Emissivity
|
1686
|
-
0.084, !- Back Side Infrared Hemispherical Emissivity
|
1687
|
-
0.9; !- Conductivity {W/m-K}
|
1688
|
-
|
1689
|
-
OS:WindowMaterial:Gas,
|
1690
|
-
{29cfecae-4a35-445c-aad0-8f4fe9ff0931}, !- Handle
|
1691
|
-
Air 13mm, !- Name
|
1692
|
-
Air, !- Gas Type
|
1693
|
-
0.0127; !- Thickness {m}
|
1694
|
-
|
1695
|
-
OS:Construction,
|
1696
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Handle
|
1697
|
-
Exterior Window, !- Name
|
1698
|
-
{d89c5c41-3b3e-45da-bf93-ae5158b956c0}, !- Surface Rendering Name
|
1699
|
-
{72ea4c49-7c50-42ee-ac0f-58c3648c5cd3}; !- Layer 1
|
1700
|
-
|
1701
|
-
OS:Material,
|
1702
|
-
{31195528-8bd0-4708-94e9-c9e7590889a8}, !- Handle
|
1703
|
-
F08 Metal surface, !- Name
|
1704
|
-
Smooth, !- Roughness
|
1705
|
-
0.0008, !- Thickness {m}
|
1706
|
-
45.28, !- Conductivity {W/m-K}
|
1707
|
-
7824, !- Density {kg/m3}
|
1708
|
-
500; !- Specific Heat {J/kg-K}
|
1709
|
-
|
1710
|
-
OS:Material,
|
1711
|
-
{ee1f1620-a09d-4201-abf8-01b8eaed9b1a}, !- Handle
|
1712
|
-
I02 25mm insulation board, !- Name
|
1713
|
-
MediumRough, !- Roughness
|
1714
|
-
0.0254, !- Thickness {m}
|
1715
|
-
0.03, !- Conductivity {W/m-K}
|
1716
|
-
43, !- Density {kg/m3}
|
1717
|
-
1210; !- Specific Heat {J/kg-K}
|
1718
|
-
|
1719
|
-
OS:Construction,
|
1720
|
-
{c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Handle
|
1721
|
-
Exterior Door, !- Name
|
1722
|
-
{eecd2ae5-73fb-447f-b519-93c2cca6a10d}, !- Surface Rendering Name
|
1723
|
-
{31195528-8bd0-4708-94e9-c9e7590889a8}, !- Layer 1
|
1724
|
-
{ee1f1620-a09d-4201-abf8-01b8eaed9b1a}; !- Layer 2
|
1725
|
-
|
1726
|
-
OS:StandardsInformation:Construction,
|
1727
|
-
{ff76aeec-55d5-437c-8a1c-05739ffb4d98}, !- Handle
|
1728
|
-
{c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Construction Name
|
1729
|
-
, !- Intended Surface Type
|
1730
|
-
, !- Standards Construction Type
|
1731
|
-
1, !- Perturbable Layer
|
1732
|
-
Insulation, !- Perturbable Layer Type
|
1733
|
-
; !- Other Perturbable Layer Type
|
1734
|
-
|
1735
|
-
OS:Construction,
|
1736
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Handle
|
1737
|
-
Interior Window, !- Name
|
1738
|
-
{98a4e8f8-d9c5-499b-8176-8e592cf37a08}, !- Surface Rendering Name
|
1739
|
-
{72ea4c49-7c50-42ee-ac0f-58c3648c5cd3}; !- Layer 1
|
1740
|
-
|
1741
|
-
OS:Material,
|
1742
|
-
{05430c9e-caa2-4112-b720-c934f43f494a}, !- Handle
|
1743
|
-
G05 25mm wood, !- Name
|
1744
|
-
MediumSmooth, !- Roughness
|
1745
|
-
0.0254, !- Thickness {m}
|
1746
|
-
0.15, !- Conductivity {W/m-K}
|
1747
|
-
608, !- Density {kg/m3}
|
1748
|
-
1630; !- Specific Heat {J/kg-K}
|
1749
|
-
|
1750
|
-
OS:Construction,
|
1751
|
-
{d71a482d-3cf7-4558-95f5-bd7d6f6e592c}, !- Handle
|
1752
|
-
Interior Door, !- Name
|
1753
|
-
{df4df159-45b7-4ba4-ae80-f5dc6e785621}, !- Surface Rendering Name
|
1754
|
-
{05430c9e-caa2-4112-b720-c934f43f494a}; !- Layer 1
|
1755
|
-
|
1756
|
-
OS:Construction,
|
1757
|
-
{b2cbb0ea-6535-4d3c-956b-742c1f3ae382}, !- Handle
|
1758
|
-
Interior Partition, !- Name
|
1759
|
-
{baf298f0-082b-45e8-bdfc-11b49b435d0e}, !- Surface Rendering Name
|
1760
|
-
{05430c9e-caa2-4112-b720-c934f43f494a}; !- Layer 1
|
1761
|
-
|
1762
|
-
OS:SpaceType,
|
1763
|
-
{53148cd3-f7e8-45bd-becf-46361d6848b4}, !- Handle
|
1764
|
-
office, !- Name
|
1765
|
-
, !- Default Construction Set Name
|
1766
|
-
, !- Default Schedule Set Name
|
1767
|
-
{8a5091f9-381f-4a4b-b5cb-353801cfb21f}, !- Group Rendering Name
|
1768
|
-
, !- Design Specification Outdoor Air Object Name
|
1769
|
-
90.1-2010, !- Standards Template
|
1770
|
-
Office, !- Standards Building Type
|
1771
|
-
ClosedOffice; !- Standards Space Type
|
1772
|
-
|
1773
|
-
OS:Lights:Definition,
|
1774
|
-
{30077710-ec09-456a-b5ce-93ac9d61937b}, !- Handle
|
1775
|
-
Lights Definition 1, !- Name
|
1776
|
-
Watts/Area, !- Design Level Calculation Method
|
1777
|
-
, !- Lighting Level {W}
|
1778
|
-
10, !- Watts per Space Floor Area {W/m2}
|
1779
|
-
; !- Watts per Person {W/person}
|
1780
|
-
|
1781
|
-
OS:Lights,
|
1782
|
-
{710408f1-1eae-4bc7-bf4e-3e291fa83250}, !- Handle
|
1783
|
-
Lights 1, !- Name
|
1784
|
-
{30077710-ec09-456a-b5ce-93ac9d61937b}, !- Lights Definition Name
|
1785
|
-
{53148cd3-f7e8-45bd-becf-46361d6848b4}; !- Space or SpaceType Name
|
1786
|
-
|
1787
|
-
OS:ElectricEquipment:Definition,
|
1788
|
-
{81ac9d51-674f-4237-ac5b-9794852c4818}, !- Handle
|
1789
|
-
Electric Equipment Definition 1, !- Name
|
1790
|
-
Watts/Area, !- Design Level Calculation Method
|
1791
|
-
, !- Design Level {W}
|
1792
|
-
5, !- Watts per Space Floor Area {W/m2}
|
1793
|
-
; !- Watts per Person {W/person}
|
1794
|
-
|
1795
|
-
OS:ElectricEquipment,
|
1796
|
-
{cfa7e0fa-432f-4ade-a4e8-519952211967}, !- Handle
|
1797
|
-
Electric Equipment 1, !- Name
|
1798
|
-
{81ac9d51-674f-4237-ac5b-9794852c4818}, !- Electric Equipment Definition Name
|
1799
|
-
{53148cd3-f7e8-45bd-becf-46361d6848b4}; !- Space or SpaceType Name
|
1800
|
-
|
1801
|
-
OS:People:Definition,
|
1802
|
-
{bcb05790-a158-4873-83c3-02b2a95727c8}, !- Handle
|
1803
|
-
People Definition 1, !- Name
|
1804
|
-
People/Area, !- Number of People Calculation Method
|
1805
|
-
, !- Number of People {people}
|
1806
|
-
0.05, !- People per Space Floor Area {person/m2}
|
1807
|
-
, !- Space Floor Area per Person {m2/person}
|
1808
|
-
0.3; !- Fraction Radiant
|
1809
|
-
|
1810
|
-
OS:People,
|
1811
|
-
{07bd4014-90b9-470c-8747-a0e7c7f74cb2}, !- Handle
|
1812
|
-
People 1, !- Name
|
1813
|
-
{bcb05790-a158-4873-83c3-02b2a95727c8}, !- People Definition Name
|
1814
|
-
{53148cd3-f7e8-45bd-becf-46361d6848b4}; !- Space or SpaceType Name
|
1815
|
-
|
1816
|
-
OS:Facility,
|
1817
|
-
{a6468ea3-4188-4667-86f7-1a35b777f6ce}; !- Handle
|
1818
|
-
|
1819
|
-
OS:ThermalZone,
|
1820
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Handle
|
1821
|
-
Thermal Zone 1, !- Name
|
1822
|
-
, !- Multiplier
|
1823
|
-
, !- Ceiling Height {m}
|
1824
|
-
, !- Volume {m3}
|
1825
|
-
, !- Floor Area {m2}
|
1826
|
-
, !- Zone Inside Convection Algorithm
|
1827
|
-
, !- Zone Outside Convection Algorithm
|
1828
|
-
, !- Zone Conditioning Equipment List Name
|
1829
|
-
{3c07bf71-fc6c-47ee-ba46-40685d96292e}, !- Zone Air Inlet Port List
|
1830
|
-
{57e66df3-c877-44bc-8c28-bbbbe6a5aa99}, !- Zone Air Exhaust Port List
|
1831
|
-
{22759e45-ecec-4674-a7c5-20aa0a1c6ed5}, !- Zone Air Node Name
|
1832
|
-
{eaa183fb-a360-4eef-bf5f-1ea448f30985}, !- Zone Return Air Port List
|
1833
|
-
{13334f98-3e2e-46d8-a8f7-04e3c85f6dc1}, !- Primary Daylighting Control Name
|
1834
|
-
0.25, !- Fraction of Zone Controlled by Primary Daylighting Control
|
1835
|
-
, !- Secondary Daylighting Control Name
|
1836
|
-
, !- Fraction of Zone Controlled by Secondary Daylighting Control
|
1837
|
-
{19f905a0-4942-4cdd-b358-d1dc3c2560e2}, !- Illuminance Map Name
|
1838
|
-
{8639949b-89c2-4014-8d68-b49c10a27bfd}, !- Group Rendering Name
|
1839
|
-
{d0bc7d98-a348-486f-b25d-c89e243627b3}, !- Thermostat Name
|
1840
|
-
No; !- Use Ideal Air Loads
|
1841
|
-
|
1842
|
-
OS:PortList,
|
1843
|
-
{eaa183fb-a360-4eef-bf5f-1ea448f30985}, !- Handle
|
1844
|
-
Port List 1, !- Name
|
1845
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- HVAC Component
|
1846
|
-
{5e7dd03f-e665-4b39-b57e-bca1d58755d5}; !- Port 1
|
1847
|
-
|
1848
|
-
OS:Node,
|
1849
|
-
{c8f96879-cdf7-4609-9169-8f1f813920b7}, !- Handle
|
1850
|
-
Node 1, !- Name
|
1851
|
-
{22759e45-ecec-4674-a7c5-20aa0a1c6ed5}, !- Inlet Port
|
1852
|
-
; !- Outlet Port
|
1853
|
-
|
1854
|
-
OS:Connection,
|
1855
|
-
{22759e45-ecec-4674-a7c5-20aa0a1c6ed5}, !- Handle
|
1856
|
-
Connection 1, !- Name
|
1857
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Source Object
|
1858
|
-
11, !- Outlet Port
|
1859
|
-
{c8f96879-cdf7-4609-9169-8f1f813920b7}, !- Target Object
|
1860
|
-
2; !- Inlet Port
|
1861
|
-
|
1862
|
-
OS:PortList,
|
1863
|
-
{3c07bf71-fc6c-47ee-ba46-40685d96292e}, !- Handle
|
1864
|
-
Port List 3, !- Name
|
1865
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- HVAC Component
|
1866
|
-
{b3d6b5b9-cb43-4f0f-9b7e-ff2b33b7f794}; !- Port 1
|
1867
|
-
|
1868
|
-
OS:PortList,
|
1869
|
-
{57e66df3-c877-44bc-8c28-bbbbe6a5aa99}, !- Handle
|
1870
|
-
Port List 2, !- Name
|
1871
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- HVAC Component
|
1872
|
-
|
1873
|
-
OS:Sizing:Zone,
|
1874
|
-
{1e5b3711-ee35-4ea7-bf3f-eb606c99e312}, !- Handle
|
1875
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Zone or ZoneList Name
|
1876
|
-
SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
|
1877
|
-
14, !- Zone Cooling Design Supply Air Temperature {C}
|
1878
|
-
11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
|
1879
|
-
SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
|
1880
|
-
40, !- Zone Heating Design Supply Air Temperature {C}
|
1881
|
-
11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC}
|
1882
|
-
0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air}
|
1883
|
-
0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air}
|
1884
|
-
, !- Zone Heating Sizing Factor
|
1885
|
-
, !- Zone Cooling Sizing Factor
|
1886
|
-
DesignDay, !- Cooling Design Air Flow Method
|
1887
|
-
, !- Cooling Design Air Flow Rate {m3/s}
|
1888
|
-
, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
|
1889
|
-
, !- Cooling Minimum Air Flow {m3/s}
|
1890
|
-
, !- Cooling Minimum Air Flow Fraction
|
1891
|
-
DesignDay, !- Heating Design Air Flow Method
|
1892
|
-
, !- Heating Design Air Flow Rate {m3/s}
|
1893
|
-
, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
|
1894
|
-
, !- Heating Maximum Air Flow {m3/s}
|
1895
|
-
, !- Heating Maximum Air Flow Fraction
|
1896
|
-
, !- Design Zone Air Distribution Effectiveness in Cooling Mode
|
1897
|
-
, !- Design Zone Air Distribution Effectiveness in Heating Mode
|
1898
|
-
No, !- Account for Dedicated Outdoor Air System
|
1899
|
-
NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy
|
1900
|
-
Autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C}
|
1901
|
-
Autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C}
|
1902
|
-
|
1903
|
-
OS:ZoneHVAC:EquipmentList,
|
1904
|
-
{a3a4ffbe-860b-49d8-b8c6-f4f70dfdef0f}, !- Handle
|
1905
|
-
Zone HVAC Equipment List 1, !- Name
|
1906
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Thermal Zone
|
1907
|
-
, !- Load Distribution Scheme
|
1908
|
-
{e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Zone Equipment 1
|
1909
|
-
1, !- Zone Equipment Cooling Sequence 1
|
1910
|
-
1; !- Zone Equipment Heating or No-Load Sequence 1
|
1911
|
-
|
1912
|
-
OS:ThermostatSetpoint:DualSetpoint,
|
1913
|
-
{d0bc7d98-a348-486f-b25d-c89e243627b3}, !- Handle
|
1914
|
-
Thermostat Setpoint Dual Setpoint 1, !- Name
|
1915
|
-
{d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Heating Setpoint Temperature Schedule Name
|
1916
|
-
{df3e3633-7709-4d03-8b8c-d2380d3bf15c}; !- Cooling Setpoint Temperature Schedule Name
|
1917
|
-
|
1918
|
-
OS:BuildingStory,
|
1919
|
-
{67d37358-1511-4b0b-a14a-17503161c3c7}, !- Handle
|
1920
|
-
Building Story 1, !- Name
|
1921
|
-
0, !- Nominal Z Coordinate {m}
|
1922
|
-
3, !- Nominal Floor to Floor Height {m}
|
1923
|
-
, !- Default Construction Set Name
|
1924
|
-
, !- Default Schedule Set Name
|
1925
|
-
{9ef04724-9b33-4053-b66f-94ef7f280b7d}; !- Group Rendering Name
|
1926
|
-
|
1927
|
-
OS:Space,
|
1928
|
-
{6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Handle
|
1929
|
-
Space 1, !- Name
|
1930
|
-
{e696f18d-b9ee-4d2d-b4b1-b631d0c971a1}, !- Space Type Name
|
1931
|
-
, !- Default Construction Set Name
|
1932
|
-
, !- Default Schedule Set Name
|
1933
|
-
, !- Direction of Relative North {deg}
|
1934
|
-
, !- X Origin {m}
|
1935
|
-
, !- Y Origin {m}
|
1936
|
-
, !- Z Origin {m}
|
1937
|
-
{67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name
|
1938
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name
|
1939
|
-
|
1940
|
-
OS:Surface,
|
1941
|
-
{22af23cf-b9ec-42ee-98b7-36e4f0e93984}, !- Handle
|
1942
|
-
Surface 1, !- Name
|
1943
|
-
Floor, !- Surface Type
|
1944
|
-
, !- Construction Name
|
1945
|
-
{6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name
|
1946
|
-
Ground, !- Outside Boundary Condition
|
1947
|
-
, !- Outside Boundary Condition Object
|
1948
|
-
NoSun, !- Sun Exposure
|
1949
|
-
NoWind, !- Wind Exposure
|
1950
|
-
, !- View Factor to Ground
|
1951
|
-
, !- Number of Vertices
|
1952
|
-
0, 0, 0, !- X,Y,Z Vertex 1 {m}
|
1953
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
1954
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
1955
|
-
10, 0, 0; !- X,Y,Z Vertex 4 {m}
|
1956
|
-
|
1957
|
-
OS:Surface,
|
1958
|
-
{7381f6d1-b203-4da1-aaed-9d5df34c22b3}, !- Handle
|
1959
|
-
Surface 2, !- Name
|
1960
|
-
Wall, !- Surface Type
|
1961
|
-
, !- Construction Name
|
1962
|
-
{6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name
|
1963
|
-
Outdoors, !- Outside Boundary Condition
|
1964
|
-
, !- Outside Boundary Condition Object
|
1965
|
-
SunExposed, !- Sun Exposure
|
1966
|
-
WindExposed, !- Wind Exposure
|
1967
|
-
, !- View Factor to Ground
|
1968
|
-
, !- Number of Vertices
|
1969
|
-
0, 10, 3, !- X,Y,Z Vertex 1 {m}
|
1970
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
1971
|
-
0, 0, 0, !- X,Y,Z Vertex 3 {m}
|
1972
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
1973
|
-
|
1974
|
-
OS:Surface,
|
1975
|
-
{011119f2-d438-4644-baba-3214878e5d4f}, !- Handle
|
1976
|
-
Surface 3, !- Name
|
1977
|
-
Wall, !- Surface Type
|
1978
|
-
, !- Construction Name
|
1979
|
-
{6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name
|
1980
|
-
Surface, !- Outside Boundary Condition
|
1981
|
-
{84c128ac-db9d-4897-9a7f-b41607c1d456}, !- Outside Boundary Condition Object
|
1982
|
-
NoSun, !- Sun Exposure
|
1983
|
-
NoWind, !- Wind Exposure
|
1984
|
-
, !- View Factor to Ground
|
1985
|
-
, !- Number of Vertices
|
1986
|
-
10, 10, 3, !- X,Y,Z Vertex 1 {m}
|
1987
|
-
10, 10, 0, !- X,Y,Z Vertex 2 {m}
|
1988
|
-
0, 10, 0, !- X,Y,Z Vertex 3 {m}
|
1989
|
-
0, 10, 3; !- X,Y,Z Vertex 4 {m}
|
1990
|
-
|
1991
|
-
OS:Surface,
|
1992
|
-
{274f7a42-9a2a-4d32-909c-b8aa58ff2690}, !- Handle
|
1993
|
-
Surface 4, !- Name
|
1994
|
-
Wall, !- Surface Type
|
1995
|
-
, !- Construction Name
|
1996
|
-
{6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name
|
1997
|
-
Surface, !- Outside Boundary Condition
|
1998
|
-
{5d1c7f3c-743f-47ee-81c5-81ab50be3515}, !- Outside Boundary Condition Object
|
1999
|
-
NoSun, !- Sun Exposure
|
2000
|
-
NoWind, !- Wind Exposure
|
2001
|
-
, !- View Factor to Ground
|
2002
|
-
, !- Number of Vertices
|
2003
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2004
|
-
10, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2005
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2006
|
-
10, 10, 3; !- X,Y,Z Vertex 4 {m}
|
2007
|
-
|
2008
|
-
OS:Surface,
|
2009
|
-
{3eaebb79-b2ca-44e2-ba40-9e283fd495f3}, !- Handle
|
2010
|
-
Surface 5, !- Name
|
2011
|
-
Wall, !- Surface Type
|
2012
|
-
, !- Construction Name
|
2013
|
-
{6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name
|
2014
|
-
Outdoors, !- Outside Boundary Condition
|
2015
|
-
, !- Outside Boundary Condition Object
|
2016
|
-
SunExposed, !- Sun Exposure
|
2017
|
-
WindExposed, !- Wind Exposure
|
2018
|
-
, !- View Factor to Ground
|
2019
|
-
, !- Number of Vertices
|
2020
|
-
0, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2021
|
-
0, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2022
|
-
10, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2023
|
-
10, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2024
|
-
|
2025
|
-
OS:Surface,
|
2026
|
-
{af3a1a11-1496-4b51-9cfb-e816119a49b4}, !- Handle
|
2027
|
-
Surface 6, !- Name
|
2028
|
-
RoofCeiling, !- Surface Type
|
2029
|
-
, !- Construction Name
|
2030
|
-
{6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name
|
2031
|
-
Outdoors, !- Outside Boundary Condition
|
2032
|
-
, !- Outside Boundary Condition Object
|
2033
|
-
SunExposed, !- Sun Exposure
|
2034
|
-
WindExposed, !- Wind Exposure
|
2035
|
-
, !- View Factor to Ground
|
2036
|
-
, !- Number of Vertices
|
2037
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2038
|
-
10, 10, 3, !- X,Y,Z Vertex 2 {m}
|
2039
|
-
0, 10, 3, !- X,Y,Z Vertex 3 {m}
|
2040
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2041
|
-
|
2042
|
-
OS:Space,
|
2043
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Handle
|
2044
|
-
Space 2, !- Name
|
2045
|
-
{53148cd3-f7e8-45bd-becf-46361d6848b4}, !- Space Type Name
|
2046
|
-
, !- Default Construction Set Name
|
2047
|
-
, !- Default Schedule Set Name
|
2048
|
-
, !- Direction of Relative North {deg}
|
2049
|
-
10, !- X Origin {m}
|
2050
|
-
, !- Y Origin {m}
|
2051
|
-
, !- Z Origin {m}
|
2052
|
-
{67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name
|
2053
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name
|
2054
|
-
|
2055
|
-
OS:Surface,
|
2056
|
-
{4693b256-3d38-4008-afd8-73c1f9cd15eb}, !- Handle
|
2057
|
-
Surface 7, !- Name
|
2058
|
-
Wall, !- Surface Type
|
2059
|
-
, !- Construction Name
|
2060
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2061
|
-
Surface, !- Outside Boundary Condition
|
2062
|
-
{195d59ee-99a7-4d31-a0f2-1aef7ca742d2}, !- Outside Boundary Condition Object
|
2063
|
-
NoSun, !- Sun Exposure
|
2064
|
-
NoWind, !- Wind Exposure
|
2065
|
-
, !- View Factor to Ground
|
2066
|
-
, !- Number of Vertices
|
2067
|
-
10, 10, 3, !- X,Y,Z Vertex 1 {m}
|
2068
|
-
10, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2069
|
-
0, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2070
|
-
0, 10, 3; !- X,Y,Z Vertex 4 {m}
|
2071
|
-
|
2072
|
-
OS:Surface,
|
2073
|
-
{703c5351-4ea6-4c72-b425-3d1d1bb24b1a}, !- Handle
|
2074
|
-
Surface 8, !- Name
|
2075
|
-
Floor, !- Surface Type
|
2076
|
-
, !- Construction Name
|
2077
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2078
|
-
Ground, !- Outside Boundary Condition
|
2079
|
-
, !- Outside Boundary Condition Object
|
2080
|
-
NoSun, !- Sun Exposure
|
2081
|
-
NoWind, !- Wind Exposure
|
2082
|
-
, !- View Factor to Ground
|
2083
|
-
, !- Number of Vertices
|
2084
|
-
0, 0, 0, !- X,Y,Z Vertex 1 {m}
|
2085
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2086
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2087
|
-
10, 0, 0; !- X,Y,Z Vertex 4 {m}
|
2088
|
-
|
2089
|
-
OS:Surface,
|
2090
|
-
{d5ce5991-4af5-4dc2-9e45-6d12b98fac26}, !- Handle
|
2091
|
-
Surface 9, !- Name
|
2092
|
-
Wall, !- Surface Type
|
2093
|
-
, !- Construction Name
|
2094
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2095
|
-
Outdoors, !- Outside Boundary Condition
|
2096
|
-
, !- Outside Boundary Condition Object
|
2097
|
-
SunExposed, !- Sun Exposure
|
2098
|
-
WindExposed, !- Wind Exposure
|
2099
|
-
, !- View Factor to Ground
|
2100
|
-
, !- Number of Vertices
|
2101
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2102
|
-
10, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2103
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2104
|
-
10, 10, 3; !- X,Y,Z Vertex 4 {m}
|
2105
|
-
|
2106
|
-
OS:Surface,
|
2107
|
-
{bcf1b553-afe1-409e-ba40-c6d170e4f7c4}, !- Handle
|
2108
|
-
Surface 10, !- Name
|
2109
|
-
Wall, !- Surface Type
|
2110
|
-
, !- Construction Name
|
2111
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2112
|
-
Outdoors, !- Outside Boundary Condition
|
2113
|
-
, !- Outside Boundary Condition Object
|
2114
|
-
SunExposed, !- Sun Exposure
|
2115
|
-
WindExposed, !- Wind Exposure
|
2116
|
-
, !- View Factor to Ground
|
2117
|
-
, !- Number of Vertices
|
2118
|
-
0, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2119
|
-
0, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2120
|
-
10, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2121
|
-
10, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2122
|
-
|
2123
|
-
OS:Surface,
|
2124
|
-
{5d1c7f3c-743f-47ee-81c5-81ab50be3515}, !- Handle
|
2125
|
-
Surface 11, !- Name
|
2126
|
-
Wall, !- Surface Type
|
2127
|
-
, !- Construction Name
|
2128
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2129
|
-
Surface, !- Outside Boundary Condition
|
2130
|
-
{274f7a42-9a2a-4d32-909c-b8aa58ff2690}, !- Outside Boundary Condition Object
|
2131
|
-
NoSun, !- Sun Exposure
|
2132
|
-
NoWind, !- Wind Exposure
|
2133
|
-
, !- View Factor to Ground
|
2134
|
-
, !- Number of Vertices
|
2135
|
-
0, 10, 3, !- X,Y,Z Vertex 1 {m}
|
2136
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2137
|
-
0, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2138
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2139
|
-
|
2140
|
-
OS:Surface,
|
2141
|
-
{913b1d62-c555-40e3-9304-82a37ee1e6af}, !- Handle
|
2142
|
-
Surface 12, !- Name
|
2143
|
-
RoofCeiling, !- Surface Type
|
2144
|
-
, !- Construction Name
|
2145
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2146
|
-
Outdoors, !- Outside Boundary Condition
|
2147
|
-
, !- Outside Boundary Condition Object
|
2148
|
-
SunExposed, !- Sun Exposure
|
2149
|
-
WindExposed, !- Wind Exposure
|
2150
|
-
, !- View Factor to Ground
|
2151
|
-
, !- Number of Vertices
|
2152
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2153
|
-
10, 10, 3, !- X,Y,Z Vertex 2 {m}
|
2154
|
-
0, 10, 3, !- X,Y,Z Vertex 3 {m}
|
2155
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2156
|
-
|
2157
|
-
OS:Space,
|
2158
|
-
{49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Handle
|
2159
|
-
Space 3, !- Name
|
2160
|
-
{53148cd3-f7e8-45bd-becf-46361d6848b4}, !- Space Type Name
|
2161
|
-
, !- Default Construction Set Name
|
2162
|
-
, !- Default Schedule Set Name
|
2163
|
-
, !- Direction of Relative North {deg}
|
2164
|
-
, !- X Origin {m}
|
2165
|
-
10, !- Y Origin {m}
|
2166
|
-
, !- Z Origin {m}
|
2167
|
-
{67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name
|
2168
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name
|
2169
|
-
|
2170
|
-
OS:Surface,
|
2171
|
-
{673bbc92-d413-4758-aad9-dd62260ee86f}, !- Handle
|
2172
|
-
Surface 13, !- Name
|
2173
|
-
Wall, !- Surface Type
|
2174
|
-
, !- Construction Name
|
2175
|
-
{49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name
|
2176
|
-
Outdoors, !- Outside Boundary Condition
|
2177
|
-
, !- Outside Boundary Condition Object
|
2178
|
-
SunExposed, !- Sun Exposure
|
2179
|
-
WindExposed, !- Wind Exposure
|
2180
|
-
, !- View Factor to Ground
|
2181
|
-
, !- Number of Vertices
|
2182
|
-
10, 10, 3, !- X,Y,Z Vertex 1 {m}
|
2183
|
-
10, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2184
|
-
0, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2185
|
-
0, 10, 3; !- X,Y,Z Vertex 4 {m}
|
2186
|
-
|
2187
|
-
OS:Surface,
|
2188
|
-
{b3c1322e-596c-4d44-80fa-da896dbe7ecf}, !- Handle
|
2189
|
-
Surface 14, !- Name
|
2190
|
-
Floor, !- Surface Type
|
2191
|
-
, !- Construction Name
|
2192
|
-
{49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name
|
2193
|
-
Ground, !- Outside Boundary Condition
|
2194
|
-
, !- Outside Boundary Condition Object
|
2195
|
-
NoSun, !- Sun Exposure
|
2196
|
-
NoWind, !- Wind Exposure
|
2197
|
-
, !- View Factor to Ground
|
2198
|
-
, !- Number of Vertices
|
2199
|
-
0, 0, 0, !- X,Y,Z Vertex 1 {m}
|
2200
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2201
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2202
|
-
10, 0, 0; !- X,Y,Z Vertex 4 {m}
|
2203
|
-
|
2204
|
-
OS:Surface,
|
2205
|
-
{679605d3-78db-43bd-b0a0-b56e1b02194e}, !- Handle
|
2206
|
-
Surface 15, !- Name
|
2207
|
-
Wall, !- Surface Type
|
2208
|
-
, !- Construction Name
|
2209
|
-
{49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name
|
2210
|
-
Surface, !- Outside Boundary Condition
|
2211
|
-
{4c523c66-c48e-453d-b13f-cf4b5559bdd5}, !- Outside Boundary Condition Object
|
2212
|
-
NoSun, !- Sun Exposure
|
2213
|
-
NoWind, !- Wind Exposure
|
2214
|
-
, !- View Factor to Ground
|
2215
|
-
, !- Number of Vertices
|
2216
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2217
|
-
10, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2218
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2219
|
-
10, 10, 3; !- X,Y,Z Vertex 4 {m}
|
2220
|
-
|
2221
|
-
OS:Surface,
|
2222
|
-
{84c128ac-db9d-4897-9a7f-b41607c1d456}, !- Handle
|
2223
|
-
Surface 16, !- Name
|
2224
|
-
Wall, !- Surface Type
|
2225
|
-
, !- Construction Name
|
2226
|
-
{49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name
|
2227
|
-
Surface, !- Outside Boundary Condition
|
2228
|
-
{011119f2-d438-4644-baba-3214878e5d4f}, !- Outside Boundary Condition Object
|
2229
|
-
NoSun, !- Sun Exposure
|
2230
|
-
NoWind, !- Wind Exposure
|
2231
|
-
, !- View Factor to Ground
|
2232
|
-
, !- Number of Vertices
|
2233
|
-
0, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2234
|
-
0, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2235
|
-
10, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2236
|
-
10, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2237
|
-
|
2238
|
-
OS:Surface,
|
2239
|
-
{eaadee75-b5ac-428c-a722-74a2cc56d2be}, !- Handle
|
2240
|
-
Surface 17, !- Name
|
2241
|
-
Wall, !- Surface Type
|
2242
|
-
, !- Construction Name
|
2243
|
-
{49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name
|
2244
|
-
Outdoors, !- Outside Boundary Condition
|
2245
|
-
, !- Outside Boundary Condition Object
|
2246
|
-
SunExposed, !- Sun Exposure
|
2247
|
-
WindExposed, !- Wind Exposure
|
2248
|
-
, !- View Factor to Ground
|
2249
|
-
, !- Number of Vertices
|
2250
|
-
0, 10, 3, !- X,Y,Z Vertex 1 {m}
|
2251
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2252
|
-
0, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2253
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2254
|
-
|
2255
|
-
OS:Surface,
|
2256
|
-
{52715eef-b40d-4ba5-a0f6-1df31ed1db3c}, !- Handle
|
2257
|
-
Surface 18, !- Name
|
2258
|
-
RoofCeiling, !- Surface Type
|
2259
|
-
, !- Construction Name
|
2260
|
-
{49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name
|
2261
|
-
Outdoors, !- Outside Boundary Condition
|
2262
|
-
, !- Outside Boundary Condition Object
|
2263
|
-
SunExposed, !- Sun Exposure
|
2264
|
-
WindExposed, !- Wind Exposure
|
2265
|
-
, !- View Factor to Ground
|
2266
|
-
, !- Number of Vertices
|
2267
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2268
|
-
10, 10, 3, !- X,Y,Z Vertex 2 {m}
|
2269
|
-
0, 10, 3, !- X,Y,Z Vertex 3 {m}
|
2270
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2271
|
-
|
2272
|
-
OS:Space,
|
2273
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Handle
|
2274
|
-
Space 4, !- Name
|
2275
|
-
{0be3bdbf-9d8c-43fc-9f7e-11fcb4a8c41d}, !- Space Type Name
|
2276
|
-
, !- Default Construction Set Name
|
2277
|
-
, !- Default Schedule Set Name
|
2278
|
-
, !- Direction of Relative North {deg}
|
2279
|
-
10, !- X Origin {m}
|
2280
|
-
10, !- Y Origin {m}
|
2281
|
-
, !- Z Origin {m}
|
2282
|
-
{67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name
|
2283
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name
|
2284
|
-
|
2285
|
-
OS:Surface,
|
2286
|
-
{21bffbe0-051c-4c4f-8a95-3214976c07ba}, !- Handle
|
2287
|
-
Surface 19, !- Name
|
2288
|
-
Wall, !- Surface Type
|
2289
|
-
, !- Construction Name
|
2290
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name
|
2291
|
-
Outdoors, !- Outside Boundary Condition
|
2292
|
-
, !- Outside Boundary Condition Object
|
2293
|
-
SunExposed, !- Sun Exposure
|
2294
|
-
WindExposed, !- Wind Exposure
|
2295
|
-
, !- View Factor to Ground
|
2296
|
-
, !- Number of Vertices
|
2297
|
-
10, 10, 3, !- X,Y,Z Vertex 1 {m}
|
2298
|
-
10, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2299
|
-
0, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2300
|
-
0, 10, 3; !- X,Y,Z Vertex 4 {m}
|
2301
|
-
|
2302
|
-
OS:Surface,
|
2303
|
-
{8e87dde1-a2bc-4a45-84da-bb0e2fcdf28c}, !- Handle
|
2304
|
-
Surface 20, !- Name
|
2305
|
-
Floor, !- Surface Type
|
2306
|
-
, !- Construction Name
|
2307
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name
|
2308
|
-
Ground, !- Outside Boundary Condition
|
2309
|
-
, !- Outside Boundary Condition Object
|
2310
|
-
NoSun, !- Sun Exposure
|
2311
|
-
NoWind, !- Wind Exposure
|
2312
|
-
, !- View Factor to Ground
|
2313
|
-
, !- Number of Vertices
|
2314
|
-
0, 0, 0, !- X,Y,Z Vertex 1 {m}
|
2315
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2316
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2317
|
-
10, 0, 0; !- X,Y,Z Vertex 4 {m}
|
2318
|
-
|
2319
|
-
OS:Surface,
|
2320
|
-
{109d67e5-c5dd-4fbe-b30e-8acd8c0b143e}, !- Handle
|
2321
|
-
Surface 21, !- Name
|
2322
|
-
Wall, !- Surface Type
|
2323
|
-
, !- Construction Name
|
2324
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name
|
2325
|
-
Outdoors, !- Outside Boundary Condition
|
2326
|
-
, !- Outside Boundary Condition Object
|
2327
|
-
SunExposed, !- Sun Exposure
|
2328
|
-
WindExposed, !- Wind Exposure
|
2329
|
-
, !- View Factor to Ground
|
2330
|
-
, !- Number of Vertices
|
2331
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2332
|
-
10, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2333
|
-
10, 10, 0, !- X,Y,Z Vertex 3 {m}
|
2334
|
-
10, 10, 3; !- X,Y,Z Vertex 4 {m}
|
2335
|
-
|
2336
|
-
OS:Surface,
|
2337
|
-
{195d59ee-99a7-4d31-a0f2-1aef7ca742d2}, !- Handle
|
2338
|
-
Surface 22, !- Name
|
2339
|
-
Wall, !- Surface Type
|
2340
|
-
, !- Construction Name
|
2341
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name
|
2342
|
-
Surface, !- Outside Boundary Condition
|
2343
|
-
{4693b256-3d38-4008-afd8-73c1f9cd15eb}, !- Outside Boundary Condition Object
|
2344
|
-
NoSun, !- Sun Exposure
|
2345
|
-
NoWind, !- Wind Exposure
|
2346
|
-
, !- View Factor to Ground
|
2347
|
-
, !- Number of Vertices
|
2348
|
-
0, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2349
|
-
0, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2350
|
-
10, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2351
|
-
10, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2352
|
-
|
2353
|
-
OS:Surface,
|
2354
|
-
{4c523c66-c48e-453d-b13f-cf4b5559bdd5}, !- Handle
|
2355
|
-
Surface 23, !- Name
|
2356
|
-
Wall, !- Surface Type
|
2357
|
-
, !- Construction Name
|
2358
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name
|
2359
|
-
Surface, !- Outside Boundary Condition
|
2360
|
-
{679605d3-78db-43bd-b0a0-b56e1b02194e}, !- Outside Boundary Condition Object
|
2361
|
-
NoSun, !- Sun Exposure
|
2362
|
-
NoWind, !- Wind Exposure
|
2363
|
-
, !- View Factor to Ground
|
2364
|
-
, !- Number of Vertices
|
2365
|
-
0, 10, 3, !- X,Y,Z Vertex 1 {m}
|
2366
|
-
0, 10, 0, !- X,Y,Z Vertex 2 {m}
|
2367
|
-
0, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2368
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2369
|
-
|
2370
|
-
OS:Surface,
|
2371
|
-
{6079c9c7-429c-444c-b8a9-381203519245}, !- Handle
|
2372
|
-
Surface 24, !- Name
|
2373
|
-
RoofCeiling, !- Surface Type
|
2374
|
-
, !- Construction Name
|
2375
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name
|
2376
|
-
Outdoors, !- Outside Boundary Condition
|
2377
|
-
, !- Outside Boundary Condition Object
|
2378
|
-
SunExposed, !- Sun Exposure
|
2379
|
-
WindExposed, !- Wind Exposure
|
2380
|
-
, !- View Factor to Ground
|
2381
|
-
, !- Number of Vertices
|
2382
|
-
10, 0, 3, !- X,Y,Z Vertex 1 {m}
|
2383
|
-
10, 10, 3, !- X,Y,Z Vertex 2 {m}
|
2384
|
-
0, 10, 3, !- X,Y,Z Vertex 3 {m}
|
2385
|
-
0, 0, 3; !- X,Y,Z Vertex 4 {m}
|
2386
|
-
|
2387
|
-
OS:SubSurface,
|
2388
|
-
{b8a61dba-4372-4778-9bdd-0741e12df02a}, !- Handle
|
2389
|
-
Sub Surface 1, !- Name
|
2390
|
-
Door, !- Sub Surface Type
|
2391
|
-
, !- Construction Name
|
2392
|
-
{3eaebb79-b2ca-44e2-ba40-9e283fd495f3}, !- Surface Name
|
2393
|
-
, !- Outside Boundary Condition Object
|
2394
|
-
, !- View Factor to Ground
|
2395
|
-
, !- Shading Control Name
|
2396
|
-
, !- Frame and Divider Name
|
2397
|
-
, !- Multiplier
|
2398
|
-
, !- Number of Vertices
|
2399
|
-
2, 0, 2, !- X,Y,Z Vertex 1 {m}
|
2400
|
-
2, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2401
|
-
4, 0, 0, !- X,Y,Z Vertex 3 {m}
|
2402
|
-
4, 0, 2; !- X,Y,Z Vertex 4 {m}
|
2403
|
-
|
2404
|
-
OS:SubSurface,
|
2405
|
-
{5a049aac-2a12-48aa-9fa5-41acef9697f8}, !- Handle
|
2406
|
-
Sub Surface 2, !- Name
|
2407
|
-
FixedWindow, !- Sub Surface Type
|
2408
|
-
, !- Construction Name
|
2409
|
-
{d5ce5991-4af5-4dc2-9e45-6d12b98fac26}, !- Surface Name
|
2410
|
-
, !- Outside Boundary Condition Object
|
2411
|
-
, !- View Factor to Ground
|
2412
|
-
, !- Shading Control Name
|
2413
|
-
, !- Frame and Divider Name
|
2414
|
-
, !- Multiplier
|
2415
|
-
, !- Number of Vertices
|
2416
|
-
10, 2, 2, !- X,Y,Z Vertex 1 {m}
|
2417
|
-
10, 2, 1, !- X,Y,Z Vertex 2 {m}
|
2418
|
-
10, 8, 1, !- X,Y,Z Vertex 3 {m}
|
2419
|
-
10, 8, 2; !- X,Y,Z Vertex 4 {m}
|
2420
|
-
|
2421
|
-
OS:ShadingSurfaceGroup,
|
2422
|
-
{32353ffc-580f-45a7-a05d-0ceb5913954f}, !- Handle
|
2423
|
-
Shading Surface Group 1, !- Name
|
2424
|
-
Space, !- Shading Surface Type
|
2425
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}; !- Space Name
|
2426
|
-
|
2427
|
-
OS:ShadingSurface,
|
2428
|
-
{ab9757da-a3ce-4da2-81b5-a6a22691c9e7}, !- Handle
|
2429
|
-
Shading Surface 1, !- Name
|
2430
|
-
, !- Construction Name
|
2431
|
-
{32353ffc-580f-45a7-a05d-0ceb5913954f}, !- Shading Surface Group Name
|
2432
|
-
, !- Transmittance Schedule Name
|
2433
|
-
, !- Number of Vertices
|
2434
|
-
10, 8.1, 2.1, !- X,Y,Z Vertex 1 {m}
|
2435
|
-
10, 1.9, 2.1, !- X,Y,Z Vertex 2 {m}
|
2436
|
-
10.55, 1.9, 2.1, !- X,Y,Z Vertex 3 {m}
|
2437
|
-
10.55, 8.1, 2.1; !- X,Y,Z Vertex 4 {m}
|
2438
|
-
|
2439
|
-
OS:Daylighting:Control,
|
2440
|
-
{13334f98-3e2e-46d8-a8f7-04e3c85f6dc1}, !- Handle
|
2441
|
-
Daylighting Control 1, !- Name
|
2442
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2443
|
-
5, !- Position X-Coordinate {m}
|
2444
|
-
5, !- Position Y-Coordinate {m}
|
2445
|
-
1.1; !- Position Z-Coordinate {m}
|
2446
|
-
|
2447
|
-
OS:IlluminanceMap,
|
2448
|
-
{19f905a0-4942-4cdd-b358-d1dc3c2560e2}, !- Handle
|
2449
|
-
Illuminance Map 1, !- Name
|
2450
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2451
|
-
1, !- Origin X-Coordinate {m}
|
2452
|
-
1, !- Origin Y-Coordinate {m}
|
2453
|
-
1.1, !- Origin Z-Coordinate {m}
|
2454
|
-
, !- Psi Rotation Around X-Axis {deg}
|
2455
|
-
, !- Theta Rotation Around Y-Axis {deg}
|
2456
|
-
, !- Phi Rotation Around Z-Axis {deg}
|
2457
|
-
8, !- X Length {m}
|
2458
|
-
, !- Number of X Grid Points
|
2459
|
-
8; !- Y Length {m}
|
2460
|
-
|
2461
|
-
OS:Glare:Sensor,
|
2462
|
-
{1369df70-6cf8-48ee-a6f9-55454898f035}, !- Handle
|
2463
|
-
Glare Sensor 1, !- Name
|
2464
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name
|
2465
|
-
5, !- Position X-Coordinate {m}
|
2466
|
-
5, !- Position Y-Coordinate {m}
|
2467
|
-
1.1; !- Position Z-Coordinate {m}
|
2468
|
-
|
2469
|
-
OS:InteriorPartitionSurfaceGroup,
|
2470
|
-
{53fcbecd-a3a5-4c0f-af43-df64a65764ef}, !- Handle
|
2471
|
-
Interior Partition Surface Group 1, !- Name
|
2472
|
-
{996bd4ee-09ec-49da-adc7-2f7f22db1ae6}; !- Space Name
|
2473
|
-
|
2474
|
-
OS:InteriorPartitionSurface,
|
2475
|
-
{5d940a97-a381-4a64-8b26-2fd683d16384}, !- Handle
|
2476
|
-
Interior Partition Surface 1, !- Name
|
2477
|
-
, !- Construction Name
|
2478
|
-
{53fcbecd-a3a5-4c0f-af43-df64a65764ef}, !- Interior Partition Surface Group Name
|
2479
|
-
, !- Convert to Internal Mass
|
2480
|
-
, !- Surface Area {m2}
|
2481
|
-
, !- Number of Vertices
|
2482
|
-
5, 8, 1, !- X,Y,Z Vertex 1 {m}
|
2483
|
-
5, 6, 1, !- X,Y,Z Vertex 2 {m}
|
2484
|
-
8, 6, 1, !- X,Y,Z Vertex 3 {m}
|
2485
|
-
8, 8, 1; !- X,Y,Z Vertex 4 {m}
|
2486
|
-
|
2487
|
-
OS:ElectricEquipment:Definition,
|
2488
|
-
{37445666-38da-4d13-ab38-3c3656fc1c37}, !- Handle
|
2489
|
-
Printer Definition, !- Name
|
2490
|
-
EquipmentLevel, !- Design Level Calculation Method
|
2491
|
-
200, !- Design Level {W}
|
2492
|
-
, !- Watts per Space Floor Area {W/m2}
|
2493
|
-
; !- Watts per Person {W/person}
|
2494
|
-
|
2495
|
-
OS:ElectricEquipment,
|
2496
|
-
{e7518ed4-26d4-4f92-800d-81e09944a6d0}, !- Handle
|
2497
|
-
Printer, !- Name
|
2498
|
-
{37445666-38da-4d13-ab38-3c3656fc1c37}, !- Electric Equipment Definition Name
|
2499
|
-
{3a7a81ff-50b5-4417-8f8b-0147fba16d67}; !- Space or SpaceType Name
|
2500
|
-
|
2501
|
-
OS:ShadingSurfaceGroup,
|
2502
|
-
{cf35fbd4-5b94-4566-8ff5-0306382ac579}, !- Handle
|
2503
|
-
Shading Surface Group 2, !- Name
|
2504
|
-
Building, !- Shading Surface Type
|
2505
|
-
; !- Space Name
|
2506
|
-
|
2507
|
-
OS:ShadingSurface,
|
2508
|
-
{ba5e2cdb-0021-4458-8627-e301c826d7d9}, !- Handle
|
2509
|
-
Shading Surface 2, !- Name
|
2510
|
-
, !- Construction Name
|
2511
|
-
{cf35fbd4-5b94-4566-8ff5-0306382ac579}, !- Shading Surface Group Name
|
2512
|
-
, !- Transmittance Schedule Name
|
2513
|
-
, !- Number of Vertices
|
2514
|
-
2, 0, 2, !- X,Y,Z Vertex 1 {m}
|
2515
|
-
2, -1, 2, !- X,Y,Z Vertex 2 {m}
|
2516
|
-
4, -1, 2, !- X,Y,Z Vertex 3 {m}
|
2517
|
-
4, 0, 2; !- X,Y,Z Vertex 4 {m}
|
2518
|
-
|
2519
|
-
OS:ShadingSurfaceGroup,
|
2520
|
-
{0b143cd8-e111-438b-9365-6807fc017b9e}, !- Handle
|
2521
|
-
Shading Surface Group 3, !- Name
|
2522
|
-
Site, !- Shading Surface Type
|
2523
|
-
; !- Space Name
|
2524
|
-
|
2525
|
-
OS:ShadingSurface,
|
2526
|
-
{41ba88a8-0cb8-410e-bf1a-3c873cefa86e}, !- Handle
|
2527
|
-
Shading Surface 3, !- Name
|
2528
|
-
, !- Construction Name
|
2529
|
-
{0b143cd8-e111-438b-9365-6807fc017b9e}, !- Shading Surface Group Name
|
2530
|
-
, !- Transmittance Schedule Name
|
2531
|
-
, !- Number of Vertices
|
2532
|
-
-30, 0, 20, !- X,Y,Z Vertex 1 {m}
|
2533
|
-
-30, 0, 0, !- X,Y,Z Vertex 2 {m}
|
2534
|
-
-30, 20, 0, !- X,Y,Z Vertex 3 {m}
|
2535
|
-
-30, 20, 20; !- X,Y,Z Vertex 4 {m}
|
2536
|
-
|
2537
|
-
OS:Schedule:Compact,
|
2538
|
-
{ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Handle
|
2539
|
-
ALWAYS_ON, !- Name
|
2540
|
-
{995b1994-deb2-4ea9-a031-5c4654526dbb}, !- Schedule Type Limits Name
|
2541
|
-
Through: 12/31, !- Field 1
|
2542
|
-
For: AllDays, !- Field 2
|
2543
|
-
Until: 24:00, !- Field 3
|
2544
|
-
1; !- Field 4
|
2545
|
-
|
2546
|
-
OS:Fan:ConstantVolume,
|
2547
|
-
{59bd5da9-ec95-4ef4-a694-d56122eb57c8}, !- Handle
|
2548
|
-
Standard Fan, !- Name
|
2549
|
-
{ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name
|
2550
|
-
, !- Fan Total Efficiency
|
2551
|
-
, !- Pressure Rise {Pa}
|
2552
|
-
AutoSize, !- Maximum Flow Rate {m3/s}
|
2553
|
-
, !- Motor Efficiency
|
2554
|
-
, !- Motor In Airstream Fraction
|
2555
|
-
{db39f946-0d49-4f43-b455-48ec981cc620}, !- Air Inlet Node Name
|
2556
|
-
{3be07c83-a6d2-4ff2-a87f-993944ae42ca}, !- Air Outlet Node Name
|
2557
|
-
; !- End-Use Subcategory
|
2558
|
-
|
2559
|
-
OS:ScheduleTypeLimits,
|
2560
|
-
{995b1994-deb2-4ea9-a031-5c4654526dbb}, !- Handle
|
2561
|
-
OnOff, !- Name
|
2562
|
-
0, !- Lower Limit Value
|
2563
|
-
1, !- Upper Limit Value
|
2564
|
-
Discrete, !- Numeric Type
|
2565
|
-
Availability; !- Unit Type
|
2566
|
-
|
2567
|
-
OS:Coil:Heating:Gas,
|
2568
|
-
{d3bcc350-6fcc-48d2-b70e-18536a02797e}, !- Handle
|
2569
|
-
Coil Heating Gas 1, !- Name
|
2570
|
-
{ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name
|
2571
|
-
0.8, !- Gas Burner Efficiency
|
2572
|
-
AutoSize, !- Nominal Capacity {W}
|
2573
|
-
{cfec8af2-8948-4c46-b386-58515631e01c}, !- Air Inlet Node Name
|
2574
|
-
{4616c6cc-bdb6-4d3e-a2c3-0dfc59f29489}, !- Air Outlet Node Name
|
2575
|
-
, !- Temperature Setpoint Node Name
|
2576
|
-
0, !- Parasitic Electric Load {W}
|
2577
|
-
, !- Part Load Fraction Correlation Curve Name
|
2578
|
-
0; !- Parasitic Gas Load {W}
|
2579
|
-
|
2580
|
-
OS:Curve:Biquadratic,
|
2581
|
-
{40fec692-ed63-4f55-901e-c13c74063739}, !- Handle
|
2582
|
-
Curve Biquadratic 1, !- Name
|
2583
|
-
0.42415, !- Coefficient1 Constant
|
2584
|
-
0.04426, !- Coefficient2 x
|
2585
|
-
-0.00042, !- Coefficient3 x**2
|
2586
|
-
0.00333, !- Coefficient4 y
|
2587
|
-
-8e-005, !- Coefficient5 y**2
|
2588
|
-
-0.00021, !- Coefficient6 x*y
|
2589
|
-
17, !- Minimum Value of x
|
2590
|
-
22, !- Maximum Value of x
|
2591
|
-
13, !- Minimum Value of y
|
2592
|
-
46, !- Maximum Value of y
|
2593
|
-
-1000, !- Minimum Curve Output
|
2594
|
-
1000; !- Maximum Curve Output
|
2595
|
-
|
2596
|
-
OS:Curve:Quadratic,
|
2597
|
-
{82b43c6a-6e37-4b90-834e-f8cba1665253}, !- Handle
|
2598
|
-
Curve Quadratic 1, !- Name
|
2599
|
-
0.77136, !- Coefficient1 Constant
|
2600
|
-
0.34053, !- Coefficient2 x
|
2601
|
-
-0.11088, !- Coefficient3 x**2
|
2602
|
-
0.75918, !- Minimum Value of x
|
2603
|
-
1.13877, !- Maximum Value of x
|
2604
|
-
-1000, !- Minimum Curve Output
|
2605
|
-
1000; !- Maximum Curve Output
|
2606
|
-
|
2607
|
-
OS:Curve:Biquadratic,
|
2608
|
-
{5719ccca-1a04-47b0-b10d-2a65d8e6322c}, !- Handle
|
2609
|
-
Curve Biquadratic 2, !- Name
|
2610
|
-
1.23649, !- Coefficient1 Constant
|
2611
|
-
-0.02431, !- Coefficient2 x
|
2612
|
-
0.00057, !- Coefficient3 x**2
|
2613
|
-
-0.01434, !- Coefficient4 y
|
2614
|
-
0.00063, !- Coefficient5 y**2
|
2615
|
-
-0.00038, !- Coefficient6 x*y
|
2616
|
-
17, !- Minimum Value of x
|
2617
|
-
22, !- Maximum Value of x
|
2618
|
-
0, !- Minimum Value of y
|
2619
|
-
46, !- Maximum Value of y
|
2620
|
-
-1000, !- Minimum Curve Output
|
2621
|
-
1000; !- Maximum Curve Output
|
2622
|
-
|
2623
|
-
OS:Curve:Quadratic,
|
2624
|
-
{02817041-348a-40cf-a190-456fd8128ebb}, !- Handle
|
2625
|
-
Curve Quadratic 2, !- Name
|
2626
|
-
1.2055, !- Coefficient1 Constant
|
2627
|
-
-0.32953, !- Coefficient2 x
|
2628
|
-
0.12308, !- Coefficient3 x**2
|
2629
|
-
0.75918, !- Minimum Value of x
|
2630
|
-
1.13877, !- Maximum Value of x
|
2631
|
-
-1000, !- Minimum Curve Output
|
2632
|
-
1000; !- Maximum Curve Output
|
2633
|
-
|
2634
|
-
OS:Curve:Quadratic,
|
2635
|
-
{d8786894-f31c-4ee9-b6f8-79dd44685dfc}, !- Handle
|
2636
|
-
Curve Quadratic 3, !- Name
|
2637
|
-
0.771, !- Coefficient1 Constant
|
2638
|
-
0.229, !- Coefficient2 x
|
2639
|
-
0, !- Coefficient3 x**2
|
2640
|
-
0, !- Minimum Value of x
|
2641
|
-
1, !- Maximum Value of x
|
2642
|
-
0.71, !- Minimum Curve Output
|
2643
|
-
1; !- Maximum Curve Output
|
2644
|
-
|
2645
|
-
OS:Coil:Cooling:DX:SingleSpeed,
|
2646
|
-
{50f83082-71db-4dac-acfb-03b5a65b2623}, !- Handle
|
2647
|
-
Coil Cooling DX Single Speed 1, !- Name
|
2648
|
-
{ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name
|
2649
|
-
autosize, !- Rated Total Cooling Capacity {W}
|
2650
|
-
autosize, !- Rated Sensible Heat Ratio
|
2651
|
-
3, !- Rated COP {W/W}
|
2652
|
-
autosize, !- Rated Air Flow Rate {m3/s}
|
2653
|
-
773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
|
2654
|
-
{2f2ae158-bdb4-40e9-b592-c1e18ac38331}, !- Air Inlet Node Name
|
2655
|
-
{519e1e26-e03b-48d6-af94-1cafbb7458b3}, !- Air Outlet Node Name
|
2656
|
-
{40fec692-ed63-4f55-901e-c13c74063739}, !- Total Cooling Capacity Function of Temperature Curve Name
|
2657
|
-
{82b43c6a-6e37-4b90-834e-f8cba1665253}, !- Total Cooling Capacity Function of Flow Fraction Curve Name
|
2658
|
-
{5719ccca-1a04-47b0-b10d-2a65d8e6322c}, !- Energy Input Ratio Function of Temperature Curve Name
|
2659
|
-
{02817041-348a-40cf-a190-456fd8128ebb}, !- Energy Input Ratio Function of Flow Fraction Curve Name
|
2660
|
-
{d8786894-f31c-4ee9-b6f8-79dd44685dfc}, !- Part Load Fraction Correlation Curve Name
|
2661
|
-
, !- Nominal Time for Condensate Removal to Begin {s}
|
2662
|
-
, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
|
2663
|
-
, !- Maximum Cycling Rate {cycles/hr}
|
2664
|
-
, !- Latent Capacity Time Constant {s}
|
2665
|
-
, !- Condenser Air Inlet Node Name
|
2666
|
-
AirCooled, !- Condenser Type
|
2667
|
-
0, !- Evaporative Condenser Effectiveness {dimensionless}
|
2668
|
-
Autosize, !- Evaporative Condenser Air Flow Rate {m3/s}
|
2669
|
-
Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W}
|
2670
|
-
0, !- Crankcase Heater Capacity {W}
|
2671
|
-
0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
|
2672
|
-
, !- Supply Water Storage Tank Name
|
2673
|
-
, !- Condensate Collection Water Storage Tank Name
|
2674
|
-
0, !- Basin Heater Capacity {W/K}
|
2675
|
-
10, !- Basin Heater Setpoint Temperature {C}
|
2676
|
-
; !- Basin Heater Operating Schedule Name
|
2677
|
-
|
2678
|
-
OS:EvaporativeCooler:Direct:ResearchSpecial,
|
2679
|
-
{5e05823a-7498-44ba-9122-6160dc938005}, !- Handle
|
2680
|
-
Evaporative Cooler Direct Research Special 1, !- Name
|
2681
|
-
{ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name
|
2682
|
-
1, !- Cooler Effectiveness
|
2683
|
-
0, !- Recirculating Water Pump Power Consumption {W}
|
2684
|
-
Autosize, !- Primary Air Design Flow Rate {m3/s}
|
2685
|
-
{b201c597-5991-47c6-a451-c8c9e15214eb}, !- Air Inlet Node Name
|
2686
|
-
{2fce10f1-d607-4e07-adcb-2af994cc2cce}, !- Air Outlet Node Name
|
2687
|
-
{8608f700-2023-4277-b10a-277f68b863fe}, !- Sensor Node Name
|
2688
|
-
0, !- Drift Loss Fraction
|
2689
|
-
0, !- Blowdown Concentration Ratio
|
2690
|
-
, !- Effectiveness Flow Ratio Modifier Curve Name
|
2691
|
-
0.1, !- Water Pump Power Sizing Factor {W/(m3/s)}
|
2692
|
-
, !- Water Pump Power Modifier Curve Name
|
2693
|
-
-99, !- Evaporative Operation Minimum Drybulb Temperature
|
2694
|
-
99, !- Evaporative Operation Maximum Limit Wetbulb Temperature
|
2695
|
-
99; !- Evaporative Operation Maximum Limit Drybulb Temperature
|
2696
|
-
|
2697
|
-
OS:Node,
|
2698
|
-
{884abca7-842a-4e61-8929-41a57196a537}, !- Handle
|
2699
|
-
Air Terminal Single Duct Uncontrolled 1 Inlet Node, !- Name
|
2700
|
-
{682fd730-3099-4dd6-8a01-149de1dd75e6}, !- Inlet Port
|
2701
|
-
{19e563e7-de58-4aa9-b5b0-1acd603ffbd4}; !- Outlet Port
|
2702
|
-
|
2703
|
-
OS:Connection,
|
2704
|
-
{19e563e7-de58-4aa9-b5b0-1acd603ffbd4}, !- Handle
|
2705
|
-
{937b55b5-2c18-4901-be98-39b0e08b74d2}, !- Name
|
2706
|
-
{884abca7-842a-4e61-8929-41a57196a537}, !- Source Object
|
2707
|
-
3, !- Outlet Port
|
2708
|
-
{e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Target Object
|
2709
|
-
3; !- Inlet Port
|
2710
|
-
|
2711
|
-
OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat,
|
2712
|
-
{e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Handle
|
2713
|
-
Air Terminal Single Duct Uncontrolled 1, !- Name
|
2714
|
-
{ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name
|
2715
|
-
{19e563e7-de58-4aa9-b5b0-1acd603ffbd4}, !- Air Inlet Node Name
|
2716
|
-
{69640d9c-2df1-48e3-a2ed-b7b211e55de2}, !- Air Outlet Node Name
|
2717
|
-
AutoSize; !- Maximum Air Flow Rate {m3/s}
|
2718
|
-
|
2719
|
-
OS:Controller:OutdoorAir,
|
2720
|
-
{d743530d-3a15-487c-b0b4-46b772f1b10f}, !- Handle
|
2721
|
-
Controller Outdoor Air 1, !- Name
|
2722
|
-
, !- Relief Air Outlet Node Name
|
2723
|
-
, !- Return Air Node Name
|
2724
|
-
, !- Mixed Air Node Name
|
2725
|
-
, !- Actuator Node Name
|
2726
|
-
Autosize, !- Minimum Outdoor Air Flow Rate {m3/s}
|
2727
|
-
Autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
|
2728
|
-
NoEconomizer, !- Economizer Control Type
|
2729
|
-
ModulateFlow, !- Economizer Control Action Type
|
2730
|
-
28, !- Economizer Maximum Limit Dry-Bulb Temperature {C}
|
2731
|
-
64000, !- Economizer Maximum Limit Enthalpy {J/kg}
|
2732
|
-
, !- Economizer Maximum Limit Dewpoint Temperature {C}
|
2733
|
-
, !- Electronic Enthalpy Limit Curve Name
|
2734
|
-
-100, !- Economizer Minimum Limit Dry-Bulb Temperature {C}
|
2735
|
-
NoLockout, !- Lockout Type
|
2736
|
-
FixedMinimum, !- Minimum Limit Type
|
2737
|
-
, !- Minimum Outdoor Air Schedule Name
|
2738
|
-
, !- Minimum Fraction of Outdoor Air Schedule Name
|
2739
|
-
, !- Maximum Fraction of Outdoor Air Schedule Name
|
2740
|
-
{754c0891-6e78-483f-854d-39acb1585b96}, !- Controller Mechanical Ventilation
|
2741
|
-
, !- Time of Day Economizer Control Schedule Name
|
2742
|
-
No, !- High Humidity Control
|
2743
|
-
, !- Humidistat Control Zone Name
|
2744
|
-
, !- High Humidity Outdoor Air Flow Ratio
|
2745
|
-
, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
|
2746
|
-
BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type
|
2747
|
-
|
2748
|
-
OS:Controller:MechanicalVentilation,
|
2749
|
-
{754c0891-6e78-483f-854d-39acb1585b96}, !- Handle
|
2750
|
-
Controller Mechanical Ventilation 1, !- Name
|
2751
|
-
{2a10bc52-cb2d-4a4a-a91e-d59204a88546}, !- Availability Schedule
|
2752
|
-
, !- Demand Controlled Ventilation
|
2753
|
-
ZoneSum; !- System Outdoor Air Method
|
2754
|
-
|
2755
|
-
OS:Schedule:Constant,
|
2756
|
-
{2a10bc52-cb2d-4a4a-a91e-d59204a88546}, !- Handle
|
2757
|
-
Always On Discrete, !- Name
|
2758
|
-
{86f21575-3513-4183-a4c6-8da255be4706}, !- Schedule Type Limits Name
|
2759
|
-
1; !- Value
|
2760
|
-
|
2761
|
-
OS:ScheduleTypeLimits,
|
2762
|
-
{86f21575-3513-4183-a4c6-8da255be4706}, !- Handle
|
2763
|
-
Schedule Type Limits 1, !- Name
|
2764
|
-
0, !- Lower Limit Value
|
2765
|
-
1, !- Upper Limit Value
|
2766
|
-
Discrete, !- Numeric Type
|
2767
|
-
Availability; !- Unit Type
|
2768
|
-
|
2769
|
-
OS:AirLoopHVAC:OutdoorAirSystem,
|
2770
|
-
{4557d61c-1de5-4320-bfd0-7554723baf39}, !- Handle
|
2771
|
-
Air Loop HVAC Outdoor Air System 1, !- Name
|
2772
|
-
{d743530d-3a15-487c-b0b4-46b772f1b10f}, !- Controller Name
|
2773
|
-
, !- Outdoor Air Equipment List Name
|
2774
|
-
, !- Availability Manager List Name
|
2775
|
-
{c97556ea-dde0-4318-9c1b-b4115f25a40f}, !- Mixed Air Node Name
|
2776
|
-
{20c8a4a0-98c2-47eb-aa9f-647c7e6c897d}, !- Outdoor Air Stream Node Name
|
2777
|
-
{2d0e1fd4-3eb4-4424-83f1-c9aa38829433}, !- Relief Air Stream Node Name
|
2778
|
-
{842e9e9e-53db-4a42-94d3-24a69a3a8c75}; !- Return Air Stream Node Name
|
2779
|
-
|
2780
|
-
OS:Node,
|
2781
|
-
{1f19e10a-c401-477f-a602-dcf57c9ceadc}, !- Handle
|
2782
|
-
Node 2, !- Name
|
2783
|
-
, !- Inlet Port
|
2784
|
-
{b201c597-5991-47c6-a451-c8c9e15214eb}; !- Outlet Port
|
2785
|
-
|
2786
|
-
OS:Node,
|
2787
|
-
{791c021c-1a50-42dc-a7c0-9d8ee11fa3f4}, !- Handle
|
2788
|
-
Node 3, !- Name
|
2789
|
-
{2d0e1fd4-3eb4-4424-83f1-c9aa38829433}, !- Inlet Port
|
2790
|
-
; !- Outlet Port
|
2791
|
-
|
2792
|
-
OS:Connection,
|
2793
|
-
{2d0e1fd4-3eb4-4424-83f1-c9aa38829433}, !- Handle
|
2794
|
-
Connection 3, !- Name
|
2795
|
-
{4557d61c-1de5-4320-bfd0-7554723baf39}, !- Source Object
|
2796
|
-
7, !- Outlet Port
|
2797
|
-
{791c021c-1a50-42dc-a7c0-9d8ee11fa3f4}, !- Target Object
|
2798
|
-
2; !- Inlet Port
|
2799
|
-
|
2800
|
-
OS:AirLoopHVAC,
|
2801
|
-
{85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Handle
|
2802
|
-
Air Loop HVAC 1, !- Name
|
2803
|
-
, !- Controller List Name
|
2804
|
-
{2a10bc52-cb2d-4a4a-a91e-d59204a88546}, !- Availability Schedule
|
2805
|
-
{51642169-3519-4918-8356-a92078727e63}, !- Availability Manager List Name
|
2806
|
-
AutoSize, !- Design Supply Air Flow Rate {m3/s}
|
2807
|
-
, !- Branch List Name
|
2808
|
-
, !- Connector List Name
|
2809
|
-
{904dbc49-5b4a-45e5-8bbd-e4f75a22607f}, !- Supply Side Inlet Node Name
|
2810
|
-
{16266f96-6637-4945-89cc-89054b9eab85}, !- Demand Side Outlet Node Name
|
2811
|
-
{718e601b-a6a4-4e69-ba90-1c6aeee6daa8}, !- Demand Side Inlet Node A
|
2812
|
-
{2a7e1904-be9e-4447-939d-5ac0f0fdc167}, !- Supply Side Outlet Node A
|
2813
|
-
, !- Demand Side Inlet Node B
|
2814
|
-
, !- Supply Side Outlet Node B
|
2815
|
-
, !- Return Air Bypass Flow Temperature Setpoint Schedule Name
|
2816
|
-
, !- Demand Mixer Name
|
2817
|
-
, !- Demand Splitter A Name
|
2818
|
-
, !- Demand Splitter B Name
|
2819
|
-
; !- Supply Splitter Name
|
2820
|
-
|
2821
|
-
OS:AvailabilityManagerAssignmentList,
|
2822
|
-
{51642169-3519-4918-8356-a92078727e63}, !- Handle
|
2823
|
-
Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name
|
2824
|
-
; !- Availability Manager Name 1
|
2825
|
-
|
2826
|
-
OS:Node,
|
2827
|
-
{d23ccc0d-2206-4d45-ba97-61cd457755fa}, !- Handle
|
2828
|
-
Node 4, !- Name
|
2829
|
-
{904dbc49-5b4a-45e5-8bbd-e4f75a22607f}, !- Inlet Port
|
2830
|
-
{842e9e9e-53db-4a42-94d3-24a69a3a8c75}; !- Outlet Port
|
2831
|
-
|
2832
|
-
OS:Node,
|
2833
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Handle
|
2834
|
-
Node 5, !- Name
|
2835
|
-
{3be07c83-a6d2-4ff2-a87f-993944ae42ca}, !- Inlet Port
|
2836
|
-
{2a7e1904-be9e-4447-939d-5ac0f0fdc167}; !- Outlet Port
|
2837
|
-
|
2838
|
-
OS:Connection,
|
2839
|
-
{904dbc49-5b4a-45e5-8bbd-e4f75a22607f}, !- Handle
|
2840
|
-
Connection 4, !- Name
|
2841
|
-
{85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Source Object
|
2842
|
-
7, !- Outlet Port
|
2843
|
-
{d23ccc0d-2206-4d45-ba97-61cd457755fa}, !- Target Object
|
2844
|
-
2; !- Inlet Port
|
2845
|
-
|
2846
|
-
OS:Connection,
|
2847
|
-
{2a7e1904-be9e-4447-939d-5ac0f0fdc167}, !- Handle
|
2848
|
-
Connection 6, !- Name
|
2849
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Source Object
|
2850
|
-
3, !- Outlet Port
|
2851
|
-
{85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Target Object
|
2852
|
-
10; !- Inlet Port
|
2853
|
-
|
2854
|
-
OS:Node,
|
2855
|
-
{8d9e2b6d-725e-4585-8e45-5a97cd66b910}, !- Handle
|
2856
|
-
Node 6, !- Name
|
2857
|
-
{718e601b-a6a4-4e69-ba90-1c6aeee6daa8}, !- Inlet Port
|
2858
|
-
{1347380a-cfb5-4921-928a-4c1006f4154f}; !- Outlet Port
|
2859
|
-
|
2860
|
-
OS:Node,
|
2861
|
-
{6e246c06-9f03-4c28-8986-7bcd57c0d063}, !- Handle
|
2862
|
-
Node 7, !- Name
|
2863
|
-
{2cee7034-048b-41a7-82e4-1f0b74cb9c27}, !- Inlet Port
|
2864
|
-
{16266f96-6637-4945-89cc-89054b9eab85}; !- Outlet Port
|
2865
|
-
|
2866
|
-
OS:Node,
|
2867
|
-
{50e71686-fad3-44d5-86ce-0dce60e2fdf1}, !- Handle
|
2868
|
-
Node 8, !- Name
|
2869
|
-
{69640d9c-2df1-48e3-a2ed-b7b211e55de2}, !- Inlet Port
|
2870
|
-
{b3d6b5b9-cb43-4f0f-9b7e-ff2b33b7f794}; !- Outlet Port
|
2871
|
-
|
2872
|
-
OS:Connection,
|
2873
|
-
{718e601b-a6a4-4e69-ba90-1c6aeee6daa8}, !- Handle
|
2874
|
-
Connection 7, !- Name
|
2875
|
-
{85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Source Object
|
2876
|
-
9, !- Outlet Port
|
2877
|
-
{8d9e2b6d-725e-4585-8e45-5a97cd66b910}, !- Target Object
|
2878
|
-
2; !- Inlet Port
|
2879
|
-
|
2880
|
-
OS:Connection,
|
2881
|
-
{16266f96-6637-4945-89cc-89054b9eab85}, !- Handle
|
2882
|
-
Connection 8, !- Name
|
2883
|
-
{6e246c06-9f03-4c28-8986-7bcd57c0d063}, !- Source Object
|
2884
|
-
3, !- Outlet Port
|
2885
|
-
{85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Target Object
|
2886
|
-
8; !- Inlet Port
|
2887
|
-
|
2888
|
-
OS:AirLoopHVAC:ZoneSplitter,
|
2889
|
-
{82de5883-47f2-4491-a1b5-7f25cf1c9380}, !- Handle
|
2890
|
-
Air Loop HVAC Zone Splitter 1, !- Name
|
2891
|
-
{1347380a-cfb5-4921-928a-4c1006f4154f}, !- Inlet Node Name
|
2892
|
-
{682fd730-3099-4dd6-8a01-149de1dd75e6}; !- Outlet Node Name 1
|
2893
|
-
|
2894
|
-
OS:AirLoopHVAC:ZoneMixer,
|
2895
|
-
{c7de8071-03fa-4f40-89c0-5044a1d282ac}, !- Handle
|
2896
|
-
Air Loop HVAC Zone Mixer 1, !- Name
|
2897
|
-
{2cee7034-048b-41a7-82e4-1f0b74cb9c27}, !- Outlet Node Name
|
2898
|
-
{383d018b-c1f6-4730-8085-0dfb460481c7}; !- Inlet Node Name 1
|
2899
|
-
|
2900
|
-
OS:Connection,
|
2901
|
-
{1347380a-cfb5-4921-928a-4c1006f4154f}, !- Handle
|
2902
|
-
Connection 9, !- Name
|
2903
|
-
{8d9e2b6d-725e-4585-8e45-5a97cd66b910}, !- Source Object
|
2904
|
-
3, !- Outlet Port
|
2905
|
-
{82de5883-47f2-4491-a1b5-7f25cf1c9380}, !- Target Object
|
2906
|
-
2; !- Inlet Port
|
2907
|
-
|
2908
|
-
OS:Connection,
|
2909
|
-
{2cee7034-048b-41a7-82e4-1f0b74cb9c27}, !- Handle
|
2910
|
-
Connection 12, !- Name
|
2911
|
-
{c7de8071-03fa-4f40-89c0-5044a1d282ac}, !- Source Object
|
2912
|
-
2, !- Outlet Port
|
2913
|
-
{6e246c06-9f03-4c28-8986-7bcd57c0d063}, !- Target Object
|
2914
|
-
2; !- Inlet Port
|
2915
|
-
|
2916
|
-
OS:Sizing:System,
|
2917
|
-
{f1b9f802-8c6d-4c85-8451-75df97621e6e}, !- Handle
|
2918
|
-
{85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- AirLoop Name
|
2919
|
-
Sensible, !- Type of Load to Size On
|
2920
|
-
Autosize, !- Design Outdoor Air Flow Rate {m3/s}
|
2921
|
-
0.3, !- Central Heating Maximum System Air Flow Ratio
|
2922
|
-
7, !- Preheat Design Temperature {C}
|
2923
|
-
0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air}
|
2924
|
-
12.8, !- Precool Design Temperature {C}
|
2925
|
-
0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air}
|
2926
|
-
12.8, !- Central Cooling Design Supply Air Temperature {C}
|
2927
|
-
16.7, !- Central Heating Design Supply Air Temperature {C}
|
2928
|
-
NonCoincident, !- Sizing Option
|
2929
|
-
Yes, !- 100% Outdoor Air in Cooling
|
2930
|
-
Yes, !- 100% Outdoor Air in Heating
|
2931
|
-
0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
|
2932
|
-
0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
|
2933
|
-
DesignDay, !- Cooling Design Air Flow Method
|
2934
|
-
0, !- Cooling Design Air Flow Rate {m3/s}
|
2935
|
-
DesignDay, !- Heating Design Air Flow Method
|
2936
|
-
0, !- Heating Design Air Flow Rate {m3/s}
|
2937
|
-
ZoneSum, !- System Outdoor Air Method
|
2938
|
-
1, !- Zone Maximum Outdoor Air Fraction {dimensionless}
|
2939
|
-
0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
|
2940
|
-
1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
|
2941
|
-
3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
|
2942
|
-
0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
|
2943
|
-
1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate
|
2944
|
-
1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
|
2945
|
-
3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
|
2946
|
-
CoolingDesignCapacity, !- Cooling Design Capacity Method
|
2947
|
-
Autosize, !- Cooling Design Capacity {W}
|
2948
|
-
234.7, !- Cooling Design Capacity Per Floor Area {W/m2}
|
2949
|
-
1, !- Fraction of Autosized Cooling Design Capacity
|
2950
|
-
HeatingDesignCapacity, !- Heating Design Capacity Method
|
2951
|
-
Autosize, !- Heating Design Capacity {W}
|
2952
|
-
157, !- Heating Design Capacity Per Floor Area {W/m2}
|
2953
|
-
1, !- Fraction of Autosized Heating Design Capacity
|
2954
|
-
OnOff; !- Central Cooling Capacity Control Method
|
2955
|
-
|
2956
|
-
OS:Node,
|
2957
|
-
{1f57ab27-7640-49b5-8eb2-d9f55018c20c}, !- Handle
|
2958
|
-
Node 9, !- Name
|
2959
|
-
{5e7dd03f-e665-4b39-b57e-bca1d58755d5}, !- Inlet Port
|
2960
|
-
{383d018b-c1f6-4730-8085-0dfb460481c7}; !- Outlet Port
|
2961
|
-
|
2962
|
-
OS:Connection,
|
2963
|
-
{b3d6b5b9-cb43-4f0f-9b7e-ff2b33b7f794}, !- Handle
|
2964
|
-
Connection 11, !- Name
|
2965
|
-
{50e71686-fad3-44d5-86ce-0dce60e2fdf1}, !- Source Object
|
2966
|
-
3, !- Outlet Port
|
2967
|
-
{3c07bf71-fc6c-47ee-ba46-40685d96292e}, !- Target Object
|
2968
|
-
3; !- Inlet Port
|
2969
|
-
|
2970
|
-
OS:Connection,
|
2971
|
-
{5e7dd03f-e665-4b39-b57e-bca1d58755d5}, !- Handle
|
2972
|
-
Connection 13, !- Name
|
2973
|
-
{eaa183fb-a360-4eef-bf5f-1ea448f30985}, !- Source Object
|
2974
|
-
3, !- Outlet Port
|
2975
|
-
{1f57ab27-7640-49b5-8eb2-d9f55018c20c}, !- Target Object
|
2976
|
-
2; !- Inlet Port
|
2977
|
-
|
2978
|
-
OS:Connection,
|
2979
|
-
{383d018b-c1f6-4730-8085-0dfb460481c7}, !- Handle
|
2980
|
-
Connection 14, !- Name
|
2981
|
-
{1f57ab27-7640-49b5-8eb2-d9f55018c20c}, !- Source Object
|
2982
|
-
3, !- Outlet Port
|
2983
|
-
{c7de8071-03fa-4f40-89c0-5044a1d282ac}, !- Target Object
|
2984
|
-
3; !- Inlet Port
|
2985
|
-
|
2986
|
-
OS:Connection,
|
2987
|
-
{69640d9c-2df1-48e3-a2ed-b7b211e55de2}, !- Handle
|
2988
|
-
Connection 15, !- Name
|
2989
|
-
{e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Source Object
|
2990
|
-
4, !- Outlet Port
|
2991
|
-
{50e71686-fad3-44d5-86ce-0dce60e2fdf1}, !- Target Object
|
2992
|
-
2; !- Inlet Port
|
2993
|
-
|
2994
|
-
OS:Connection,
|
2995
|
-
{3be07c83-a6d2-4ff2-a87f-993944ae42ca}, !- Handle
|
2996
|
-
Connection 16, !- Name
|
2997
|
-
{59bd5da9-ec95-4ef4-a694-d56122eb57c8}, !- Source Object
|
2998
|
-
9, !- Outlet Port
|
2999
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Target Object
|
3000
|
-
2; !- Inlet Port
|
3001
|
-
|
3002
|
-
OS:Node,
|
3003
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Handle
|
3004
|
-
Node 10, !- Name
|
3005
|
-
{4616c6cc-bdb6-4d3e-a2c3-0dfc59f29489}, !- Inlet Port
|
3006
|
-
{db39f946-0d49-4f43-b455-48ec981cc620}; !- Outlet Port
|
3007
|
-
|
3008
|
-
OS:Connection,
|
3009
|
-
{4616c6cc-bdb6-4d3e-a2c3-0dfc59f29489}, !- Handle
|
3010
|
-
Connection 17, !- Name
|
3011
|
-
{d3bcc350-6fcc-48d2-b70e-18536a02797e}, !- Source Object
|
3012
|
-
6, !- Outlet Port
|
3013
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Target Object
|
3014
|
-
2; !- Inlet Port
|
3015
|
-
|
3016
|
-
OS:Connection,
|
3017
|
-
{db39f946-0d49-4f43-b455-48ec981cc620}, !- Handle
|
3018
|
-
Connection 18, !- Name
|
3019
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Source Object
|
3020
|
-
3, !- Outlet Port
|
3021
|
-
{59bd5da9-ec95-4ef4-a694-d56122eb57c8}, !- Target Object
|
3022
|
-
8; !- Inlet Port
|
3023
|
-
|
3024
|
-
OS:Node,
|
3025
|
-
{0e05ee46-f95f-46a5-a8e4-837fe600d21d}, !- Handle
|
3026
|
-
Node 11, !- Name
|
3027
|
-
{519e1e26-e03b-48d6-af94-1cafbb7458b3}, !- Inlet Port
|
3028
|
-
{cfec8af2-8948-4c46-b386-58515631e01c}; !- Outlet Port
|
3029
|
-
|
3030
|
-
OS:Connection,
|
3031
|
-
{519e1e26-e03b-48d6-af94-1cafbb7458b3}, !- Handle
|
3032
|
-
Connection 19, !- Name
|
3033
|
-
{50f83082-71db-4dac-acfb-03b5a65b2623}, !- Source Object
|
3034
|
-
9, !- Outlet Port
|
3035
|
-
{0e05ee46-f95f-46a5-a8e4-837fe600d21d}, !- Target Object
|
3036
|
-
2; !- Inlet Port
|
3037
|
-
|
3038
|
-
OS:Connection,
|
3039
|
-
{cfec8af2-8948-4c46-b386-58515631e01c}, !- Handle
|
3040
|
-
Connection 20, !- Name
|
3041
|
-
{0e05ee46-f95f-46a5-a8e4-837fe600d21d}, !- Source Object
|
3042
|
-
3, !- Outlet Port
|
3043
|
-
{d3bcc350-6fcc-48d2-b70e-18536a02797e}, !- Target Object
|
3044
|
-
5; !- Inlet Port
|
3045
|
-
|
3046
|
-
OS:Node,
|
3047
|
-
{4dd0127a-5588-4ee3-852c-5230a2e0053a}, !- Handle
|
3048
|
-
Node 12, !- Name
|
3049
|
-
{c97556ea-dde0-4318-9c1b-b4115f25a40f}, !- Inlet Port
|
3050
|
-
{2f2ae158-bdb4-40e9-b592-c1e18ac38331}; !- Outlet Port
|
3051
|
-
|
3052
|
-
OS:Connection,
|
3053
|
-
{842e9e9e-53db-4a42-94d3-24a69a3a8c75}, !- Handle
|
3054
|
-
Connection 5, !- Name
|
3055
|
-
{d23ccc0d-2206-4d45-ba97-61cd457755fa}, !- Source Object
|
3056
|
-
3, !- Outlet Port
|
3057
|
-
{4557d61c-1de5-4320-bfd0-7554723baf39}, !- Target Object
|
3058
|
-
8; !- Inlet Port
|
3059
|
-
|
3060
|
-
OS:Connection,
|
3061
|
-
{c97556ea-dde0-4318-9c1b-b4115f25a40f}, !- Handle
|
3062
|
-
Connection 21, !- Name
|
3063
|
-
{4557d61c-1de5-4320-bfd0-7554723baf39}, !- Source Object
|
3064
|
-
5, !- Outlet Port
|
3065
|
-
{4dd0127a-5588-4ee3-852c-5230a2e0053a}, !- Target Object
|
3066
|
-
2; !- Inlet Port
|
3067
|
-
|
3068
|
-
OS:Connection,
|
3069
|
-
{2f2ae158-bdb4-40e9-b592-c1e18ac38331}, !- Handle
|
3070
|
-
Connection 22, !- Name
|
3071
|
-
{4dd0127a-5588-4ee3-852c-5230a2e0053a}, !- Source Object
|
3072
|
-
3, !- Outlet Port
|
3073
|
-
{50f83082-71db-4dac-acfb-03b5a65b2623}, !- Target Object
|
3074
|
-
8; !- Inlet Port
|
3075
|
-
|
3076
|
-
OS:Node,
|
3077
|
-
{8608f700-2023-4277-b10a-277f68b863fe}, !- Handle
|
3078
|
-
Node 14, !- Name
|
3079
|
-
{2fce10f1-d607-4e07-adcb-2af994cc2cce}, !- Inlet Port
|
3080
|
-
{20c8a4a0-98c2-47eb-aa9f-647c7e6c897d}; !- Outlet Port
|
3081
|
-
|
3082
|
-
OS:Connection,
|
3083
|
-
{b201c597-5991-47c6-a451-c8c9e15214eb}, !- Handle
|
3084
|
-
Connection 2, !- Name
|
3085
|
-
{1f19e10a-c401-477f-a602-dcf57c9ceadc}, !- Source Object
|
3086
|
-
3, !- Outlet Port
|
3087
|
-
{5e05823a-7498-44ba-9122-6160dc938005}, !- Target Object
|
3088
|
-
5; !- Inlet Port
|
3089
|
-
|
3090
|
-
OS:Connection,
|
3091
|
-
{2fce10f1-d607-4e07-adcb-2af994cc2cce}, !- Handle
|
3092
|
-
Connection 23, !- Name
|
3093
|
-
{5e05823a-7498-44ba-9122-6160dc938005}, !- Source Object
|
3094
|
-
6, !- Outlet Port
|
3095
|
-
{8608f700-2023-4277-b10a-277f68b863fe}, !- Target Object
|
3096
|
-
2; !- Inlet Port
|
3097
|
-
|
3098
|
-
OS:Connection,
|
3099
|
-
{20c8a4a0-98c2-47eb-aa9f-647c7e6c897d}, !- Handle
|
3100
|
-
Connection 24, !- Name
|
3101
|
-
{8608f700-2023-4277-b10a-277f68b863fe}, !- Source Object
|
3102
|
-
3, !- Outlet Port
|
3103
|
-
{4557d61c-1de5-4320-bfd0-7554723baf39}, !- Target Object
|
3104
|
-
6; !- Inlet Port
|
3105
|
-
|
3106
|
-
OS:SetpointManager:MixedAir,
|
3107
|
-
{96da8eb4-db4b-4d42-8168-da2aa0674c24}, !- Handle
|
3108
|
-
Setpoint Manager Mixed Air 1, !- Name
|
3109
|
-
, !- Control Variable
|
3110
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name
|
3111
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name
|
3112
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name
|
3113
|
-
{4dd0127a-5588-4ee3-852c-5230a2e0053a}; !- Setpoint Node or NodeList Name
|
3114
|
-
|
3115
|
-
OS:SetpointManager:MixedAir,
|
3116
|
-
{ea6f8638-bde4-4e5a-8c23-344afe8e6d08}, !- Handle
|
3117
|
-
Setpoint Manager Mixed Air 2, !- Name
|
3118
|
-
, !- Control Variable
|
3119
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name
|
3120
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name
|
3121
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name
|
3122
|
-
{0e05ee46-f95f-46a5-a8e4-837fe600d21d}; !- Setpoint Node or NodeList Name
|
3123
|
-
|
3124
|
-
OS:SetpointManager:MixedAir,
|
3125
|
-
{19e3f82c-6d69-4fd4-a5ee-15da78882cf9}, !- Handle
|
3126
|
-
Setpoint Manager Mixed Air 3, !- Name
|
3127
|
-
, !- Control Variable
|
3128
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name
|
3129
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name
|
3130
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name
|
3131
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}; !- Setpoint Node or NodeList Name
|
3132
|
-
|
3133
|
-
OS:SetpointManager:MixedAir,
|
3134
|
-
{b099eb55-9ed2-49b7-8647-7d2fb8da8eb2}, !- Handle
|
3135
|
-
Setpoint Manager Mixed Air 4, !- Name
|
3136
|
-
, !- Control Variable
|
3137
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name
|
3138
|
-
{c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name
|
3139
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name
|
3140
|
-
{8608f700-2023-4277-b10a-277f68b863fe}; !- Setpoint Node or NodeList Name
|
3141
|
-
|
3142
|
-
OS:SetpointManager:SingleZone:Reheat,
|
3143
|
-
{22fb0750-e18b-4b79-a2dc-e710c3426b95}, !- Handle
|
3144
|
-
Setpoint Manager Single Zone Reheat 1, !- Name
|
3145
|
-
-99, !- Minimum Supply Air Temperature {C}
|
3146
|
-
99, !- Maximum Supply Air Temperature {C}
|
3147
|
-
{fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Control Zone Name
|
3148
|
-
{d24ce95a-634b-4e5e-8753-e839b4b79dd0}; !- Setpoint Node or NodeList Name
|
3149
|
-
|
3150
|
-
OS:Output:Variable,
|
3151
|
-
{53396c41-2d2b-4372-9510-246eddcf8b43}, !- Handle
|
3152
|
-
Output Variable 1, !- Name
|
3153
|
-
*, !- Key Value
|
3154
|
-
Zone Outdoor Air Drybulb Temperature; !- Variable Name
|
3155
|
-
|
3156
|
-
OS:Output:Variable,
|
3157
|
-
{89a82f45-298f-4938-9c1e-8ca1b201d618}, !- Handle
|
3158
|
-
Output Variable 2, !- Name
|
3159
|
-
*, !- Key Value
|
3160
|
-
Zone Outdoor Air Wetbulb Temperature; !- Variable Name
|
3161
|
-
|
3162
|
-
OS:Output:Variable,
|
3163
|
-
{b6166f3a-2f27-43d9-b9cc-da15c738be6d}, !- Handle
|
3164
|
-
Output Variable 3, !- Name
|
3165
|
-
*, !- Key Value
|
3166
|
-
Surface Inside Face Temperature; !- Variable Name
|
3167
|
-
|
3168
|
-
OS:Output:Variable,
|
3169
|
-
{e6d9045f-4663-48da-bb46-960f812a514c}, !- Handle
|
3170
|
-
Output Variable 4, !- Name
|
3171
|
-
*, !- Key Value
|
3172
|
-
Surface Outside Face Temperature; !- Variable Name
|
3173
|
-
|
3174
|
-
OS:Output:Meter,
|
3175
|
-
{a60ebd85-57b3-471b-a95f-21bda9b0dc8a}, !- Handle
|
3176
|
-
Electricity:Facility, !- Name
|
3177
|
-
Hourly; !- Reporting Frequency
|
3178
|
-
|
3179
|
-
OS:Output:Meter,
|
3180
|
-
{47503b76-9590-4fa7-95f3-d730ed27e9fc}, !- Handle
|
3181
|
-
Gas:Facility, !- Name
|
3182
|
-
Hourly; !- Reporting Frequency
|
3183
|
-
|
3184
|
-
OS:Output:Meter,
|
3185
|
-
{46cc5b2e-bbf7-48a5-9ee1-89b94a4d6cb9}, !- Handle
|
3186
|
-
Propane:Facility, !- Name
|
3187
|
-
Hourly; !- Reporting Frequency
|
3188
|
-
|
3189
|
-
OS:YearDescription,
|
3190
|
-
{cc25c0b7-0a9a-4a68-8068-93a13153fb44}, !- Handle
|
3191
|
-
, !- Calendar Year
|
3192
|
-
Sunday; !- Day of Week for Start Day
|
3193
|
-
|
3194
|
-
OS:RadianceParameters,
|
3195
|
-
{46c82c0e-60d3-4bad-ac61-998576d94182}, !- Handle
|
3196
|
-
1, !- Accumulated Rays per Record
|
3197
|
-
0, !- Direct Threshold
|
3198
|
-
1, !- Direct Certainty
|
3199
|
-
1, !- Direct Jitter
|
3200
|
-
1, !- Direct Pretest
|
3201
|
-
6, !- Ambient Bounces VMX
|
3202
|
-
2, !- Ambient Bounces DMX
|
3203
|
-
4050, !- Ambient Divisions VMX
|
3204
|
-
512, !- Ambient Divisions DMX
|
3205
|
-
256, !- Ambient Supersamples
|
3206
|
-
0.001, !- Limit Weight VMX
|
3207
|
-
0.001, !- Limit Weight DMX
|
3208
|
-
500, !- Klems Sampling Density
|
3209
|
-
146; !- Sky Discretization Resolution
|
3210
|
-
|
3211
|
-
OS:Sizing:Parameters,
|
3212
|
-
{77451c42-cf75-4ea0-b1a9-bdb193b96b0c}, !- Handle
|
3213
|
-
1.25, !- Heating Sizing Factor
|
3214
|
-
1.15; !- Cooling Sizing Factor
|
3215
|
-
|
3216
|
-
OS:ProgramControl,
|
3217
|
-
{807ad925-cc53-445d-aaa2-905a99ddfa0d}; !- Handle
|
3218
|
-
|
3219
|
-
OS:OutputControl:ReportingTolerances,
|
3220
|
-
{3059009e-a46e-45bb-b74a-f0c2b28ff695}; !- Handle
|
3221
|
-
|
3222
|
-
OS:ZoneAirContaminantBalance,
|
3223
|
-
{a72820f2-f7df-417d-b6e8-07787aa81fcb}; !- Handle
|
3224
|
-
|
3225
|
-
OS:ZoneCapacitanceMultiplier:ResearchSpecial,
|
3226
|
-
{d9422987-dfa2-41cd-b95d-410bf94d5db9}, !- Handle
|
3227
|
-
, !- Temperature Capacity Multiplier
|
3228
|
-
, !- Humidity Capacity Multiplier
|
3229
|
-
; !- Carbon Dioxide Capacity Multiplier
|
3230
|
-
|
3231
|
-
OS:RunPeriod,
|
3232
|
-
{eda09313-72c2-4707-b5d5-7df8afcc3ad0}, !- Handle
|
3233
|
-
Run Period 1, !- Name
|
3234
|
-
1, !- Begin Month
|
3235
|
-
1, !- Begin Day of Month
|
3236
|
-
12, !- End Month
|
3237
|
-
31, !- End Day of Month
|
3238
|
-
, !- Use Weather File Holidays and Special Days
|
3239
|
-
, !- Use Weather File Daylight Saving Period
|
3240
|
-
, !- Apply Weekend Holiday Rule
|
3241
|
-
, !- Use Weather File Rain Indicators
|
3242
|
-
, !- Use Weather File Snow Indicators
|
3243
|
-
; !- Number of Times Runperiod to be Repeated
|
3244
|
-
|
3245
|
-
OS:Rendering:Color,
|
3246
|
-
{8a5091f9-381f-4a4b-b5cb-353801cfb21f}, !- Handle
|
3247
|
-
Rendering Color 1, !- Name
|
3248
|
-
240, !- Rendering Red Value
|
3249
|
-
255, !- Rendering Green Value
|
3250
|
-
255; !- Rendering Blue Value
|
3251
|
-
|
3252
|
-
OS:Rendering:Color,
|
3253
|
-
{9ef04724-9b33-4053-b66f-94ef7f280b7d}, !- Handle
|
3254
|
-
Rendering Color 2, !- Name
|
3255
|
-
0, !- Rendering Red Value
|
3256
|
-
0, !- Rendering Green Value
|
3257
|
-
255; !- Rendering Blue Value
|
3258
|
-
|
3259
|
-
OS:Building,
|
3260
|
-
{e11b34af-2bb6-4f16-8082-cbd61ee7679e}, !- Handle
|
3261
|
-
Building 1, !- Name
|
3262
|
-
, !- Building Sector Type
|
3263
|
-
, !- North Axis {deg}
|
3264
|
-
, !- Nominal Floor to Floor Height {m}
|
3265
|
-
{e696f18d-b9ee-4d2d-b4b1-b631d0c971a1}, !- Space Type Name
|
3266
|
-
{c50911a9-e76e-4759-bb87-25716b1a78da}, !- Default Construction Set Name
|
3267
|
-
{530f9623-af4a-491d-9109-39cfa4e2ff70}, !- Default Schedule Set Name
|
3268
|
-
, !- Standards Number of Stories
|
3269
|
-
, !- Standards Number of Above Ground Stories
|
3270
|
-
189.1-2009, !- Standards Template
|
3271
|
-
Hospital; !- Standards Building Type
|
3272
|
-
|
3273
|
-
OS:Connection,
|
3274
|
-
{682fd730-3099-4dd6-8a01-149de1dd75e6}, !- Handle
|
3275
|
-
Connection 10, !- Name
|
3276
|
-
{82de5883-47f2-4491-a1b5-7f25cf1c9380}, !- Source Object
|
3277
|
-
3, !- Outlet Port
|
3278
|
-
{884abca7-842a-4e61-8929-41a57196a537}, !- Target Object
|
3279
|
-
2; !- Inlet Port
|
3280
|
-
|
3281
|
-
OS:ClimateZones,
|
3282
|
-
{5aeca585-b5bb-42b3-b996-1393b2c23169}, !- Handle
|
3283
|
-
, !- Active Institution
|
3284
|
-
, !- Active Year
|
3285
|
-
, !- Climate Zone Institution Name 1
|
3286
|
-
, !- Climate Zone Document Name 1
|
3287
|
-
, !- Climate Zone Document Year 1
|
3288
|
-
, !- Climate Zone Value 1
|
3289
|
-
CEC, !- Climate Zone Institution Name 2
|
3290
|
-
California Climate Zone Descriptions, !- Climate Zone Document Name 2
|
3291
|
-
1995, !- Climate Zone Document Year 2
|
3292
|
-
; !- Climate Zone Value 2
|
3293
|
-
|
3294
|
-
OS:LifeCycleCost:Parameters,
|
3295
|
-
{55badb39-5534-4ca3-ab15-527fd7088c85}, !- Handle
|
3296
|
-
, !- Analysis Type
|
3297
|
-
, !- Discounting Convention
|
3298
|
-
, !- Inflation Approach
|
3299
|
-
, !- Real Discount Rate
|
3300
|
-
, !- Nominal Discount Rate
|
3301
|
-
, !- Inflation
|
3302
|
-
, !- Base Date Month
|
3303
|
-
, !- Base Date Year
|
3304
|
-
, !- Service Date Month
|
3305
|
-
, !- Service Date Year
|
3306
|
-
; !- Length of Study Period in Years
|
3307
|
-
|
3308
|
-
OS:StandardsInformation:Material,
|
3309
|
-
{9254ef44-4a5d-406e-9075-e0695ecc4efe}, !- Handle
|
3310
|
-
{72bec73f-619f-4f5a-815a-a7a76706d6fc}; !- Material Name
|
3311
|
-
|
3312
|
-
OS:StandardsInformation:Material,
|
3313
|
-
{a0b329aa-cad6-42d4-a8f8-c0fe9d4afe47}, !- Handle
|
3314
|
-
{ab9b2203-1184-41a7-8759-49f593ef4015}; !- Material Name
|
3315
|
-
|
3316
|
-
OS:StandardsInformation:Material,
|
3317
|
-
{b393d31d-d5f3-4eba-8e60-c12e84d960a2}, !- Handle
|
3318
|
-
{a2de9a57-f5c7-4040-a7c3-5e9e783a1f95}; !- Material Name
|
3319
|
-
|
3320
|
-
OS:StandardsInformation:Material,
|
3321
|
-
{7795ec5d-cde2-4c42-ae64-3b73f38ab306}, !- Handle
|
3322
|
-
{17225ec2-56f2-4470-832d-2cd762f99f98}; !- Material Name
|
3323
|
-
|
3324
|
-
OS:StandardsInformation:Material,
|
3325
|
-
{007c6d41-bd21-475a-8808-3b0ce36deb9e}, !- Handle
|
3326
|
-
{fd30b7cc-6da0-49fd-a3dd-339962d18610}; !- Material Name
|
3327
|
-
|
3328
|
-
OS:StandardsInformation:Material,
|
3329
|
-
{1f42997a-2875-4103-8650-128690d3d7a0}, !- Handle
|
3330
|
-
{d3f40ebc-0c64-4305-be9c-461c165c927c}; !- Material Name
|
3331
|
-
|
3332
|
-
OS:StandardsInformation:Material,
|
3333
|
-
{4af881ef-4c4e-4b5c-a56b-f2d237dc4953}, !- Handle
|
3334
|
-
{d97468f9-8e44-4d52-970a-08af7ade886e}; !- Material Name
|
3335
|
-
|
3336
|
-
OS:StandardsInformation:Material,
|
3337
|
-
{7bafe5a8-e0d4-4c73-bbca-22b21f7f603b}, !- Handle
|
3338
|
-
{9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}; !- Material Name
|
3339
|
-
|
3340
|
-
OS:StandardsInformation:Construction,
|
3341
|
-
{65066a6b-7858-4324-8950-626d6b5e6e2e}, !- Handle
|
3342
|
-
{78a76174-c95d-4b69-8a5f-7815517db3f6}; !- Construction Name
|
3343
|
-
|
3344
|
-
OS:StandardsInformation:Construction,
|
3345
|
-
{be7e50fa-65ea-4959-9a37-bfaf38bb0b0f}, !- Handle
|
3346
|
-
{7f836c9e-0a6c-47d4-b85a-9dae019d8019}; !- Construction Name
|
3347
|
-
|
3348
|
-
OS:StandardsInformation:Material,
|
3349
|
-
{f2d1b836-2bd5-41b7-b3f9-9b4ae04c9148}, !- Handle
|
3350
|
-
{73967d5f-7741-4476-bebf-3784750f9b5c}; !- Material Name
|
3351
|
-
|
3352
|
-
OS:StandardsInformation:Construction,
|
3353
|
-
{c82f22cc-6d8d-4b50-8efb-a7196af5a42e}, !- Handle
|
3354
|
-
{56743cf8-5bbe-469c-a829-251ef9d4912a}; !- Construction Name
|
3355
|
-
|
3356
|
-
OS:StandardsInformation:Construction,
|
3357
|
-
{8255b7f4-0ba5-44ce-afbd-4cc8e048265f}, !- Handle
|
3358
|
-
{c42029ff-8c7f-4804-8017-d32191580342}; !- Construction Name
|
3359
|
-
|
3360
|
-
OS:StandardsInformation:Material,
|
3361
|
-
{5398b902-61b6-4424-8d3a-1415e3871eaf}, !- Handle
|
3362
|
-
{04df09a4-6cce-45c6-93bf-727fc3628b8b}; !- Material Name
|
3363
|
-
|
3364
|
-
OS:StandardsInformation:Material,
|
3365
|
-
{56015e97-a06f-49d9-b105-2f5fb10b4af8}, !- Handle
|
3366
|
-
{6a1562f0-e9fb-4f1e-bf01-9a3fe6339dd6}; !- Material Name
|
3367
|
-
|
3368
|
-
OS:StandardsInformation:Construction,
|
3369
|
-
{d2836e51-6b3f-4d42-bfd8-d06842bba897}, !- Handle
|
3370
|
-
{0a92b73e-9d8f-4ee2-b899-8055c9924bd1}; !- Construction Name
|
3371
|
-
|
3372
|
-
OS:StandardsInformation:Material,
|
3373
|
-
{5d5e28d3-8f75-4a7e-ad57-56688f190ccd}, !- Handle
|
3374
|
-
{72ea4c49-7c50-42ee-ac0f-58c3648c5cd3}; !- Material Name
|
3375
|
-
|
3376
|
-
OS:StandardsInformation:Material,
|
3377
|
-
{350db53a-2268-43ef-b5f3-a64e255428c6}, !- Handle
|
3378
|
-
{d6d337d7-3a8e-49dd-9d7b-c6aedf22968b}; !- Material Name
|
3379
|
-
|
3380
|
-
OS:StandardsInformation:Material,
|
3381
|
-
{67e0dc84-a7da-42dd-8b79-eea74d48133a}, !- Handle
|
3382
|
-
{29cfecae-4a35-445c-aad0-8f4fe9ff0931}; !- Material Name
|
3383
|
-
|
3384
|
-
OS:StandardsInformation:Construction,
|
3385
|
-
{ec43a500-6d69-4402-83bf-399c6ce660f1}, !- Handle
|
3386
|
-
{b6557f5b-55b5-49cd-ac39-6648022974d0}; !- Construction Name
|
3387
|
-
|
3388
|
-
OS:StandardsInformation:Material,
|
3389
|
-
{a78e6e78-97fd-44c2-8588-80ac4c426cd9}, !- Handle
|
3390
|
-
{31195528-8bd0-4708-94e9-c9e7590889a8}; !- Material Name
|
3391
|
-
|
3392
|
-
OS:StandardsInformation:Material,
|
3393
|
-
{11311747-76b4-4690-8239-c08e94c47c7a}, !- Handle
|
3394
|
-
{ee1f1620-a09d-4201-abf8-01b8eaed9b1a}; !- Material Name
|
3395
|
-
|
3396
|
-
OS:StandardsInformation:Construction,
|
3397
|
-
{f89248df-c068-46cd-a114-1273f6e9ac20}, !- Handle
|
3398
|
-
{e8b31698-c56b-477c-a4ff-0b4afcae51f0}; !- Construction Name
|
3399
|
-
|
3400
|
-
OS:StandardsInformation:Material,
|
3401
|
-
{e0a3a1b6-7b51-49d4-8c41-d031a71693fd}, !- Handle
|
3402
|
-
{05430c9e-caa2-4112-b720-c934f43f494a}; !- Material Name
|
3403
|
-
|
3404
|
-
OS:StandardsInformation:Construction,
|
3405
|
-
{d00a498f-1316-4ed9-af95-0562adee6978}, !- Handle
|
3406
|
-
{d71a482d-3cf7-4558-95f5-bd7d6f6e592c}; !- Construction Name
|
3407
|
-
|
3408
|
-
OS:StandardsInformation:Construction,
|
3409
|
-
{6f370394-099c-43e4-ab28-19fc6adb1564}, !- Handle
|
3410
|
-
{b2cbb0ea-6535-4d3c-956b-742c1f3ae382}; !- Construction Name
|
3411
|
-
|
3412
|
-
OS:SpaceType,
|
3413
|
-
{e696f18d-b9ee-4d2d-b4b1-b631d0c971a1}, !- Handle
|
3414
|
-
hospital, !- Name
|
3415
|
-
, !- Default Construction Set Name
|
3416
|
-
, !- Default Schedule Set Name
|
3417
|
-
{2e197298-2feb-42cf-9586-40e6f876f348}, !- Group Rendering Name
|
3418
|
-
, !- Design Specification Outdoor Air Object Name
|
3419
|
-
90.1-2013, !- Standards Template
|
3420
|
-
, !- Standards Building Type
|
3421
|
-
; !- Standards Space Type
|
3422
|
-
|
3423
|
-
OS:Rendering:Color,
|
3424
|
-
{2e197298-2feb-42cf-9586-40e6f876f348}, !- Handle
|
3425
|
-
Rendering Color 3, !- Name
|
3426
|
-
0, !- Rendering Red Value
|
3427
|
-
206, !- Rendering Green Value
|
3428
|
-
209; !- Rendering Blue Value
|
3429
|
-
|
3430
|
-
OS:Rendering:Color,
|
3431
|
-
{d4e88be4-9a77-43fc-80eb-2ea58781b0e5}, !- Handle
|
3432
|
-
Rendering Color 4, !- Name
|
3433
|
-
139, !- Rendering Red Value
|
3434
|
-
0, !- Rendering Green Value
|
3435
|
-
139; !- Rendering Blue Value
|
3436
|
-
|
3437
|
-
OS:Rendering:Color,
|
3438
|
-
{7ed533ab-d2c5-446a-af4f-b67887144c63}, !- Handle
|
3439
|
-
Rendering Color 5, !- Name
|
3440
|
-
169, !- Rendering Red Value
|
3441
|
-
169, !- Rendering Green Value
|
3442
|
-
169; !- Rendering Blue Value
|
3443
|
-
|
3444
|
-
OS:Rendering:Color,
|
3445
|
-
{138f7fb4-4dfe-4696-a15e-be8598fe2a8d}, !- Handle
|
3446
|
-
Rendering Color 6, !- Name
|
3447
|
-
205, !- Rendering Red Value
|
3448
|
-
92, !- Rendering Green Value
|
3449
|
-
92; !- Rendering Blue Value
|
3450
|
-
|
3451
|
-
OS:Rendering:Color,
|
3452
|
-
{a2d1a3ed-5888-42c2-85a7-2f9aa5483155}, !- Handle
|
3453
|
-
Rendering Color 7, !- Name
|
3454
|
-
165, !- Rendering Red Value
|
3455
|
-
42, !- Rendering Green Value
|
3456
|
-
42; !- Rendering Blue Value
|
3457
|
-
|
3458
|
-
OS:Rendering:Color,
|
3459
|
-
{09b90351-0e81-4a77-8c56-c316ddbf06cf}, !- Handle
|
3460
|
-
Rendering Color 8, !- Name
|
3461
|
-
144, !- Rendering Red Value
|
3462
|
-
238, !- Rendering Green Value
|
3463
|
-
144; !- Rendering Blue Value
|
3464
|
-
|
3465
|
-
OS:Rendering:Color,
|
3466
|
-
{d090e440-e24b-45b8-947a-65afb64a374e}, !- Handle
|
3467
|
-
Rendering Color 9, !- Name
|
3468
|
-
219, !- Rendering Red Value
|
3469
|
-
112, !- Rendering Green Value
|
3470
|
-
147; !- Rendering Blue Value
|
3471
|
-
|
3472
|
-
OS:Rendering:Color,
|
3473
|
-
{d89c5c41-3b3e-45da-bf93-ae5158b956c0}, !- Handle
|
3474
|
-
Rendering Color 10, !- Name
|
3475
|
-
250, !- Rendering Red Value
|
3476
|
-
235, !- Rendering Green Value
|
3477
|
-
215; !- Rendering Blue Value
|
3478
|
-
|
3479
|
-
OS:Rendering:Color,
|
3480
|
-
{eecd2ae5-73fb-447f-b519-93c2cca6a10d}, !- Handle
|
3481
|
-
Rendering Color 11, !- Name
|
3482
|
-
255, !- Rendering Red Value
|
3483
|
-
192, !- Rendering Green Value
|
3484
|
-
203; !- Rendering Blue Value
|
3485
|
-
|
3486
|
-
OS:Rendering:Color,
|
3487
|
-
{98a4e8f8-d9c5-499b-8176-8e592cf37a08}, !- Handle
|
3488
|
-
Rendering Color 12, !- Name
|
3489
|
-
245, !- Rendering Red Value
|
3490
|
-
245, !- Rendering Green Value
|
3491
|
-
220; !- Rendering Blue Value
|
3492
|
-
|
3493
|
-
OS:Rendering:Color,
|
3494
|
-
{df4df159-45b7-4ba4-ae80-f5dc6e785621}, !- Handle
|
3495
|
-
Rendering Color 13, !- Name
|
3496
|
-
0, !- Rendering Red Value
|
3497
|
-
255, !- Rendering Green Value
|
3498
|
-
255; !- Rendering Blue Value
|
3499
|
-
|
3500
|
-
OS:Rendering:Color,
|
3501
|
-
{baf298f0-082b-45e8-bdfc-11b49b435d0e}, !- Handle
|
3502
|
-
Rendering Color 14, !- Name
|
3503
|
-
248, !- Rendering Red Value
|
3504
|
-
248, !- Rendering Green Value
|
3505
|
-
255; !- Rendering Blue Value
|
3506
|
-
|
3507
|
-
OS:Rendering:Color,
|
3508
|
-
{8639949b-89c2-4014-8d68-b49c10a27bfd}, !- Handle
|
3509
|
-
Rendering Color 15, !- Name
|
3510
|
-
240, !- Rendering Red Value
|
3511
|
-
255, !- Rendering Green Value
|
3512
|
-
255; !- Rendering Blue Value
|
3513
|
-
|
3514
|
-
OS:Rendering:Color,
|
3515
|
-
{aca248f5-18c2-4c3a-866e-ece3d9a25cb3}, !- Handle
|
3516
|
-
Rendering Color 16, !- Name
|
3517
|
-
255, !- Rendering Red Value
|
3518
|
-
248, !- Rendering Green Value
|
3519
|
-
220; !- Rendering Blue Value
|
3520
|
-
|
3521
|
-
OS:Rendering:Color,
|
3522
|
-
{3ddd4094-ce52-4825-acf6-940a4e243807}, !- Handle
|
3523
|
-
Rendering Color 17, !- Name
|
3524
|
-
216, !- Rendering Red Value
|
3525
|
-
191, !- Rendering Green Value
|
3526
|
-
216; !- Rendering Blue Value
|
3527
|
-
|
3528
|
-
OS:SpaceType,
|
3529
|
-
{0be3bdbf-9d8c-43fc-9f7e-11fcb4a8c41d}, !- Handle
|
3530
|
-
retail, !- Name
|
3531
|
-
, !- Default Construction Set Name
|
3532
|
-
, !- Default Schedule Set Name
|
3533
|
-
{b8ffcb28-56fe-4806-9a73-bcd9f34f434b}, !- Group Rendering Name
|
3534
|
-
, !- Design Specification Outdoor Air Object Name
|
3535
|
-
, !- Standards Template
|
3536
|
-
Retail, !- Standards Building Type
|
3537
|
-
Retail; !- Standards Space Type
|
3538
|
-
|
3539
|
-
OS:Rendering:Color,
|
3540
|
-
{b8ffcb28-56fe-4806-9a73-bcd9f34f434b}, !- Handle
|
3541
|
-
Rendering Color 18, !- Name
|
3542
|
-
255, !- Rendering Red Value
|
3543
|
-
245, !- Rendering Green Value
|
3544
|
-
238; !- Rendering Blue Value
|
3545
|
-
|
3546
|
-
OS:SpaceType,
|
3547
|
-
{e2389bd4-bcde-4545-b521-e95a6f95384b}, !- Handle
|
3548
|
-
189.1-2009 - Office - BreakRoom - CZ1-3, !- Name
|
3549
|
-
, !- Default Construction Set Name
|
3550
|
-
{6142f626-5a6d-4c76-8ac4-da8ece279098}, !- Default Schedule Set Name
|
3551
|
-
{a38271d9-82b7-4a87-b79d-b7aaeb1511c2}, !- Group Rendering Name
|
3552
|
-
{f95d1e1a-1461-4b8a-9c34-143f724d1036}, !- Design Specification Outdoor Air Object Name
|
3553
|
-
, !- Standards Template
|
3554
|
-
Office, !- Standards Building Type
|
3555
|
-
BreakRoom; !- Standards Space Type
|
3556
|
-
|
3557
|
-
OS:DefaultScheduleSet,
|
3558
|
-
{6142f626-5a6d-4c76-8ac4-da8ece279098}, !- Handle
|
3559
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Schedule Set, !- Name
|
3560
|
-
, !- Hours of Operation Schedule Name
|
3561
|
-
{f221b637-a2f8-4069-a8f6-20fab82850e5}, !- Number of People Schedule Name
|
3562
|
-
{a39c02d4-026d-4be9-98e7-297e0569a1e1}, !- People Activity Level Schedule Name
|
3563
|
-
{063d2833-9408-45b9-9728-67c6dd3f24c1}, !- Lighting Schedule Name
|
3564
|
-
{16f8ecff-1d2f-436b-ba0c-680d91754eb0}, !- Electric Equipment Schedule Name
|
3565
|
-
, !- Gas Equipment Schedule Name
|
3566
|
-
, !- Hot Water Equipment Schedule Name
|
3567
|
-
{192cf52c-844b-4113-8770-a97498cded5c}, !- Infiltration Schedule Name
|
3568
|
-
, !- Steam Equipment Schedule Name
|
3569
|
-
; !- Other Equipment Schedule Name
|
3570
|
-
|
3571
|
-
OS:Rendering:Color,
|
3572
|
-
{a38271d9-82b7-4a87-b79d-b7aaeb1511c2}, !- Handle
|
3573
|
-
Rendering Color 19, !- Name
|
3574
|
-
230, !- Rendering Red Value
|
3575
|
-
157, !- Rendering Green Value
|
3576
|
-
120; !- Rendering Blue Value
|
3577
|
-
|
3578
|
-
OS:DesignSpecification:OutdoorAir,
|
3579
|
-
{f95d1e1a-1461-4b8a-9c34-143f724d1036}, !- Handle
|
3580
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Ventilation, !- Name
|
3581
|
-
Sum, !- Outdoor Air Method
|
3582
|
-
0.007079211648, !- Outdoor Air Flow per Person {m3/s-person}
|
3583
|
-
, !- Outdoor Air Flow per Floor Area {m3/s-m2}
|
3584
|
-
, !- Outdoor Air Flow Rate {m3/s}
|
3585
|
-
, !- Outdoor Air Flow Air Changes per Hour {1/hr}
|
3586
|
-
; !- Outdoor Air Flow Rate Fraction Schedule Name
|
3587
|
-
|
3588
|
-
OS:Schedule:Ruleset,
|
3589
|
-
{f221b637-a2f8-4069-a8f6-20fab82850e5}, ! Handle
|
3590
|
-
Office Misc Occ, ! Name
|
3591
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3592
|
-
{bb967384-f0fe-4482-b2c8-ae9ea1ddd034}, ! Default Day Schedule Name
|
3593
|
-
{5572b444-b392-474e-9a3d-03f486a181f7}, ! Summer Design Day Schedule Name
|
3594
|
-
{374809c2-8d23-4724-b065-0cc3a50183eb}; ! Winter Design Day Schedule Name
|
3595
|
-
|
3596
|
-
OS:Schedule:Day,
|
3597
|
-
{bb967384-f0fe-4482-b2c8-ae9ea1ddd034}, ! Handle
|
3598
|
-
Office Bldg Occ Default Schedule 1, ! Name
|
3599
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3600
|
-
, ! Interpolate to Timestep
|
3601
|
-
6, !- Hour 1
|
3602
|
-
0, !- Minute 1
|
3603
|
-
0, !- Value Until Time 1
|
3604
|
-
7, !- Hour 2
|
3605
|
-
0, !- Minute 2
|
3606
|
-
0.100000001490116, !- Value Until Time 2
|
3607
|
-
8, !- Hour 3
|
3608
|
-
0, !- Minute 3
|
3609
|
-
0.200000002980232, !- Value Until Time 3
|
3610
|
-
20, !- Hour 4
|
3611
|
-
0, !- Minute 4
|
3612
|
-
0.400000005960464, !- Value Until Time 4
|
3613
|
-
22, !- Hour 5
|
3614
|
-
0, !- Minute 5
|
3615
|
-
0.100000001490116, !- Value Until Time 5
|
3616
|
-
24, !- Hour 6
|
3617
|
-
0, !- Minute 6
|
3618
|
-
0.0500000007450581; !- Value Until Time 6
|
3619
|
-
|
3620
|
-
OS:Schedule:Day,
|
3621
|
-
{5572b444-b392-474e-9a3d-03f486a181f7}, ! Handle
|
3622
|
-
Office Bldg Occ Summer Design Day 1, ! Name
|
3623
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3624
|
-
, ! Interpolate to Timestep
|
3625
|
-
6, ! Hour 1
|
3626
|
-
0, ! Minute 1
|
3627
|
-
0, ! Value Until Time 1
|
3628
|
-
22, ! Hour 2
|
3629
|
-
0, ! Minute 2
|
3630
|
-
1, ! Value Until Time 2
|
3631
|
-
24, ! Hour 3
|
3632
|
-
0, ! Minute 3
|
3633
|
-
0.050000000000000003; ! Value Until Time 3
|
3634
|
-
|
3635
|
-
OS:Schedule:Day,
|
3636
|
-
{374809c2-8d23-4724-b065-0cc3a50183eb}, ! Handle
|
3637
|
-
Office Bldg Occ Winter Design Day 1, ! Name
|
3638
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3639
|
-
, ! Interpolate to Timestep
|
3640
|
-
24, ! Hour 1
|
3641
|
-
0, ! Minute 1
|
3642
|
-
0; ! Value Until Time 1
|
3643
|
-
|
3644
|
-
OS:Schedule:Rule,
|
3645
|
-
{b5abe4b5-ae0d-4909-8871-ec5aa4990054}, ! Handle
|
3646
|
-
Office Misc Occ Rule 1, ! Name
|
3647
|
-
{f221b637-a2f8-4069-a8f6-20fab82850e5}, ! Schedule Ruleset Name
|
3648
|
-
0, ! Rule Order
|
3649
|
-
{93fc86d2-8cc7-45ee-bf20-d89dcf6eb3e0}, ! Day Schedule Name
|
3650
|
-
Yes, ! Apply Sunday
|
3651
|
-
No, ! Apply Monday
|
3652
|
-
No, ! Apply Tuesday
|
3653
|
-
No, ! Apply Wednesday
|
3654
|
-
No, ! Apply Thursday
|
3655
|
-
No, ! Apply Friday
|
3656
|
-
No, ! Apply Saturday
|
3657
|
-
, ! Apply Holiday
|
3658
|
-
DateRange, ! Date Specification Type
|
3659
|
-
1, ! Start Month
|
3660
|
-
1, ! Start Day
|
3661
|
-
12, ! End Month
|
3662
|
-
31; ! End Day
|
3663
|
-
|
3664
|
-
OS:Schedule:Rule,
|
3665
|
-
{6606d2a0-d284-4184-9133-a129645980a8}, ! Handle
|
3666
|
-
Office Misc Occ Rule 2, ! Name
|
3667
|
-
{f221b637-a2f8-4069-a8f6-20fab82850e5}, ! Schedule Ruleset Name
|
3668
|
-
1, ! Rule Order
|
3669
|
-
{88d65eaa-06fb-483f-83cf-50aed94c65f7}, ! Day Schedule Name
|
3670
|
-
No, ! Apply Sunday
|
3671
|
-
No, ! Apply Monday
|
3672
|
-
No, ! Apply Tuesday
|
3673
|
-
No, ! Apply Wednesday
|
3674
|
-
No, ! Apply Thursday
|
3675
|
-
No, ! Apply Friday
|
3676
|
-
Yes, ! Apply Saturday
|
3677
|
-
, ! Apply Holiday
|
3678
|
-
DateRange, ! Date Specification Type
|
3679
|
-
1, ! Start Month
|
3680
|
-
1, ! Start Day
|
3681
|
-
12, ! End Month
|
3682
|
-
31; ! End Day
|
3683
|
-
|
3684
|
-
OS:Schedule:Day,
|
3685
|
-
{93fc86d2-8cc7-45ee-bf20-d89dcf6eb3e0}, ! Handle
|
3686
|
-
Office Bldg Occ Rule 1 Day Schedule 1, ! Name
|
3687
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3688
|
-
, ! Interpolate to Timestep
|
3689
|
-
24, ! Hour 1
|
3690
|
-
0, ! Minute 1
|
3691
|
-
0; ! Value Until Time 1
|
3692
|
-
|
3693
|
-
OS:Schedule:Day,
|
3694
|
-
{88d65eaa-06fb-483f-83cf-50aed94c65f7}, ! Handle
|
3695
|
-
Office Bldg Occ Rule 2 Day Schedule 1, ! Name
|
3696
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3697
|
-
, ! Interpolate to Timestep
|
3698
|
-
6, !- Hour 1
|
3699
|
-
0, !- Minute 1
|
3700
|
-
0, !- Value Until Time 1
|
3701
|
-
8, !- Hour 2
|
3702
|
-
0, !- Minute 2
|
3703
|
-
0.100000001490116, !- Value Until Time 2
|
3704
|
-
14, !- Hour 3
|
3705
|
-
0, !- Minute 3
|
3706
|
-
0.25, !- Value Until Time 3
|
3707
|
-
17, !- Hour 4
|
3708
|
-
0, !- Minute 4
|
3709
|
-
0.100000001490116, !- Value Until Time 4
|
3710
|
-
24, !- Hour 5
|
3711
|
-
0, !- Minute 5
|
3712
|
-
0; !- Value Until Time 5
|
3713
|
-
|
3714
|
-
OS:Schedule:Ruleset,
|
3715
|
-
{a39c02d4-026d-4be9-98e7-297e0569a1e1}, ! Handle
|
3716
|
-
Office Activity, ! Name
|
3717
|
-
{08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, ! Schedule Type Limits Name
|
3718
|
-
{e973c7d0-de23-4b84-bdd9-55c4812f606f}, ! Default Day Schedule Name
|
3719
|
-
{caaa6103-4543-49c5-9554-5dfee81a777d}, ! Summer Design Day Schedule Name
|
3720
|
-
{f1216469-f4de-4850-aa4d-9a1954cc7b6d}; ! Winter Design Day Schedule Name
|
3721
|
-
|
3722
|
-
OS:Schedule:Day,
|
3723
|
-
{e973c7d0-de23-4b84-bdd9-55c4812f606f}, ! Handle
|
3724
|
-
Office Activity Default Schedule, ! Name
|
3725
|
-
{08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, ! Schedule Type Limits Name
|
3726
|
-
, ! Interpolate to Timestep
|
3727
|
-
24, !- Hour 1
|
3728
|
-
0, !- Minute 1
|
3729
|
-
132; !- Value Until Time 1
|
3730
|
-
|
3731
|
-
OS:Schedule:Day,
|
3732
|
-
{caaa6103-4543-49c5-9554-5dfee81a777d}, ! Handle
|
3733
|
-
Office Activity Summer Design Day, ! Name
|
3734
|
-
{08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, ! Schedule Type Limits Name
|
3735
|
-
, ! Interpolate to Timestep
|
3736
|
-
24, !- Hour 1
|
3737
|
-
0, !- Minute 1
|
3738
|
-
132; !- Value Until Time 1
|
3739
|
-
|
3740
|
-
OS:Schedule:Day,
|
3741
|
-
{f1216469-f4de-4850-aa4d-9a1954cc7b6d}, ! Handle
|
3742
|
-
Office Activity Winter Design Day, ! Name
|
3743
|
-
{08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, ! Schedule Type Limits Name
|
3744
|
-
, ! Interpolate to Timestep
|
3745
|
-
24, !- Hour 1
|
3746
|
-
0, !- Minute 1
|
3747
|
-
132; !- Value Until Time 1
|
3748
|
-
|
3749
|
-
OS:Schedule:Ruleset,
|
3750
|
-
{063d2833-9408-45b9-9728-67c6dd3f24c1}, ! Handle
|
3751
|
-
Office Bldg Light, ! Name
|
3752
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3753
|
-
{e4238c43-1ca0-421c-9b05-edc8f566e88b}, ! Default Day Schedule Name
|
3754
|
-
{82f8cad0-dcbb-4563-b070-24567073ca0b}, ! Summer Design Day Schedule Name
|
3755
|
-
{2e677acd-5074-4473-bbd4-9c3afdaa3398}; ! Winter Design Day Schedule Name
|
3756
|
-
|
3757
|
-
OS:Schedule:Day,
|
3758
|
-
{e4238c43-1ca0-421c-9b05-edc8f566e88b}, ! Handle
|
3759
|
-
Office Bldg Light Default Schedule, ! Name
|
3760
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3761
|
-
, ! Interpolate to Timestep
|
3762
|
-
5, !- Hour 1
|
3763
|
-
0, !- Minute 1
|
3764
|
-
0.05, !- Value Until Time 1
|
3765
|
-
7, !- Hour 2
|
3766
|
-
0, !- Minute 2
|
3767
|
-
0.1, !- Value Until Time 2
|
3768
|
-
8, !- Hour 3
|
3769
|
-
0, !- Minute 3
|
3770
|
-
0.3, !- Value Until Time 3
|
3771
|
-
17, !- Hour 4
|
3772
|
-
0, !- Minute 4
|
3773
|
-
0.9, !- Value Until Time 4
|
3774
|
-
18, !- Hour 5
|
3775
|
-
0, !- Minute 5
|
3776
|
-
0.7, !- Value Until Time 5
|
3777
|
-
20, !- Hour 6
|
3778
|
-
0, !- Minute 6
|
3779
|
-
0.5, !- Value Until Time 6
|
3780
|
-
22, !- Hour 7
|
3781
|
-
0, !- Minute 7
|
3782
|
-
0.3, !- Value Until Time 7
|
3783
|
-
23, !- Hour 8
|
3784
|
-
0, !- Minute 8
|
3785
|
-
0.1, !- Value Until Time 8
|
3786
|
-
24, !- Hour 9
|
3787
|
-
0, !- Minute 9
|
3788
|
-
0.05; !- Value Until Time 9
|
3789
|
-
|
3790
|
-
OS:Schedule:Day,
|
3791
|
-
{82f8cad0-dcbb-4563-b070-24567073ca0b}, ! Handle
|
3792
|
-
Office Bldg Light Summer Design Day, ! Name
|
3793
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3794
|
-
, ! Interpolate to Timestep
|
3795
|
-
24, ! Hour 1
|
3796
|
-
0, ! Minute 1
|
3797
|
-
1; ! Value Until Time 1
|
3798
|
-
|
3799
|
-
OS:Schedule:Day,
|
3800
|
-
{2e677acd-5074-4473-bbd4-9c3afdaa3398}, ! Handle
|
3801
|
-
Office Bldg Light Winter Design Day, ! Name
|
3802
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3803
|
-
, ! Interpolate to Timestep
|
3804
|
-
24, ! Hour 1
|
3805
|
-
0, ! Minute 1
|
3806
|
-
0; ! Value Until Time 1
|
3807
|
-
|
3808
|
-
OS:Schedule:Rule,
|
3809
|
-
{00e79750-63a4-43a0-8335-2e0b691180ca}, ! Handle
|
3810
|
-
Office Bldg Light Rule 1, ! Name
|
3811
|
-
{063d2833-9408-45b9-9728-67c6dd3f24c1}, ! Schedule Ruleset Name
|
3812
|
-
0, ! Rule Order
|
3813
|
-
{8fca220f-ce28-46af-bed9-154a0dc7801a}, ! Day Schedule Name
|
3814
|
-
Yes, ! Apply Sunday
|
3815
|
-
No, ! Apply Monday
|
3816
|
-
No, ! Apply Tuesday
|
3817
|
-
No, ! Apply Wednesday
|
3818
|
-
No, ! Apply Thursday
|
3819
|
-
No, ! Apply Friday
|
3820
|
-
No, ! Apply Saturday
|
3821
|
-
, ! Apply Holiday
|
3822
|
-
DateRange, ! Date Specification Type
|
3823
|
-
1, ! Start Month
|
3824
|
-
1, ! Start Day
|
3825
|
-
12, ! End Month
|
3826
|
-
31; ! End Day
|
3827
|
-
|
3828
|
-
OS:Schedule:Rule,
|
3829
|
-
{c9989efa-d7fb-4d94-9f18-0e02d3070c28}, ! Handle
|
3830
|
-
Office Bldg Light Rule 2, ! Name
|
3831
|
-
{063d2833-9408-45b9-9728-67c6dd3f24c1}, ! Schedule Ruleset Name
|
3832
|
-
1, ! Rule Order
|
3833
|
-
{ed0acfd1-58a2-4e2d-9faa-7918344582ec}, ! Day Schedule Name
|
3834
|
-
No, ! Apply Sunday
|
3835
|
-
No, ! Apply Monday
|
3836
|
-
No, ! Apply Tuesday
|
3837
|
-
No, ! Apply Wednesday
|
3838
|
-
No, ! Apply Thursday
|
3839
|
-
No, ! Apply Friday
|
3840
|
-
Yes, ! Apply Saturday
|
3841
|
-
, ! Apply Holiday
|
3842
|
-
DateRange, ! Date Specification Type
|
3843
|
-
1, ! Start Month
|
3844
|
-
1, ! Start Day
|
3845
|
-
12, ! End Month
|
3846
|
-
31; ! End Day
|
3847
|
-
|
3848
|
-
OS:Schedule:Day,
|
3849
|
-
{8fca220f-ce28-46af-bed9-154a0dc7801a}, ! Handle
|
3850
|
-
Office Bldg Light Rule 1 Day Schedule, ! Name
|
3851
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3852
|
-
, ! Interpolate to Timestep
|
3853
|
-
24, ! Hour 1
|
3854
|
-
0, ! Minute 1
|
3855
|
-
0.050000000000000003; ! Value Until Time 1
|
3856
|
-
|
3857
|
-
OS:Schedule:Day,
|
3858
|
-
{ed0acfd1-58a2-4e2d-9faa-7918344582ec}, ! Handle
|
3859
|
-
Office Bldg Light Rule 2 Day Schedule, ! Name
|
3860
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3861
|
-
, ! Interpolate to Timestep
|
3862
|
-
6, ! Hour 1
|
3863
|
-
0, ! Minute 1
|
3864
|
-
0.050000000000000003, ! Value Until Time 1
|
3865
|
-
8, ! Hour 2
|
3866
|
-
0, ! Minute 2
|
3867
|
-
0.10000000000000001, ! Value Until Time 2
|
3868
|
-
14, ! Hour 3
|
3869
|
-
0, ! Minute 3
|
3870
|
-
0.5, ! Value Until Time 3
|
3871
|
-
17, ! Hour 4
|
3872
|
-
0, ! Minute 4
|
3873
|
-
0.14999999999999999, ! Value Until Time 4
|
3874
|
-
24, ! Hour 5
|
3875
|
-
0, ! Minute 5
|
3876
|
-
0.050000000000000003; ! Value Until Time 5
|
3877
|
-
|
3878
|
-
OS:Schedule:Ruleset,
|
3879
|
-
{16f8ecff-1d2f-436b-ba0c-680d91754eb0}, ! Handle
|
3880
|
-
Office Bldg Equip, ! Name
|
3881
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3882
|
-
{921e720e-9c59-41ce-b435-1dc27735c4cc}, ! Default Day Schedule Name
|
3883
|
-
{de838b9d-9d65-4004-aee0-f2603ed8c373}, ! Summer Design Day Schedule Name
|
3884
|
-
{badc2a42-fcd5-43fe-8c24-b9680fad2eb4}; ! Winter Design Day Schedule Name
|
3885
|
-
|
3886
|
-
OS:Schedule:Day,
|
3887
|
-
{921e720e-9c59-41ce-b435-1dc27735c4cc}, ! Handle
|
3888
|
-
Office Bldg Equip Default Schedule, ! Name
|
3889
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3890
|
-
, ! Interpolate to Timestep
|
3891
|
-
8, !- Hour 1
|
3892
|
-
0, !- Minute 1
|
3893
|
-
0.4, !- Value Until Time 1
|
3894
|
-
12, !- Hour 2
|
3895
|
-
0, !- Minute 2
|
3896
|
-
0.9, !- Value Until Time 2
|
3897
|
-
13, !- Hour 3
|
3898
|
-
0, !- Minute 3
|
3899
|
-
0.8, !- Value Until Time 3
|
3900
|
-
17, !- Hour 4
|
3901
|
-
0, !- Minute 4
|
3902
|
-
0.9, !- Value Until Time 4
|
3903
|
-
18, !- Hour 5
|
3904
|
-
0, !- Minute 5
|
3905
|
-
0.8, !- Value Until Time 5
|
3906
|
-
20, !- Hour 6
|
3907
|
-
0, !- Minute 6
|
3908
|
-
0.6, !- Value Until Time 6
|
3909
|
-
22, !- Hour 7
|
3910
|
-
0, !- Minute 7
|
3911
|
-
0.5, !- Value Until Time 7
|
3912
|
-
24, !- Hour 8
|
3913
|
-
0, !- Minute 8
|
3914
|
-
0.4; !- Value Until Time 8
|
3915
|
-
|
3916
|
-
OS:Schedule:Day,
|
3917
|
-
{de838b9d-9d65-4004-aee0-f2603ed8c373}, ! Handle
|
3918
|
-
Office Bldg Equip Summer Design Day, ! Name
|
3919
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3920
|
-
, ! Interpolate to Timestep
|
3921
|
-
24, ! Hour 1
|
3922
|
-
0, ! Minute 1
|
3923
|
-
1; ! Value Until Time 1
|
3924
|
-
|
3925
|
-
OS:Schedule:Day,
|
3926
|
-
{badc2a42-fcd5-43fe-8c24-b9680fad2eb4}, ! Handle
|
3927
|
-
Office Bldg Equip Winter Design Day, ! Name
|
3928
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3929
|
-
, ! Interpolate to Timestep
|
3930
|
-
24, ! Hour 1
|
3931
|
-
0, ! Minute 1
|
3932
|
-
0; ! Value Until Time 1
|
3933
|
-
|
3934
|
-
OS:Schedule:Rule,
|
3935
|
-
{e57331c5-3d54-49ab-802b-7d156ff8dd1a}, ! Handle
|
3936
|
-
Office Bldg Equip Rule 1, ! Name
|
3937
|
-
{16f8ecff-1d2f-436b-ba0c-680d91754eb0}, ! Schedule Ruleset Name
|
3938
|
-
0, ! Rule Order
|
3939
|
-
{837a3fe0-9065-4609-b2f0-b8d5e51ba4ee}, ! Day Schedule Name
|
3940
|
-
Yes, ! Apply Sunday
|
3941
|
-
No, ! Apply Monday
|
3942
|
-
No, ! Apply Tuesday
|
3943
|
-
No, ! Apply Wednesday
|
3944
|
-
No, ! Apply Thursday
|
3945
|
-
No, ! Apply Friday
|
3946
|
-
No, ! Apply Saturday
|
3947
|
-
, ! Apply Holiday
|
3948
|
-
DateRange, ! Date Specification Type
|
3949
|
-
1, ! Start Month
|
3950
|
-
1, ! Start Day
|
3951
|
-
12, ! End Month
|
3952
|
-
31; ! End Day
|
3953
|
-
|
3954
|
-
OS:Schedule:Rule,
|
3955
|
-
{66119462-1e49-4e93-91cb-b764d8ba864a}, ! Handle
|
3956
|
-
Office Bldg Equip Rule 2, ! Name
|
3957
|
-
{16f8ecff-1d2f-436b-ba0c-680d91754eb0}, ! Schedule Ruleset Name
|
3958
|
-
1, ! Rule Order
|
3959
|
-
{22e0fecf-0810-4cf4-8c78-0c48fbd1a4a5}, ! Day Schedule Name
|
3960
|
-
No, ! Apply Sunday
|
3961
|
-
No, ! Apply Monday
|
3962
|
-
No, ! Apply Tuesday
|
3963
|
-
No, ! Apply Wednesday
|
3964
|
-
No, ! Apply Thursday
|
3965
|
-
No, ! Apply Friday
|
3966
|
-
Yes, ! Apply Saturday
|
3967
|
-
, ! Apply Holiday
|
3968
|
-
DateRange, ! Date Specification Type
|
3969
|
-
1, ! Start Month
|
3970
|
-
1, ! Start Day
|
3971
|
-
12, ! End Month
|
3972
|
-
31; ! End Day
|
3973
|
-
|
3974
|
-
OS:Schedule:Day,
|
3975
|
-
{837a3fe0-9065-4609-b2f0-b8d5e51ba4ee}, ! Handle
|
3976
|
-
Office Bldg Equip Rule 1 Day Schedule, ! Name
|
3977
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3978
|
-
, ! Interpolate to Timestep
|
3979
|
-
24, ! Hour 1
|
3980
|
-
0, ! Minute 1
|
3981
|
-
0.29999999999999999; ! Value Until Time 1
|
3982
|
-
|
3983
|
-
OS:Schedule:Day,
|
3984
|
-
{22e0fecf-0810-4cf4-8c78-0c48fbd1a4a5}, ! Handle
|
3985
|
-
Office Bldg Equip Rule 2 Day Schedule, ! Name
|
3986
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
3987
|
-
, ! Interpolate to Timestep
|
3988
|
-
6, ! Hour 1
|
3989
|
-
0, ! Minute 1
|
3990
|
-
0.29999999999999999, ! Value Until Time 1
|
3991
|
-
8, ! Hour 2
|
3992
|
-
0, ! Minute 2
|
3993
|
-
0.40000000000000002, ! Value Until Time 2
|
3994
|
-
14, ! Hour 3
|
3995
|
-
0, ! Minute 3
|
3996
|
-
0.5, ! Value Until Time 3
|
3997
|
-
17, ! Hour 4
|
3998
|
-
0, ! Minute 4
|
3999
|
-
0.34999999999999998, ! Value Until Time 4
|
4000
|
-
24, ! Hour 5
|
4001
|
-
0, ! Minute 5
|
4002
|
-
0.29999999999999999; ! Value Until Time 5
|
4003
|
-
|
4004
|
-
OS:Schedule:Ruleset,
|
4005
|
-
{192cf52c-844b-4113-8770-a97498cded5c}, ! Handle
|
4006
|
-
Office Infil Quarter On, ! Name
|
4007
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
4008
|
-
{48aff6ac-5115-43fc-8d81-69d512ad6f92}, ! Default Day Schedule Name
|
4009
|
-
{661086b9-cf93-47a4-b0a8-d365924e90a2}, ! Summer Design Day Schedule Name
|
4010
|
-
{f3fef08c-3581-4c07-9eef-2019940d9330}; ! Winter Design Day Schedule Name
|
4011
|
-
|
4012
|
-
OS:Schedule:Day,
|
4013
|
-
{48aff6ac-5115-43fc-8d81-69d512ad6f92}, ! Handle
|
4014
|
-
Office Infil Quarter On Default Schedule, ! Name
|
4015
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
4016
|
-
, ! Interpolate to Timestep
|
4017
|
-
6, !- Hour 1
|
4018
|
-
0, !- Minute 1
|
4019
|
-
1, !- Value Until Time 1
|
4020
|
-
22, !- Hour 2
|
4021
|
-
0, !- Minute 2
|
4022
|
-
0.25, !- Value Until Time 2
|
4023
|
-
24, !- Hour 3
|
4024
|
-
0, !- Minute 3
|
4025
|
-
1; !- Value Until Time 3
|
4026
|
-
|
4027
|
-
OS:Schedule:Day,
|
4028
|
-
{661086b9-cf93-47a4-b0a8-d365924e90a2}, ! Handle
|
4029
|
-
Office Infil Quarter On Summer Design Day, ! Name
|
4030
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
4031
|
-
, ! Interpolate to Timestep
|
4032
|
-
6, ! Hour 1
|
4033
|
-
0, ! Minute 1
|
4034
|
-
1, ! Value Until Time 1
|
4035
|
-
22, ! Hour 2
|
4036
|
-
0, ! Minute 2
|
4037
|
-
0.25, ! Value Until Time 2
|
4038
|
-
24, ! Hour 3
|
4039
|
-
0, ! Minute 3
|
4040
|
-
1; ! Value Until Time 3
|
4041
|
-
|
4042
|
-
OS:Schedule:Day,
|
4043
|
-
{f3fef08c-3581-4c07-9eef-2019940d9330}, ! Handle
|
4044
|
-
Office Infil Quarter On Winter Design Day, ! Name
|
4045
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
4046
|
-
, ! Interpolate to Timestep
|
4047
|
-
6, ! Hour 1
|
4048
|
-
0, ! Minute 1
|
4049
|
-
1, ! Value Until Time 1
|
4050
|
-
18, ! Hour 2
|
4051
|
-
0, ! Minute 2
|
4052
|
-
0.25, ! Value Until Time 2
|
4053
|
-
24, ! Hour 3
|
4054
|
-
0, ! Minute 3
|
4055
|
-
1; ! Value Until Time 3
|
4056
|
-
|
4057
|
-
OS:Schedule:Rule,
|
4058
|
-
{2461b66f-d7c5-4321-b862-d74685319aad}, ! Handle
|
4059
|
-
Office Infil Quarter On Rule 1, ! Name
|
4060
|
-
{192cf52c-844b-4113-8770-a97498cded5c}, ! Schedule Ruleset Name
|
4061
|
-
0, ! Rule Order
|
4062
|
-
{54715170-c752-45c8-9d9a-b207f5bbe5da}, ! Day Schedule Name
|
4063
|
-
Yes, ! Apply Sunday
|
4064
|
-
No, ! Apply Monday
|
4065
|
-
No, ! Apply Tuesday
|
4066
|
-
No, ! Apply Wednesday
|
4067
|
-
No, ! Apply Thursday
|
4068
|
-
No, ! Apply Friday
|
4069
|
-
No, ! Apply Saturday
|
4070
|
-
, ! Apply Holiday
|
4071
|
-
DateRange, ! Date Specification Type
|
4072
|
-
1, ! Start Month
|
4073
|
-
1, ! Start Day
|
4074
|
-
12, ! End Month
|
4075
|
-
31; ! End Day
|
4076
|
-
|
4077
|
-
OS:Schedule:Rule,
|
4078
|
-
{e94733b7-27fb-4702-9e0e-d16add9f2b1e}, ! Handle
|
4079
|
-
Office Infil Quarter On Rule 2, ! Name
|
4080
|
-
{192cf52c-844b-4113-8770-a97498cded5c}, ! Schedule Ruleset Name
|
4081
|
-
1, ! Rule Order
|
4082
|
-
{dfe0a051-72aa-47e6-a688-16f8c7faf2ce}, ! Day Schedule Name
|
4083
|
-
No, ! Apply Sunday
|
4084
|
-
No, ! Apply Monday
|
4085
|
-
No, ! Apply Tuesday
|
4086
|
-
No, ! Apply Wednesday
|
4087
|
-
No, ! Apply Thursday
|
4088
|
-
No, ! Apply Friday
|
4089
|
-
Yes, ! Apply Saturday
|
4090
|
-
, ! Apply Holiday
|
4091
|
-
DateRange, ! Date Specification Type
|
4092
|
-
1, ! Start Month
|
4093
|
-
1, ! Start Day
|
4094
|
-
12, ! End Month
|
4095
|
-
31; ! End Day
|
4096
|
-
|
4097
|
-
OS:Schedule:Day,
|
4098
|
-
{54715170-c752-45c8-9d9a-b207f5bbe5da}, ! Handle
|
4099
|
-
Office Infil Quarter On Rule 1 Day Schedule, ! Name
|
4100
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
4101
|
-
, ! Interpolate to Timestep
|
4102
|
-
24, ! Hour 1
|
4103
|
-
0, ! Minute 1
|
4104
|
-
1; ! Value Until Time 1
|
4105
|
-
|
4106
|
-
OS:Schedule:Day,
|
4107
|
-
{dfe0a051-72aa-47e6-a688-16f8c7faf2ce}, ! Handle
|
4108
|
-
Office Infil Quarter On Rule 2 Day Schedule, ! Name
|
4109
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Schedule Type Limits Name
|
4110
|
-
, ! Interpolate to Timestep
|
4111
|
-
6, ! Hour 1
|
4112
|
-
0, ! Minute 1
|
4113
|
-
1, ! Value Until Time 1
|
4114
|
-
18, ! Hour 2
|
4115
|
-
0, ! Minute 2
|
4116
|
-
0.25, ! Value Until Time 2
|
4117
|
-
24, ! Hour 3
|
4118
|
-
0, ! Minute 3
|
4119
|
-
1; ! Value Until Time 3
|
4120
|
-
|
4121
|
-
OS:ScheduleTypeLimits,
|
4122
|
-
{9a36e244-7c1a-4b0c-aa69-f096f6d8103b}, ! Handle
|
4123
|
-
Fraction, ! Name
|
4124
|
-
0, ! Lower Limit Value
|
4125
|
-
1, ! Upper Limit Value
|
4126
|
-
CONTINUOUS; ! Numeric Type
|
4127
|
-
|
4128
|
-
OS:People,
|
4129
|
-
{f0733084-3247-499b-9d1f-b79323dd4a25}, !- Handle
|
4130
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 People, !- Name
|
4131
|
-
{a764d981-e483-4010-aaf2-569b43d92e12}, !- People Definition Name
|
4132
|
-
{e2389bd4-bcde-4545-b521-e95a6f95384b}, !- Space or SpaceType Name
|
4133
|
-
, !- Number of People Schedule Name
|
4134
|
-
, !- Activity Level Schedule Name
|
4135
|
-
, !- Surface Name/Angle Factor List Name
|
4136
|
-
, !- Work Efficiency Schedule Name
|
4137
|
-
, !- Clothing Insulation Schedule Name
|
4138
|
-
, !- Air Velocity Schedule Name
|
4139
|
-
1; !- Multiplier
|
4140
|
-
|
4141
|
-
OS:People:Definition,
|
4142
|
-
{a764d981-e483-4010-aaf2-569b43d92e12}, !- Handle
|
4143
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 People Definition, !- Name
|
4144
|
-
People/Area, !- Number of People Calculation Method
|
4145
|
-
, !- Number of People {people}
|
4146
|
-
0.538195520835486, !- People per Space Floor Area {person/m2}
|
4147
|
-
, !- Space Floor Area per Person {m2/person}
|
4148
|
-
0.3; !- Fraction Radiant
|
4149
|
-
|
4150
|
-
OS:Lights,
|
4151
|
-
{f3078cda-7429-4daa-bf4d-37077f0472fe}, !- Handle
|
4152
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Lights, !- Name
|
4153
|
-
{a5026623-61b2-470e-9bfa-b4b32f356d4e}, !- Lights Definition Name
|
4154
|
-
{e2389bd4-bcde-4545-b521-e95a6f95384b}, !- Space or SpaceType Name
|
4155
|
-
, !- Schedule Name
|
4156
|
-
, !- Fraction Replaceable
|
4157
|
-
, !- Multiplier
|
4158
|
-
General; !- End-Use Subcategory
|
4159
|
-
|
4160
|
-
OS:Lights:Definition,
|
4161
|
-
{a5026623-61b2-470e-9bfa-b4b32f356d4e}, !- Handle
|
4162
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Lights Definition, !- Name
|
4163
|
-
Watts/Area, !- Design Level Calculation Method
|
4164
|
-
, !- Lighting Level {W}
|
4165
|
-
11.6250232500465, !- Watts per Space Floor Area {W/m2}
|
4166
|
-
; !- Watts per Person {W/person}
|
4167
|
-
|
4168
|
-
OS:ElectricEquipment,
|
4169
|
-
{fa2f790d-4168-4b6c-9166-1bcaa4437c57}, !- Handle
|
4170
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment, !- Name
|
4171
|
-
{445779ce-7e5b-4939-807c-409f85331b0b}, !- Electric Equipment Definition Name
|
4172
|
-
{e2389bd4-bcde-4545-b521-e95a6f95384b}, !- Space or SpaceType Name
|
4173
|
-
, !- Schedule Name
|
4174
|
-
, !- Multiplier
|
4175
|
-
General; !- End-Use Subcategory
|
4176
|
-
|
4177
|
-
OS:ElectricEquipment:Definition,
|
4178
|
-
{445779ce-7e5b-4939-807c-409f85331b0b}, !- Handle
|
4179
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment Definition, !- Name
|
4180
|
-
Watts/Area, !- Design Level Calculation Method
|
4181
|
-
, !- Design Level {W}
|
4182
|
-
48.0070404585254, !- Watts per Space Floor Area {W/m2}
|
4183
|
-
; !- Watts per Person {W/person}
|
4184
|
-
|
4185
|
-
OS:SpaceInfiltration:DesignFlowRate,
|
4186
|
-
{01087359-9f46-40d9-a569-9aaa04b3dc9b}, !- Handle
|
4187
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Infiltration, !- Name
|
4188
|
-
{e2389bd4-bcde-4545-b521-e95a6f95384b}, !- Space or SpaceType Name
|
4189
|
-
, !- Schedule Name
|
4190
|
-
Flow/ExteriorArea, !- Design Flow Rate Calculation Method
|
4191
|
-
, !- Design Flow Rate {m3/s}
|
4192
|
-
, !- Flow per Space Floor Area {m3/s-m2}
|
4193
|
-
0.00030226, !- Flow per Exterior Surface Area {m3/s-m2}
|
4194
|
-
, !- Air Changes per Hour {1/hr}
|
4195
|
-
, !- Constant Term Coefficient
|
4196
|
-
, !- Temperature Term Coefficient
|
4197
|
-
, !- Velocity Term Coefficient
|
4198
|
-
; !- Velocity Squared Term Coefficient
|
4199
|
-
|
4200
|
-
OS:SpaceType,
|
4201
|
-
{81bc05fd-a431-49fd-9df6-8eb9d0a5b66d}, !- Handle
|
4202
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 1, !- Name
|
4203
|
-
, !- Default Construction Set Name
|
4204
|
-
{6142f626-5a6d-4c76-8ac4-da8ece279098}, !- Default Schedule Set Name
|
4205
|
-
{9281ea7d-b6be-4b6a-86a2-8437d3f69905}, !- Group Rendering Name
|
4206
|
-
{f95d1e1a-1461-4b8a-9c34-143f724d1036}, !- Design Specification Outdoor Air Object Name
|
4207
|
-
, !- Standards Template
|
4208
|
-
Office, !- Standards Building Type
|
4209
|
-
BreakRoom; !- Standards Space Type
|
4210
|
-
|
4211
|
-
OS:Rendering:Color,
|
4212
|
-
{9281ea7d-b6be-4b6a-86a2-8437d3f69905}, !- Handle
|
4213
|
-
Rendering Color 20, !- Name
|
4214
|
-
230, !- Rendering Red Value
|
4215
|
-
157, !- Rendering Green Value
|
4216
|
-
120; !- Rendering Blue Value
|
4217
|
-
|
4218
|
-
OS:People,
|
4219
|
-
{90c5e44b-923e-41c3-b25e-730db2b7a820}, !- Handle
|
4220
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 People 1, !- Name
|
4221
|
-
{a764d981-e483-4010-aaf2-569b43d92e12}, !- People Definition Name
|
4222
|
-
{81bc05fd-a431-49fd-9df6-8eb9d0a5b66d}, !- Space or SpaceType Name
|
4223
|
-
, !- Number of People Schedule Name
|
4224
|
-
, !- Activity Level Schedule Name
|
4225
|
-
, !- Surface Name/Angle Factor List Name
|
4226
|
-
, !- Work Efficiency Schedule Name
|
4227
|
-
, !- Clothing Insulation Schedule Name
|
4228
|
-
, !- Air Velocity Schedule Name
|
4229
|
-
1; !- Multiplier
|
4230
|
-
|
4231
|
-
OS:Lights,
|
4232
|
-
{6a890c79-973c-4698-8baa-1a39468b9352}, !- Handle
|
4233
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Lights 1, !- Name
|
4234
|
-
{a5026623-61b2-470e-9bfa-b4b32f356d4e}, !- Lights Definition Name
|
4235
|
-
{81bc05fd-a431-49fd-9df6-8eb9d0a5b66d}, !- Space or SpaceType Name
|
4236
|
-
, !- Schedule Name
|
4237
|
-
, !- Fraction Replaceable
|
4238
|
-
, !- Multiplier
|
4239
|
-
General; !- End-Use Subcategory
|
4240
|
-
|
4241
|
-
OS:ElectricEquipment,
|
4242
|
-
{4e74388d-9d44-43bb-85fa-5cd33eccb4b4}, !- Handle
|
4243
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment 1, !- Name
|
4244
|
-
{445779ce-7e5b-4939-807c-409f85331b0b}, !- Electric Equipment Definition Name
|
4245
|
-
{81bc05fd-a431-49fd-9df6-8eb9d0a5b66d}, !- Space or SpaceType Name
|
4246
|
-
, !- Schedule Name
|
4247
|
-
, !- Multiplier
|
4248
|
-
General; !- End-Use Subcategory
|
4249
|
-
|
4250
|
-
OS:SpaceInfiltration:DesignFlowRate,
|
4251
|
-
{30b9b2ae-e099-4ac9-a9d5-4f2e445dd386}, !- Handle
|
4252
|
-
189.1-2009 - Office - BreakRoom - CZ1-3 Infiltration 1, !- Name
|
4253
|
-
{81bc05fd-a431-49fd-9df6-8eb9d0a5b66d}, !- Space or SpaceType Name
|
4254
|
-
, !- Schedule Name
|
4255
|
-
Flow/ExteriorArea, !- Design Flow Rate Calculation Method
|
4256
|
-
, !- Design Flow Rate {m3/s}
|
4257
|
-
, !- Flow per Space Floor Area {m3/s-m2}
|
4258
|
-
0.00030226, !- Flow per Exterior Surface Area {m3/s-m2}
|
4259
|
-
, !- Air Changes per Hour {1/hr}
|
4260
|
-
, !- Constant Term Coefficient
|
4261
|
-
, !- Temperature Term Coefficient
|
4262
|
-
, !- Velocity Term Coefficient
|
4263
|
-
; !- Velocity Squared Term Coefficient
|
4264
|
-
|
4265
|
-
OS:SpaceType,
|
4266
|
-
{41b1ec67-2827-43b4-a3e8-fe55f204bf51}, !- Handle
|
4267
|
-
189.1-2009 - Office - IT_Room - CZ4-8, !- Name
|
4268
|
-
, !- Default Construction Set Name
|
4269
|
-
{3d19cebf-040c-4c0f-8694-64e3ae323ad1}, !- Default Schedule Set Name
|
4270
|
-
{ce6beb80-2e52-407e-81b5-2941deaca3ae}, !- Group Rendering Name
|
4271
|
-
{9b57d301-153d-46dc-82e7-5d8470044c50}, !- Design Specification Outdoor Air Object Name
|
4272
|
-
, !- Standards Template
|
4273
|
-
Office, !- Standards Building Type
|
4274
|
-
IT_Room; !- Standards Space Type
|
4275
|
-
|
4276
|
-
OS:DefaultScheduleSet,
|
4277
|
-
{3d19cebf-040c-4c0f-8694-64e3ae323ad1}, !- Handle
|
4278
|
-
189.1-2009 - Office - IT_Room - CZ4-8 Schedule Set, !- Name
|
4279
|
-
, !- Hours of Operation Schedule Name
|
4280
|
-
{f221b637-a2f8-4069-a8f6-20fab82850e5}, !- Number of People Schedule Name
|
4281
|
-
{a39c02d4-026d-4be9-98e7-297e0569a1e1}, !- People Activity Level Schedule Name
|
4282
|
-
{063d2833-9408-45b9-9728-67c6dd3f24c1}, !- Lighting Schedule Name
|
4283
|
-
{16f8ecff-1d2f-436b-ba0c-680d91754eb0}, !- Electric Equipment Schedule Name
|
4284
|
-
, !- Gas Equipment Schedule Name
|
4285
|
-
, !- Hot Water Equipment Schedule Name
|
4286
|
-
{192cf52c-844b-4113-8770-a97498cded5c}, !- Infiltration Schedule Name
|
4287
|
-
, !- Steam Equipment Schedule Name
|
4288
|
-
; !- Other Equipment Schedule Name
|
4289
|
-
|
4290
|
-
OS:Rendering:Color,
|
4291
|
-
{ce6beb80-2e52-407e-81b5-2941deaca3ae}, !- Handle
|
4292
|
-
Rendering Color 22, !- Name
|
4293
|
-
41, !- Rendering Red Value
|
4294
|
-
31, !- Rendering Green Value
|
4295
|
-
169; !- Rendering Blue Value
|
4296
|
-
|
4297
|
-
OS:DesignSpecification:OutdoorAir,
|
4298
|
-
{9b57d301-153d-46dc-82e7-5d8470044c50}, !- Handle
|
4299
|
-
189.1-2009 - Office - IT_Room - CZ4-8 Ventilation, !- Name
|
4300
|
-
Sum, !- Outdoor Air Method
|
4301
|
-
, !- Outdoor Air Flow per Person {m3/s-person}
|
4302
|
-
0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2}
|
4303
|
-
, !- Outdoor Air Flow Rate {m3/s}
|
4304
|
-
, !- Outdoor Air Flow Air Changes per Hour {1/hr}
|
4305
|
-
; !- Outdoor Air Flow Rate Fraction Schedule Name
|
4306
|
-
|
4307
|
-
OS:People,
|
4308
|
-
{90e8460a-b28e-48ce-ba6e-de8b0b8581ad}, !- Handle
|
4309
|
-
189.1-2009 - Office - IT_Room - CZ4-8 People, !- Name
|
4310
|
-
{e3ec6606-42ac-4ab7-90f0-b28915582b87}, !- People Definition Name
|
4311
|
-
{41b1ec67-2827-43b4-a3e8-fe55f204bf51}, !- Space or SpaceType Name
|
4312
|
-
, !- Number of People Schedule Name
|
4313
|
-
, !- Activity Level Schedule Name
|
4314
|
-
, !- Surface Name/Angle Factor List Name
|
4315
|
-
, !- Work Efficiency Schedule Name
|
4316
|
-
, !- Clothing Insulation Schedule Name
|
4317
|
-
, !- Air Velocity Schedule Name
|
4318
|
-
1; !- Multiplier
|
4319
|
-
|
4320
|
-
OS:People:Definition,
|
4321
|
-
{e3ec6606-42ac-4ab7-90f0-b28915582b87}, !- Handle
|
4322
|
-
189.1-2009 - Office - IT_Room - CZ4-8 People Definition, !- Name
|
4323
|
-
People/Area, !- Number of People Calculation Method
|
4324
|
-
, !- Number of People {people}
|
4325
|
-
0.0538195520835486, !- People per Space Floor Area {person/m2}
|
4326
|
-
, !- Space Floor Area per Person {m2/person}
|
4327
|
-
0.3; !- Fraction Radiant
|
4328
|
-
|
4329
|
-
OS:Lights,
|
4330
|
-
{9b731320-7c9d-43de-b568-dd2f49fb489b}, !- Handle
|
4331
|
-
189.1-2009 - Office - IT_Room - CZ4-8 Lights, !- Name
|
4332
|
-
{87f523c9-28c3-4ada-81ab-6f43c86d852c}, !- Lights Definition Name
|
4333
|
-
{41b1ec67-2827-43b4-a3e8-fe55f204bf51}, !- Space or SpaceType Name
|
4334
|
-
, !- Schedule Name
|
4335
|
-
, !- Fraction Replaceable
|
4336
|
-
, !- Multiplier
|
4337
|
-
General; !- End-Use Subcategory
|
4338
|
-
|
4339
|
-
OS:Lights:Definition,
|
4340
|
-
{87f523c9-28c3-4ada-81ab-6f43c86d852c}, !- Handle
|
4341
|
-
189.1-2009 - Office - IT_Room - CZ4-8 Lights Definition, !- Name
|
4342
|
-
Watts/Area, !- Design Level Calculation Method
|
4343
|
-
, !- Lighting Level {W}
|
4344
|
-
10.6562713125426, !- Watts per Space Floor Area {W/m2}
|
4345
|
-
; !- Watts per Person {W/person}
|
4346
|
-
|
4347
|
-
OS:ElectricEquipment,
|
4348
|
-
{fcfad023-2733-4e4c-a390-024bc4e48e4c}, !- Handle
|
4349
|
-
189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment, !- Name
|
4350
|
-
{6fa7c5d3-838a-4eb4-bb42-47452ea4dfe2}, !- Electric Equipment Definition Name
|
4351
|
-
{41b1ec67-2827-43b4-a3e8-fe55f204bf51}, !- Space or SpaceType Name
|
4352
|
-
, !- Schedule Name
|
4353
|
-
, !- Multiplier
|
4354
|
-
General; !- End-Use Subcategory
|
4355
|
-
|
4356
|
-
OS:ElectricEquipment:Definition,
|
4357
|
-
{6fa7c5d3-838a-4eb4-bb42-47452ea4dfe2}, !- Handle
|
4358
|
-
189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment Definition, !- Name
|
4359
|
-
Watts/Area, !- Design Level Calculation Method
|
4360
|
-
, !- Design Level {W}
|
4361
|
-
16.7917002500672, !- Watts per Space Floor Area {W/m2}
|
4362
|
-
; !- Watts per Person {W/person}
|
4363
|
-
|
4364
|
-
OS:SpaceInfiltration:DesignFlowRate,
|
4365
|
-
{030d89a6-fbaf-446a-9f27-4b25e928f7e8}, !- Handle
|
4366
|
-
189.1-2009 - Office - IT_Room - CZ4-8 Infiltration, !- Name
|
4367
|
-
{41b1ec67-2827-43b4-a3e8-fe55f204bf51}, !- Space or SpaceType Name
|
4368
|
-
, !- Schedule Name
|
4369
|
-
Flow/ExteriorArea, !- Design Flow Rate Calculation Method
|
4370
|
-
, !- Design Flow Rate {m3/s}
|
4371
|
-
, !- Flow per Space Floor Area {m3/s-m2}
|
4372
|
-
0.000226568, !- Flow per Exterior Surface Area {m3/s-m2}
|
4373
|
-
, !- Air Changes per Hour {1/hr}
|
4374
|
-
, !- Constant Term Coefficient
|
4375
|
-
, !- Temperature Term Coefficient
|
4376
|
-
, !- Velocity Term Coefficient
|
4377
|
-
; !- Velocity Squared Term Coefficient
|
4378
|
-
|