-
Notifications
You must be signed in to change notification settings - Fork 3
/
5ZoneAirCooled.idf
3458 lines (3096 loc) · 157 KB
/
5ZoneAirCooled.idf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
!-Generator IDFEditor 1.34
!-Option OriginalOrderTop UseSpecialFormat
!-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically.
!- Use '!' comments if they need to be retained when using the IDFEditor.
! 5ZoneAirCooled.idf
! Basic file description: 1 story building divided into 4 exterior and one interior conditioned zones and return plenum.
!
! Highlights: Electric chiller with air cooled condenser; autosized preheating and precooling water coils in the
! outside air stream controlled to preheat and precool setpoints.
!
! Simulation Location/Run: CHICAGO_IL_USA TMY2-94846, 2 design days, 2 run periods,
! Run Control executes the run periods using the weather file
!
! Location: Chicago, IL
!
! Design Days: CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C
! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C
!
! Run Period (Weather File): 1/1 through 12/31, CHICAGO_IL_USA TMY2-94846
!
! Run Control: Zone and System sizing with weather file run control (no design days run)
!
! Building: Single floor rectangular building 100 ft x 50 ft. 5 zones - 4 exterior, 1 interior, zone height 8 feet.
! Exterior zone depth is 12 feet. There is a 2 foot high return plenum: the overall building height is
! 10 feet. There are windows on all 4 facades; the south and north facades have glass doors.
! The south facing glass is shaded by overhangs. The walls are woodshingle over plywood, R11 insulation,
! and gypboard. The roof is a gravel built up roof with R-3 mineral board insulation and plywood sheathing.
! The windows are of various single and double pane construction with 3mm and 6mm glass and either 6mm or
! 13mm argon or air gap. The window to wall ratio is approximately 0.29.
! The south wall and door have overhangs.
!
! The building is oriented 30 degrees east of north.
!
! Floor Area: 463.6 m2 (5000 ft2)
! Number of Stories: 1
!
! Zone Description Details:
!
! (0,15.2,0) (30.5,15.2,0)
! _____ ________ ____
! |\ *** **************** /|
! | \ / |
! | \ (26.8,11.6,0) / |
! * \_____________________________/ *
! * |(3.7,11.6,0) | *
! * | | *
! * | | *
! * | (26.8,3.7,0)| *
! * |___________________________| *
! * / (3.7,3.7,0) \ *
! | / \ |
! | / \ |
! |/___******************___***________\|
! | Overhang | |
! |_______________________| | window/door = *
! |___|
!
! (0,0,0) (30.5,0,0)
!
! Internal gains description: lighting is 1.5 watts/ft2, office equip is 1.0 watts/ft2. There is 1 occupant
! per 100 ft2 of floor area. The infiltration is 0.25 air changes per hour.
!
! Interzone Surfaces: 6 interzone surfaces (see diagram)
! Internal Mass: None
! People: 50
! Lights: 7500 W
! Windows: 4 ea.: 1) Double pane clear, 3mm glass, 13mm air gap
! 2) Double pane clear, 3mm glass, 13mm argon gap
! 3) Double pane clear, 6mm glass, 6mm air gap
! 4) Double pane lowE, 6mm lowE glass outside, 6mm air gap, 6mm clear glass
!
! Doors: 2 ea.: Single pane grey, 3mm glass
!
! Detached Shading: None
! Daylight: None
! Natural Ventilation: None
! Compact Schedules: Yes
!
! HVAC: Standard VAV system with outside air, hot water reheat coils,
! central chilled water cooling coil. Central Plant is single hot water
! boiler, electric compression chiller with air cooled condenser.
! All equipment is autosized. HW and ChW coils are used in the outside air
! stream to precondition the outside air.
!
! Zonal Equipment: AirTerminal:SingleDuct:VAV:Reheat
! Central Air Handling Equipment: Yes
! System Equipment Autosize: Yes
! Purchased Cooling: None
! Purchased Heating: None
! Coils: Coil:Cooling:Water, Coil:Heating:Water
! Pumps: Pump:VariableSpeed
! Boilers: Boiler:HotWater
! Chillers: Chiller:Electric
!
! Results:
! Standard Reports: None
! Timestep or Hourly Variables: Hourly
! Time bins Report: None
! HTML Report: None
! Environmental Emissions: None
! Utility Tariffs: None
Version,9.3;
Building,
Building, !- Name
30., !- North Axis {deg}
City, !- Terrain
0.04, !- Loads Convergence Tolerance Value {W}
0.4, !- Temperature Convergence Tolerance Value {deltaC}
FullExterior, !- Solar Distribution
25, !- Maximum Number of Warmup Days
6; !- Minimum Number of Warmup Days
Timestep,50;
SurfaceConvectionAlgorithm:Inside,Simple;
SurfaceConvectionAlgorithm:Outside,SimpleCombined;
HeatBalanceAlgorithm,ConductionTransferFunction;
GlobalGeometryRules,
UpperLeftCorner, !- Starting Vertex Position
CounterClockWise, !- Vertex Entry Direction
Relative; !- Coordinate System
ScheduleTypeLimits,
Any Number; !- Name
ScheduleTypeLimits,
Fraction, !- Name
0.0, !- Lower Limit Value
1.0, !- Upper Limit Value
CONTINUOUS; !- Numeric Type
ScheduleTypeLimits,
Temperature, !- Name
-60, !- Lower Limit Value
200, !- Upper Limit Value
CONTINUOUS, !- Numeric Type
Temperature; !- Unit Type
ScheduleTypeLimits,
Control Type, !- Name
0, !- Lower Limit Value
4, !- Upper Limit Value
DISCRETE; !- Numeric Type
ScheduleTypeLimits,
On/Off, !- Name
0, !- Lower Limit Value
1, !- Upper Limit Value
DISCRETE; !- Numeric Type
ScheduleTypeLimits,
FlowRate, !- Name
0.0, !- Lower Limit Value
10, !- Upper Limit Value
CONTINUOUS; !- Numeric Type
RunPeriod,
One Day, !- Name
1, !- Begin Month
1, !- Begin Day of Month
, !- Begin Year
1, !- End Month
1, !- End Day of Month
, !- End Year
, !- Day of Week for Start Day
Yes, !- Use Weather File Holidays and Special Days
Yes, !- Use Weather File Daylight Saving Period
No, !- Apply Weekend Holiday Rule
Yes, !- Use Weather File Rain Indicators
Yes; !- Use Weather File Snow Indicators
Site:Location,
CHICAGO_IL_USA TMY2-94846, !- Name
41.78, !- Latitude {deg}
-87.75, !- Longitude {deg}
-6.00, !- Time Zone {hr}
190.00; !- Elevation {m}
SimulationControl,
Yes, !- Do Zone Sizing Calculation
Yes, !- Do System Sizing Calculation
Yes, !- Do Plant Sizing Calculation
No, !- Run Simulation for Sizing Periods
Yes; !- Run Simulation for Weather File Run Periods
! CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C
SizingPeriod:DesignDay,
CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, !- Name
1, !- Month
21, !- Day of Month
WinterDesignDay, !- Day Type
-17.3, !- Maximum Dry-Bulb Temperature {C}
0.0, !- Daily Dry-Bulb Temperature Range {deltaC}
, !- Dry-Bulb Temperature Range Modifier Type
, !- Dry-Bulb Temperature Range Modifier Day Schedule Name
Wetbulb, !- Humidity Condition Type
-17.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C}
, !- Humidity Condition Day Schedule Name
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
, !- Daily Wet-Bulb Temperature Range {deltaC}
99063., !- Barometric Pressure {Pa}
4.9, !- Wind Speed {m/s}
270, !- Wind Direction {deg}
No, !- Rain Indicator
No, !- Snow Indicator
No, !- Daylight Saving Time Indicator
ASHRAEClearSky, !- Solar Model Indicator
, !- Beam Solar Day Schedule Name
, !- Diffuse Solar Day Schedule Name
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}
0.0; !- Sky Clearness
! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C
SizingPeriod:DesignDay,
CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB, !- Name
7, !- Month
21, !- Day of Month
SummerDesignDay, !- Day Type
31.5, !- Maximum Dry-Bulb Temperature {C}
10.7, !- Daily Dry-Bulb Temperature Range {deltaC}
, !- Dry-Bulb Temperature Range Modifier Type
, !- Dry-Bulb Temperature Range Modifier Day Schedule Name
Wetbulb, !- Humidity Condition Type
23.0, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C}
, !- Humidity Condition Day Schedule Name
, !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
, !- Enthalpy at Maximum Dry-Bulb {J/kg}
, !- Daily Wet-Bulb Temperature Range {deltaC}
99063., !- Barometric Pressure {Pa}
5.3, !- Wind Speed {m/s}
230, !- Wind Direction {deg}
No, !- Rain Indicator
No, !- Snow Indicator
No, !- Daylight Saving Time Indicator
ASHRAEClearSky, !- Solar Model Indicator
, !- Beam Solar Day Schedule Name
, !- Diffuse Solar Day Schedule Name
, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}
, !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}
1.0; !- Sky Clearness
Site:GroundTemperature:BuildingSurface,20.03,20.03,20.13,20.30,20.43,20.52,20.62,20.77,20.78,20.55,20.44,20.20;
Material,
WD10, !- Name
MediumSmooth, !- Roughness
0.667, !- Thickness {m}
0.115, !- Conductivity {W/m-K}
513, !- Density {kg/m3}
1381, !- Specific Heat {J/kg-K}
0.9, !- Thermal Absorptance
0.78, !- Solar Absorptance
0.78; !- Visible Absorptance
Material,
RG01, !- Name
Rough, !- Roughness
1.2700000E-02, !- Thickness {m}
1.442000, !- Conductivity {W/m-K}
881.0000, !- Density {kg/m3}
1674.000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.6500000, !- Solar Absorptance
0.6500000; !- Visible Absorptance
Material,
BR01, !- Name
VeryRough, !- Roughness
9.4999997E-03, !- Thickness {m}
0.1620000, !- Conductivity {W/m-K}
1121.000, !- Density {kg/m3}
1464.000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7000000, !- Solar Absorptance
0.7000000; !- Visible Absorptance
Material,
IN46, !- Name
VeryRough, !- Roughness
7.6200001E-02, !- Thickness {m}
2.3000000E-02, !- Conductivity {W/m-K}
24.00000, !- Density {kg/m3}
1590.000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.5000000, !- Solar Absorptance
0.5000000; !- Visible Absorptance
Material,
WD01, !- Name
MediumSmooth, !- Roughness
1.9099999E-02, !- Thickness {m}
0.1150000, !- Conductivity {W/m-K}
513.0000, !- Density {kg/m3}
1381.000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7800000, !- Solar Absorptance
0.7800000; !- Visible Absorptance
Material,
PW03, !- Name
MediumSmooth, !- Roughness
1.2700000E-02, !- Thickness {m}
0.1150000, !- Conductivity {W/m-K}
545.0000, !- Density {kg/m3}
1213.000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7800000, !- Solar Absorptance
0.7800000; !- Visible Absorptance
Material,
IN02, !- Name
Rough, !- Roughness
9.0099998E-02, !- Thickness {m}
4.3000001E-02, !- Conductivity {W/m-K}
10.00000, !- Density {kg/m3}
837.0000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7500000, !- Solar Absorptance
0.7500000; !- Visible Absorptance
Material,
GP01, !- Name
MediumSmooth, !- Roughness
1.2700000E-02, !- Thickness {m}
0.1600000, !- Conductivity {W/m-K}
801.0000, !- Density {kg/m3}
837.0000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7500000, !- Solar Absorptance
0.7500000; !- Visible Absorptance
Material,
GP02, !- Name
MediumSmooth, !- Roughness
1.5900001E-02, !- Thickness {m}
0.1600000, !- Conductivity {W/m-K}
801.0000, !- Density {kg/m3}
837.0000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7500000, !- Solar Absorptance
0.7500000; !- Visible Absorptance
Material,
CC03, !- Name
MediumRough, !- Roughness
0.1016000, !- Thickness {m}
1.310000, !- Conductivity {W/m-K}
2243.000, !- Density {kg/m3}
837.0000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.6500000, !- Solar Absorptance
0.6500000; !- Visible Absorptance
Material:NoMass,
CP01, !- Name
Rough, !- Roughness
0.3670000, !- Thermal Resistance {m2-K/W}
0.9000000, !- Thermal Absorptance
0.7500000, !- Solar Absorptance
0.7500000; !- Visible Absorptance
Material:NoMass,
MAT-CLNG-1, !- Name
Rough, !- Roughness
0.652259290, !- Thermal Resistance {m2-K/W}
0.65, !- Thermal Absorptance
0.65, !- Solar Absorptance
0.65; !- Visible Absorptance
Material:AirGap,
AL21, !- Name
0.1570000; !- Thermal Resistance {m2-K/W}
Material:AirGap,
AL23, !- Name
0.1530000; !- Thermal Resistance {m2-K/W}
Construction,
ROOF-1, !- Name
RG01, !- Outside Layer
BR01, !- Layer 2
IN46, !- Layer 3
WD01; !- Layer 4
Construction,
WALL-1, !- Name
WD01, !- Outside Layer
PW03, !- Layer 2
IN02, !- Layer 3
GP01; !- Layer 4
Construction,
CLNG-1, !- Name
MAT-CLNG-1; !- Outside Layer
Construction,
FLOOR-SLAB-1, !- Name
CC03; !- Outside Layer
Construction,
INT-WALL-1, !- Name
GP02, !- Outside Layer
AL21, !- Layer 2
GP02; !- Layer 3
WindowMaterial:Gas,
AIR 13MM, !- Name
Air, !- Gas Type
0.0127; !- Thickness {m}
WindowMaterial:Glazing,
CLEAR 3MM, !- Name
SpectralAverage, !- Optical Data Type
, !- Window Glass Spectral Data Set Name
0.003, !- Thickness {m}
0.837, !- Solar Transmittance at Normal Incidence
0.075, !- Front Side Solar Reflectance at Normal Incidence
0.075, !- Back Side Solar Reflectance at Normal Incidence
0.898, !- Visible Transmittance at Normal Incidence
0.081, !- Front Side Visible Reflectance at Normal Incidence
0.081, !- Back Side Visible Reflectance at Normal Incidence
0.0, !- Infrared Transmittance at Normal Incidence
0.84, !- Front Side Infrared Hemispherical Emissivity
0.84, !- Back Side Infrared Hemispherical Emissivity
0.9; !- Conductivity {W/m-K}
WindowMaterial:Glazing,
GREY 3MM, !- Name
SpectralAverage, !- Optical Data Type
, !- Window Glass Spectral Data Set Name
0.003, !- Thickness {m}
0.626, !- Solar Transmittance at Normal Incidence
0.061, !- Front Side Solar Reflectance at Normal Incidence
0.061, !- Back Side Solar Reflectance at Normal Incidence
0.611, !- Visible Transmittance at Normal Incidence
0.061, !- Front Side Visible Reflectance at Normal Incidence
0.061, !- Back Side Visible Reflectance at Normal Incidence
0.0, !- Infrared Transmittance at Normal Incidence
0.84, !- Front Side Infrared Hemispherical Emissivity
0.84, !- Back Side Infrared Hemispherical Emissivity
0.9; !- Conductivity {W/m-K}
Construction,
Dbl Clr 3mm/13mm Air, !- Name
CLEAR 3MM, !- Outside Layer
AIR 13MM, !- Layer 2
CLEAR 3MM; !- Layer 3
Construction,
Sgl Grey 3mm, !- Name
GREY 3MM; !- Outside Layer
Schedule:Compact,
OCCUPY-1, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2
Until: 8:00,0.0, !- Field 3
Until: 11:00,1.00, !- Field 5
Until: 12:00,0.80, !- Field 7
Until: 13:00,0.40, !- Field 9
Until: 14:00,0.80, !- Field 11
Until: 18:00,1.00, !- Field 13
Until: 19:00,0.50, !- Field 15
Until: 24:00,0.0, !- Field 17
For: Weekends WinterDesignDay Holiday, !- Field 19
Until: 24:00,0.0; !- Field 20
Schedule:Compact,
LIGHTS-1, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2
Until: 8:00,0.05, !- Field 3
Until: 9:00,0.9, !- Field 5
Until: 10:00,0.95, !- Field 7
Until: 11:00,1.00, !- Field 9
Until: 12:00,0.95, !- Field 11
Until: 13:00,0.8, !- Field 13
Until: 14:00,0.9, !- Field 15
Until: 18:00,1.00, !- Field 17
Until: 19:00,0.60, !- Field 19
Until: 21:00,0.20, !- Field 21
Until: 24:00,0.05, !- Field 23
For: Weekends WinterDesignDay Holiday, !- Field 25
Until: 24:00,0.05; !- Field 26
Schedule:Compact,
EQUIP-1, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: WeekDays SummerDesignDay CustomDay1 CustomDay2, !- Field 2
Until: 8:00,0.02, !- Field 3
Until: 9:00,0.4, !- Field 5
Until: 14:00,0.9, !- Field 7
Until: 15:00,0.8, !- Field 9
Until: 16:00,0.7, !- Field 11
Until: 18:00,0.5, !- Field 13
Until: 20:00,0.3, !- Field 15
Until: 24:00,0.02, !- Field 17
For: Weekends WinterDesignDay Holiday, !- Field 19
Until: 24:00,0.2; !- Field 20
Schedule:Compact,
INFIL-SCH, !- Name
Fraction, !- Schedule Type Limits Name
Through: 3/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,1.0, !- Field 3
Through: 10/31, !- Field 5
For: AllDays, !- Field 6
Until: 24:00,0.0, !- Field 7
Through: 12/31, !- Field 9
For: AllDays, !- Field 10
Until: 24:00,1.0; !- Field 11
Schedule:Compact,
ActSchd, !- Name
Any Number, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,117.239997864; !- Field 3
!- Field 4
Schedule:Compact,
ShadeTransSch, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,0.0; !- Field 3
Zone,
PLENUM-1, !- Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
0, !- Y Origin {m}
0, !- Z Origin {m}
1, !- Type
1, !- Multiplier
0.609600067, !- Ceiling Height {m}
283.2; !- Volume {m3}
BuildingSurface:Detailed,
WALL-1PF, !- Name
WALL, !- Surface Type
WALL-1, !- Construction Name
PLENUM-1, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.50000, !- View Factor to Ground
4, !- Number of Vertices
0.0,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m}
0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m}
30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m}
30.5,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
WALL-1PR, !- Name
WALL, !- Surface Type
WALL-1, !- Construction Name
PLENUM-1, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.50000, !- View Factor to Ground
4, !- Number of Vertices
30.5,0.0,3.0, !- X,Y,Z ==> Vertex 1 {m}
30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m}
30.5,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m}
30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
WALL-1PB, !- Name
WALL, !- Surface Type
WALL-1, !- Construction Name
PLENUM-1, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.50000, !- View Factor to Ground
4, !- Number of Vertices
30.5,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m}
30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m}
0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m}
0.0,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
WALL-1PL, !- Name
WALL, !- Surface Type
WALL-1, !- Construction Name
PLENUM-1, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.50000, !- View Factor to Ground
4, !- Number of Vertices
0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m}
0.0,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m}
0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m}
0.0,0.0,3.0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
TOP-1, !- Name
ROOF, !- Surface Type
ROOF-1, !- Construction Name
PLENUM-1, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.00000, !- View Factor to Ground
4, !- Number of Vertices
0.0,15.2,3.0, !- X,Y,Z ==> Vertex 1 {m}
0.0,0.0,3.0, !- X,Y,Z ==> Vertex 2 {m}
30.5,0.0,3.0, !- X,Y,Z ==> Vertex 3 {m}
30.5,15.2,3.0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
C1-1P, !- Name
FLOOR, !- Surface Type
CLNG-1, !- Construction Name
PLENUM-1, !- Zone Name
Surface, !- Outside Boundary Condition
C1-1, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m}
30.5,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m}
0.0,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m}
3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
C2-1P, !- Name
FLOOR, !- Surface Type
CLNG-1, !- Construction Name
PLENUM-1, !- Zone Name
Surface, !- Outside Boundary Condition
C2-1, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m}
30.5,15.2,2.4, !- X,Y,Z ==> Vertex 2 {m}
30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m}
26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
C3-1P, !- Name
FLOOR, !- Surface Type
CLNG-1, !- Construction Name
PLENUM-1, !- Zone Name
Surface, !- Outside Boundary Condition
C3-1, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m}
3.7,11.6,2.4, !- X,Y,Z ==> Vertex 2 {m}
0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m}
30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
C4-1P, !- Name
FLOOR, !- Surface Type
CLNG-1, !- Construction Name
PLENUM-1, !- Zone Name
Surface, !- Outside Boundary Condition
C4-1, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m}
0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m}
0.0,15.2,2.4, !- X,Y,Z ==> Vertex 3 {m}
3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
C5-1P, !- Name
FLOOR, !- Surface Type
CLNG-1, !- Construction Name
PLENUM-1, !- Zone Name
Surface, !- Outside Boundary Condition
C5-1, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
26.8,11.6,2.4, !- X,Y,Z ==> Vertex 1 {m}
26.8,3.7,2.4, !- X,Y,Z ==> Vertex 2 {m}
3.7,3.7,2.4, !- X,Y,Z ==> Vertex 3 {m}
3.7,11.6,2.4; !- X,Y,Z ==> Vertex 4 {m}
Zone,
SPACE1-1, !- Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
0, !- Y Origin {m}
0, !- Z Origin {m}
1, !- Type
1, !- Multiplier
2.438400269, !- Ceiling Height {m}
239.247360229; !- Volume {m3}
ZoneInfiltration:DesignFlowRate,
SPACE1-1 Infil 1, !- Name
SPACE1-1, !- Zone or ZoneList Name
INFIL-SCH, !- Schedule Name
flow/zone, !- Design Flow Rate Calculation Method
0.032, !- Design Flow Rate {m3/s}
, !- Flow per Zone Floor Area {m3/s-m2}
, !- Flow per Exterior Surface Area {m3/s-m2}
, !- Air Changes per Hour {1/hr}
0, !- Constant Term Coefficient
0, !- Temperature Term Coefficient
0.2237, !- Velocity Term Coefficient
0; !- Velocity Squared Term Coefficient
People,
SPACE1-1 People 1, !- Name
SPACE1-1, !- Zone or ZoneList Name
OCCUPY-1, !- Number of People Schedule Name
people, !- Number of People Calculation Method
11, !- Number of People
, !- People per Zone Floor Area {person/m2}
, !- Zone Floor Area per Person {m2/person}
0.3, !- Fraction Radiant
, !- Sensible Heat Fraction
ActSchd; !- Activity Level Schedule Name
Lights,
SPACE1-1 Lights 1, !- Name
SPACE1-1, !- Zone or ZoneList Name
LIGHTS-1, !- Schedule Name
LightingLevel, !- Design Level Calculation Method
1584, !- Lighting Level {W}
, !- Watts per Zone Floor Area {W/m2}
, !- Watts per Person {W/person}
0.2, !- Return Air Fraction
0.59, !- Fraction Radiant
0.2, !- Fraction Visible
0, !- Fraction Replaceable
GeneralLights; !- End-Use Subcategory
ElectricEquipment,
SPACE1-1 ElecEq 1, !- Name
SPACE1-1, !- Zone or ZoneList Name
EQUIP-1, !- Schedule Name
EquipmentLevel, !- Design Level Calculation Method
1056, !- Design Level {W}
, !- Watts per Zone Floor Area {W/m2}
, !- Watts per Person {W/person}
0, !- Fraction Latent
0.3, !- Fraction Radiant
0; !- Fraction Lost
BuildingSurface:Detailed,
FRONT-1, !- Name
WALL, !- Surface Type
WALL-1, !- Construction Name
SPACE1-1, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.50000, !- View Factor to Ground
4, !- Number of Vertices
0.0,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m}
0.0,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m}
30.5,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m}
30.5,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m}
FenestrationSurface:Detailed,
WF-1, !- Name
WINDOW, !- Surface Type
Dbl Clr 3mm/13mm Air, !- Construction Name
FRONT-1, !- Building Surface Name
, !- Outside Boundary Condition Object
0.50000, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
4, !- Number of Vertices
3.0,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m}
3.0,0.0,0.9, !- X,Y,Z ==> Vertex 2 {m}
16.8,0.0,0.9, !- X,Y,Z ==> Vertex 3 {m}
16.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m}
FenestrationSurface:Detailed,
DF-1, !- Name
GLASSDOOR, !- Surface Type
Sgl Grey 3mm, !- Construction Name
FRONT-1, !- Building Surface Name
, !- Outside Boundary Condition Object
0.50000, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
4, !- Number of Vertices
21.3,0.0,2.1, !- X,Y,Z ==> Vertex 1 {m}
21.3,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m}
23.8,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m}
23.8,0.0,2.1; !- X,Y,Z ==> Vertex 4 {m}
Shading:Zone:Detailed,
Main South Overhang, !- Name
FRONT-1, !- Base Surface Name
ShadeTransSch, !- Transmittance Schedule Name
4, !- Number of Vertices
0.0,-1.3,2.2, !- X,Y,Z ==> Vertex 1 {m}
0.0,0.0,2.2, !- X,Y,Z ==> Vertex 2 {m}
19.8,0.0,2.2, !- X,Y,Z ==> Vertex 3 {m}
19.8,-1.3,2.2; !- X,Y,Z ==> Vertex 4 {m}
Shading:Zone:Detailed,
South Door Overhang, !- Name
FRONT-1, !- Base Surface Name
ShadeTransSch, !- Transmittance Schedule Name
4, !- Number of Vertices
21.0,-2.0,2.6, !- X,Y,Z ==> Vertex 1 {m}
21.0,0.0,2.6, !- X,Y,Z ==> Vertex 2 {m}
24.1,0.0,2.6, !- X,Y,Z ==> Vertex 3 {m}
24.1,-2.0,2.6; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
C1-1, !- Name
CEILING, !- Surface Type
CLNG-1, !- Construction Name
SPACE1-1, !- Zone Name
Surface, !- Outside Boundary Condition
C1-1P, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m}
0.0,0.0,2.4, !- X,Y,Z ==> Vertex 2 {m}
30.5,0.0,2.4, !- X,Y,Z ==> Vertex 3 {m}
26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
F1-1, !- Name
FLOOR, !- Surface Type
FLOOR-SLAB-1, !- Construction Name
SPACE1-1, !- Zone Name
Ground, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
26.8,3.7,0.0, !- X,Y,Z ==> Vertex 1 {m}
30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m}
0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m}
3.7,3.7,0.0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
SB12, !- Name
WALL, !- Surface Type
INT-WALL-1, !- Construction Name
SPACE1-1, !- Zone Name
Surface, !- Outside Boundary Condition
SB21, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m}
30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m}
26.8,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m}
26.8,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
SB14, !- Name
WALL, !- Surface Type
INT-WALL-1, !- Construction Name
SPACE1-1, !- Zone Name
Surface, !- Outside Boundary Condition
SB41, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
3.7,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m}
3.7,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m}
0.0,0.0,0.0, !- X,Y,Z ==> Vertex 3 {m}
0.0,0.0,2.4; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
SB15, !- Name
WALL, !- Surface Type
INT-WALL-1, !- Construction Name
SPACE1-1, !- Zone Name
Surface, !- Outside Boundary Condition
SB51, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.0, !- View Factor to Ground
4, !- Number of Vertices
26.8,3.7,2.4, !- X,Y,Z ==> Vertex 1 {m}
26.8,3.7,0.0, !- X,Y,Z ==> Vertex 2 {m}
3.7,3.7,0.0, !- X,Y,Z ==> Vertex 3 {m}
3.7,3.7,2.4; !- X,Y,Z ==> Vertex 4 {m}
Zone,
SPACE2-1, !- Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
0, !- Y Origin {m}
0, !- Z Origin {m}
1, !- Type
1, !- Multiplier
2.438400269, !- Ceiling Height {m}
103.311355591; !- Volume {m3}
ZoneInfiltration:DesignFlowRate,
SPACE2-1 Infil 1, !- Name
SPACE2-1, !- Zone or ZoneList Name
INFIL-SCH, !- Schedule Name
flow/zone, !- Design Flow Rate Calculation Method
0.014, !- Design Flow Rate {m3/s}
, !- Flow per Zone Floor Area {m3/s-m2}
, !- Flow per Exterior Surface Area {m3/s-m2}
, !- Air Changes per Hour {1/hr}
0, !- Constant Term Coefficient
0, !- Temperature Term Coefficient
0.2237, !- Velocity Term Coefficient
0; !- Velocity Squared Term Coefficient
People,
SPACE2-1 People 1, !- Name
SPACE2-1, !- Zone or ZoneList Name
OCCUPY-1, !- Number of People Schedule Name
people, !- Number of People Calculation Method
5, !- Number of People
, !- People per Zone Floor Area {person/m2}
, !- Zone Floor Area per Person {m2/person}
0.3, !- Fraction Radiant
, !- Sensible Heat Fraction
ActSchd; !- Activity Level Schedule Name
Lights,
SPACE2-1 Lights 1, !- Name
SPACE2-1, !- Zone or ZoneList Name
LIGHTS-1, !- Schedule Name
LightingLevel, !- Design Level Calculation Method
684, !- Lighting Level {W}
, !- Watts per Zone Floor Area {W/m2}
, !- Watts per Person {W/person}
0.2, !- Return Air Fraction
0.59, !- Fraction Radiant
0.2, !- Fraction Visible
0, !- Fraction Replaceable
GeneralLights; !- End-Use Subcategory
ElectricEquipment,
SPACE2-1 ElecEq 1, !- Name
SPACE2-1, !- Zone or ZoneList Name
EQUIP-1, !- Schedule Name
EquipmentLevel, !- Design Level Calculation Method
456, !- Design Level {W}
, !- Watts per Zone Floor Area {W/m2}
, !- Watts per Person {W/person}
0, !- Fraction Latent
0.3, !- Fraction Radiant
0; !- Fraction Lost
BuildingSurface:Detailed,
RIGHT-1, !- Name
WALL, !- Surface Type
WALL-1, !- Construction Name
SPACE2-1, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.50000, !- View Factor to Ground
4, !- Number of Vertices
30.5,0.0,2.4, !- X,Y,Z ==> Vertex 1 {m}
30.5,0.0,0.0, !- X,Y,Z ==> Vertex 2 {m}
30.5,15.2,0.0, !- X,Y,Z ==> Vertex 3 {m}
30.5,15.2,2.4; !- X,Y,Z ==> Vertex 4 {m}