forked from TiejunWu/EnergyPlus-IDF-Files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeoverBypassVAV_DrawThrough_Dehumidification.idf
2216 lines (1878 loc) · 103 KB
/
ChangeoverBypassVAV_DrawThrough_Dehumidification.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.50
!-Option SortedOrder 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.
!- =========== ALL OBJECTS IN CLASS: VERSION ===========
! ChangeoverBypassVAV.idf
! Basic file description: 1 story building divided into 3 interior conditioned zones. Roof with no plenum.
! Slab on grade.
!
! Highlights: Example of a Changeover Bypass VAV system with multistage DX cooling coil
! and gas heating coil.
!
! Simulation Location/Run: Miami Intl Ap FL USA WMO=722020, 2 design days, 1 run period,
! Run Control executes the design days only.
!
! Location: Miami, FL
!
! Design Days: Miami Intl Ap FL USA Annual Heating 99.6%, MaxDB=8.7°C
! Miami Intl Ap FL USA Annual Cooling (DB=>MWB) .4%, MaxDB=33.2°C MWB=25.3°C
!
! Run Period (Weather File): Winter 1/21, Summer 7/21.
!
! Run Control: Zone and System sizing required (design day runs only, see RUN CONTROL object)
!
! Building: Single floor rectangular L-shaped building 40 ft south wall, 40 ft west wall, zone height 10 feet.
! There is a single window in the West zone south wall. The walls are 1 in stucco over 4 in common brick
! and gypboard. The roof is a built up roof with 1/2 in stone over 3/8 in felt over 1 in dense insulation
! supported by 2 in heavy weight concrete. The window is single pane 3mm clear.
! The window to wall ratio is approximately 0.07.
!
! The building is oriented due north.
!
! Floor Area: 130.1 m2 (1403 ft2)
! Number of Stories: 1
!
! Zone Description Details:
!
! (0,12.192,0) (9.144,12.192,0)
! ________________________________
! | |
! | |
! | |
! | |
! | North |
! | |
! | |
! | (6.096,6.096,0) |
! |________________________________|____________ (12.192,6.069,0)
! | (0,6.096,0) | (9.144,6.096,0) |
! | | |
! | | |
! | | |
! | West | East | window = *
! | | |
! | | |
! | | |
! |___**************___|________________________|
!
! (0,0,0) (6.069,0,0) (12.192,0,0)
!
! Internal gains description: ZONE West - lighting is 0 watts, equip is 2928.751 watts, 3 occupants
! Internal gains description: ZONE North - lighting is 878.6252 watts, equip is 2928.751 watts, 4 occupants
! Internal gains description: ZONE East - lighting is 1464.375 watts, equip is 1464.375 watts, 3 occupants
!
! Interzone Surfaces: 3 interzone surfaces (see diagram)
! Internal Mass: None
! People: 10
! Lights: 2343 W
! Equipment: 7323 W
! Windows: 1 - single pane clear 3mm glass
! Detached Shading: None
! Daylight: None
! Natural Ventilation: None
! Compact Schedules: Yes
! Solair Distribution: FullInteriorAndExterior
!
! HVAC: 3 zone central system using single air loop. DX cooling coil and gas heating coil.
! Thermostat setting at 20 C in winter with 15 C set back temperature, 24 C in summer
! with 30 C set back temperature. Cooling coil off in winter, heating coil on all year.
!
! Zonal Equipment: 3 - AIR DISTRIBUTION UNIT
! (2 ea. Single Duct:VAVHeatandCool:Reheat, 1 ea. Single Duct:VAVHeatandCool:NoReheat)
! Central Air Handling Equipment: Yes
! System Equipment Autosize: No
! Purchased Cooling: No
! Purchased Heating: No
! Purchased Chilled Water: No
! Purchased Hot Water: No
! HVAC System: UNITARYSYSTEM:VAV:CHANGEOVERBYPASS
! Coils: COIL:DX:MULTIMODE:COOLINGEMPIRICAL, Coil:Heating:Fuel
! Pumps: None
! Boilers: None
! Chillers: None
! Towers: None
!
! Results:
! Standard Reports: None
! Timestep or Hourly Variables: Timestep
! Time bins Report: None
! HTML Report: None
! Environmental Emissions: None
! Utility Tariffs: None
!
Version,9.3;
!- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL ===========
SimulationControl,
Yes, !- Do Zone Sizing Calculation
Yes, !- Do System Sizing Calculation
No, !- Do Plant Sizing Calculation
Yes, !- Run Simulation for Sizing Periods
No; !- Run Simulation for Weather File Run Periods
!- =========== ALL OBJECTS IN CLASS: BUILDING ===========
Building,
NONE, !- Name
0, !- North Axis {deg}
Suburbs, !- Terrain
3.9999999E-02, !- Loads Convergence Tolerance Value {W}
0.4000000, !- Temperature Convergence Tolerance Value {deltaC}
FullInteriorAndExterior, !- Solar Distribution
25, !- Maximum Number of Warmup Days
6; !- Minimum Number of Warmup Days
!- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:INSIDE ===========
SurfaceConvectionAlgorithm:Inside,TARP;
!- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:OUTSIDE ===========
SurfaceConvectionAlgorithm:Outside,DOE-2;
!- =========== ALL OBJECTS IN CLASS: HEATBALANCEALGORITHM ===========
HeatBalanceAlgorithm,ConductionTransferFunction;
!- =========== ALL OBJECTS IN CLASS: TIMESTEP ===========
Timestep,6;
!- =========== ALL OBJECTS IN CLASS: SITE:LOCATION ===========
Site:Location,
Chicago Ohare Intl Ap_IL_USA Design_Conditions, !- Name
41.98, !- Latitude {deg}
-87.92, !- Longitude {deg}
-6.00, !- Time Zone {hr}
201.00; !- Elevation {m}
!- =========== ALL OBJECTS IN CLASS: SIZINGPERIOD:DESIGNDAY ===========
SizingPeriod:DesignDay,
Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name
1, !- Month
21, !- Day of Month
WinterDesignDay, !- Day Type
-20, !- Maximum Dry-Bulb Temperature {C}
0.0, !- Daily Dry-Bulb Temperature Range {deltaC}
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
, !- Dry-Bulb Temperature Range Modifier Day Schedule Name
Wetbulb, !- Humidity Condition Type
-20, !- 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}
98934., !- 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.00; !- Sky Clearness
SizingPeriod:DesignDay,
Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name
7, !- Month
21, !- Day of Month
SummerDesignDay, !- Day Type
33.3, !- Maximum Dry-Bulb Temperature {C}
10.5, !- Daily Dry-Bulb Temperature Range {deltaC}
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
, !- Dry-Bulb Temperature Range Modifier Day Schedule Name
Wetbulb, !- Humidity Condition Type
23.7, !- 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}
98934., !- Barometric Pressure {Pa}
5.2, !- Wind Speed {m/s}
230, !- Wind Direction {deg}
No, !- Rain Indicator
No, !- Snow Indicator
No, !- Daylight Saving Time Indicator
ASHRAETau, !- Solar Model Indicator
, !- Beam Solar Day Schedule Name
, !- Diffuse Solar Day Schedule Name
0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}
2.050; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}
SizingPeriod:DesignDay,
Chicago Ohare January Designday, !- Name
1, !- Month
21, !- Day of Month
SummerDesignDay, !- Day Type
7.9, !- Maximum Dry-Bulb Temperature {C}
9.9, !- Daily Dry-Bulb Temperature Range {deltaC}
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
, !- Dry-Bulb Temperature Range Modifier Day Schedule Name
Wetbulb, !- Humidity Condition Type
7.7, !- 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}
98934., !- Barometric Pressure {Pa}
5.2, !- Wind Speed {m/s}
230, !- Wind Direction {deg}
No, !- Rain Indicator
No, !- Snow Indicator
No, !- Daylight Saving Time Indicator
ASHRAETau, !- Solar Model Indicator
, !- Beam Solar Day Schedule Name
, !- Diffuse Solar Day Schedule Name
0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}
2.050; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}
SizingPeriod:DesignDay,
Chicago Ohare February Designday, !- Name
2, !- Month
21, !- Day of Month
SummerDesignDay, !- Day Type
10.2, !- Maximum Dry-Bulb Temperature {C}
10, !- Daily Dry-Bulb Temperature Range {deltaC}
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
, !- Dry-Bulb Temperature Range Modifier Day Schedule Name
Wetbulb, !- Humidity Condition Type
9.9, !- 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}
98934., !- Barometric Pressure {Pa}
5.2, !- Wind Speed {m/s}
230, !- Wind Direction {deg}
No, !- Rain Indicator
No, !- Snow Indicator
No, !- Daylight Saving Time Indicator
ASHRAETau, !- Solar Model Indicator
, !- Beam Solar Day Schedule Name
, !- Diffuse Solar Day Schedule Name
0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}
2.050; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}
SizingPeriod:DesignDay,
Chicago Ohare March Designday, !- Name
3, !- Month
21, !- Day of Month
SummerDesignDay, !- Day Type
16.8, !- Maximum Dry-Bulb Temperature {C}
9.9, !- Daily Dry-Bulb Temperature Range {deltaC}
DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
, !- Dry-Bulb Temperature Range Modifier Day Schedule Name
Wetbulb, !- Humidity Condition Type
15.7, !- 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}
98934., !- Barometric Pressure {Pa}
5.2, !- Wind Speed {m/s}
230, !- Wind Direction {deg}
No, !- Rain Indicator
No, !- Snow Indicator
No, !- Daylight Saving Time Indicator
ASHRAETau, !- Solar Model Indicator
, !- Beam Solar Day Schedule Name
, !- Diffuse Solar Day Schedule Name
0.455, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless}
2.050; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless}
!- =========== ALL OBJECTS IN CLASS: RUNPERIOD ===========
RunPeriod,
RP1, !- Name
1, !- Begin Month
1, !- Begin Day of Month
, !- Begin Year
12, !- End Month
31, !- End Day of Month
, !- End Year
Tuesday, !- 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
!- =========== ALL OBJECTS IN CLASS: RUNPERIODCONTROL:DAYLIGHTSAVINGTIME ===========
! WMO=722020 Time Zone=NAE (GMT-05:00) Eastern Time (US & Canada)
! Data Source=ASHRAE 2005 Annual Design Conditions
RunPeriodControl:DaylightSavingTime,
1st Sunday in April, !- Start Date
Last Sunday in October; !- End Date
!- =========== ALL OBJECTS IN CLASS: SITE:GROUNDTEMPERATURE:BUILDINGSURFACE ===========
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;
!- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS ===========
ScheduleTypeLimits,
Any Number; !- Name
ScheduleTypeLimits,
Fraction, !- Name
0.0, !- Lower Limit Value
1.0, !- Upper Limit Value
CONTINUOUS; !- Numeric Type
ScheduleTypeLimits,
Percent, !- Name
0.0, !- Lower Limit Value
100.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
!- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT ===========
Schedule:Compact,
Activity Sch, !- Name
Any Number, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,131.8; !- Field 3
Schedule:Compact,
Work Eff Sch, !- Name
Any Number, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,0.0; !- Field 3
Schedule:Compact,
Clothing Sch, !- Name
Any Number, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,1.0; !- Field 3
Schedule:Compact,
Air Velo Sch, !- Name
Any Number, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,0.137; !- Field 3
Schedule:Compact,
OFFICE OCCUPANCY, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: WeekDays SummerDesignDay, !- Field 2
Until: 8:00,0.0, !- Field 3
Until: 8:00,0.50, !- Field 5
Until: 12:00,1.00, !- Field 7
Until: 13:00,0.50, !- Field 9
Until: 16:00,1.00, !- Field 11
Until: 16:30,0.10, !- Field 13
Until: 24:00,0.0, !- Field 15
For: AllOtherDays, !- Field 17
Until: 24:00,0.0; !- Field 18
Schedule:Compact,
INTERMITTENT, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: WeekDays SummerDesignDay, !- Field 2
Until: 8:00,0.0, !- Field 3
Until: 17:00,1.00, !- Field 5
Until: 24:00,0.0, !- Field 7
For: AllOtherDays, !- Field 9
Until: 24:00,0.0; !- Field 10
Schedule:Compact,
OFFICE LIGHTING, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: WeekDays SummerDesignDay, !- Field 2
Until: 6:00,0.05, !- Field 3
Until: 7:00,0.20, !- Field 5
Until: 17:00,1.00, !- Field 7
Until: 17:30,0.50, !- Field 9
Until: 24:00,0.05, !- Field 11
For: AllOtherDays, !- Field 13
Until: 24:00,0.05; !- Field 14
Schedule:Compact,
FanAndCoilAvailSched, !- Name
Fraction, !- Schedule Type Limits Name
Through: 3/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,1.0, !- Field 3
Through: 9/30, !- Field 5
For: WeekDays SummerDesignDay, !- Field 6
Until: 7:00,0.0, !- Field 7
Until: 17:00,1.0, !- Field 9
Until: 24:00,0.0, !- Field 11
For: AllOtherDays, !- Field 13
Until: 24:00,0.0, !- Field 14
Through: 12/31, !- Field 16
For: AllDays, !- Field 17
Until: 24:00,1.0; !- Field 18
Schedule:Compact,
Heating Setpoints, !- Name
Temperature, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 7:00,15.0, !- Field 3
Until: 17:00,20.0, !- Field 5
Until: 24:00,15.0; !- Field 7
Schedule:Compact,
Cooling Setpoints, !- Name
Temperature, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 7:00,30.0, !- Field 3
Until: 17:00,22.3, !- Field 5
Until: 24:00,30.0; !- Field 7
Schedule:Compact,
Zone Control Type Sched, !- Name
Control Type, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,4; !- Field 3
Schedule:Compact,
Outdoor Air Multiplier Schedule, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 7:00,0.0, !- Field 3
Until: 17:00,1.0, !- Field 5
Until: 24:00,0.0; !- Field 7
Schedule:Compact,
Fan OpMode Schedule, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 7:00,0.0, !- Field 3
Until: 17:00,1.0, !- Field 5
Until: 24:00,0.0; !- Field 7
Schedule:Compact,
Min OA Sched, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: Weekdays, !- Field 2
Until: 6:00,0.3, !- Field 3
Until: 18:00,1.0, !- Field 5
Until: 24:00,0.3, !- Field 7
For: SummerDesignDay, !- Field 9
Until: 24:00,1.0, !- Field 10
For: WinterDesignDay, !- Field 12
Until: 24:00,1.0, !- Field 13
For: AllOtherDays, !- Field 15
Until: 24:00,0.3; !- Field 16
Schedule:Compact,
Seasonal Reset Supply Air Temp Sch, !- Name
Temperature, !- Schedule Type Limits Name
Through: 3/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00,20.0, !- Field 3
Through: 9/30, !- Field 5
For: AllDays, !- Field 6
Until: 24:00,18.0, !- Field 7
Through: 12/31, !- Field 9
For: AllDays, !- Field 10
Until: 24:00,20.0; !- Field 11
Schedule:Compact,
INTERMITTENT1, !- Name
Fraction, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: WeekDays WinterDesignDay, !- Field 2
Until: 8:00,0.0, !- Field 3
Until: 17:00,1.00, !- Field 5
Until: 24:00,0.0, !- Field 7
For: AllOtherDays, !- Field 9
Until: 24:00,0.0; !- Field 10
!- =========== ALL OBJECTS IN CLASS: SCHEDULE:CONSTANT ===========
Schedule:Constant,Humidify Setpoint Sch,Percent,0;
Schedule:Constant,Dehumidify Setpoint Sch,Percent,50;
!- =========== ALL OBJECTS IN CLASS: MATERIAL ===========
Material,
A1 - 1 IN STUCCO, !- Name
Smooth, !- Roughness
2.5389841E-02, !- Thickness {m}
0.6918309, !- Conductivity {W/m-K}
1858.142, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.9200000, !- Solar Absorptance
0.9200000; !- Visible Absorptance
Material,
C4 - 4 IN COMMON BRICK, !- Name
Rough, !- Roughness
0.1014984, !- Thickness {m}
0.7264224, !- Conductivity {W/m-K}
1922.216, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7600000, !- Solar Absorptance
0.7600000; !- Visible Absorptance
Material,
E1 - 3 / 4 IN PLASTER OR GYP BOARD, !- Name
Smooth, !- Roughness
1.9050000E-02, !- Thickness {m}
0.7264224, !- Conductivity {W/m-K}
1601.846, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.9200000, !- Solar Absorptance
0.9200000; !- Visible Absorptance
Material,
C6 - 8 IN CLAY TILE, !- Name
Smooth, !- Roughness
0.2033016, !- Thickness {m}
0.5707605, !- Conductivity {W/m-K}
1121.292, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.8200000, !- Solar Absorptance
0.8200000; !- Visible Absorptance
Material,
C10 - 8 IN HW CONCRETE, !- Name
MediumRough, !- Roughness
0.2033016, !- Thickness {m}
1.729577, !- Conductivity {W/m-K}
2242.585, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.6500000, !- Solar Absorptance
0.6500000; !- Visible Absorptance
Material,
E2 - 1 / 2 IN SLAG OR STONE, !- Name
Rough, !- Roughness
1.2710161E-02, !- Thickness {m}
1.435549, !- Conductivity {W/m-K}
881.0155, !- Density {kg/m3}
1673.600, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.5500000, !- Solar Absorptance
0.5500000; !- Visible Absorptance
Material,
E3 - 3 / 8 IN FELT AND MEMBRANE, !- Name
Rough, !- Roughness
9.5402403E-03, !- Thickness {m}
0.1902535, !- Conductivity {W/m-K}
1121.292, !- Density {kg/m3}
1673.600, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7500000, !- Solar Absorptance
0.7500000; !- Visible Absorptance
Material,
B5 - 1 IN DENSE INSULATION, !- Name
VeryRough, !- Roughness
2.5389841E-02, !- Thickness {m}
4.3239430E-02, !- Conductivity {W/m-K}
91.30524, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.5000000, !- Solar Absorptance
0.5000000; !- Visible Absorptance
Material,
C12 - 2 IN HW CONCRETE, !- Name
MediumRough, !- Roughness
5.0901599E-02, !- Thickness {m}
1.729577, !- Conductivity {W/m-K}
2242.585, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.6500000, !- Solar Absorptance
0.6500000; !- Visible Absorptance
!- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:GLAZING ===========
WindowMaterial:Glazing,
WIN-LAY-GLASS-LIGHT, !- Name
SpectralAverage, !- Optical Data Type
, !- Window Glass Spectral Data Set Name
0.003, !- Thickness {m}
0.90, !- Solar Transmittance at Normal Incidence
0.031, !- Front Side Solar Reflectance at Normal Incidence
0.031, !- Back Side Solar Reflectance at Normal Incidence
0.90, !- Visible Transmittance at Normal Incidence
0.05, !- Front Side Visible Reflectance at Normal Incidence
0.05, !- 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}
!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION ===========
Construction,
EXTWALL80, !- Name
A1 - 1 IN STUCCO, !- Outside Layer
C4 - 4 IN COMMON BRICK, !- Layer 2
E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3
Construction,
PARTITION06, !- Name
E1 - 3 / 4 IN PLASTER OR GYP BOARD, !- Outside Layer
C6 - 8 IN CLAY TILE, !- Layer 2
E1 - 3 / 4 IN PLASTER OR GYP BOARD; !- Layer 3
Construction,
FLOOR SLAB 8 IN, !- Name
C10 - 8 IN HW CONCRETE; !- Outside Layer
Construction,
ROOF34, !- Name
E2 - 1 / 2 IN SLAG OR STONE, !- Outside Layer
E3 - 3 / 8 IN FELT AND MEMBRANE, !- Layer 2
B5 - 1 IN DENSE INSULATION, !- Layer 3
C12 - 2 IN HW CONCRETE; !- Layer 4
Construction,
WIN-CON-LIGHT, !- Name
WIN-LAY-GLASS-LIGHT; !- Outside Layer
!- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES ===========
GlobalGeometryRules,
UpperLeftCorner, !- Starting Vertex Position
CounterClockWise, !- Vertex Entry Direction
Relative; !- Coordinate System
!- =========== ALL OBJECTS IN CLASS: ZONE ===========
Zone,
EAST ZONE, !- Name
0, !- Direction of Relative North {deg}
6.096000, !- X Origin {m}
0, !- Y Origin {m}
0, !- Z Origin {m}
1, !- Type
1, !- Multiplier
autocalculate, !- Ceiling Height {m}
autocalculate; !- Volume {m3}
Zone,
NORTH ZONE, !- Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
6.096000, !- Y Origin {m}
0, !- Z Origin {m}
1, !- Type
1, !- Multiplier
autocalculate, !- Ceiling Height {m}
autocalculate; !- Volume {m3}
Zone,
WEST ZONE, !- Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
0, !- Y Origin {m}
0, !- Z Origin {m}
1, !- Type
1, !- Multiplier
autocalculate, !- Ceiling Height {m}
autocalculate; !- Volume {m3}
!- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED ===========
BuildingSurface:Detailed,
Zn001:Wall001, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
WEST ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
0,0,3.048000, !- X,Y,Z ==> Vertex 1 {m}
0,0,0, !- X,Y,Z ==> Vertex 2 {m}
6.096000,0,0, !- X,Y,Z ==> Vertex 3 {m}
6.096000,0,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn001:Wall002, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
WEST ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
0,0,0, !- X,Y,Z ==> Vertex 3 {m}
0,0,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn001:Wall003, !- Name
Wall, !- Surface Type
PARTITION06, !- Construction Name
WEST ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn003:Wall004, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
0,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
0,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn001:Wall004, !- Name
Wall, !- Surface Type
PARTITION06, !- Construction Name
WEST ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn002:Wall004, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
6.096000,0,3.048000, !- X,Y,Z ==> Vertex 1 {m}
6.096000,0,0, !- X,Y,Z ==> Vertex 2 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn001:Flr001, !- Name
Floor, !- Surface Type
FLOOR SLAB 8 IN, !- Construction Name
WEST ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn001:Flr001, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
1.000000, !- View Factor to Ground
4, !- Number of Vertices
0,0,0, !- X,Y,Z ==> Vertex 1 {m}
0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
6.096000,0,0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn001:Roof001, !- Name
Roof, !- Surface Type
ROOF34, !- Construction Name
WEST ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0, !- View Factor to Ground
4, !- Number of Vertices
0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
0,0,3.048000, !- X,Y,Z ==> Vertex 2 {m}
6.096000,0,3.048000, !- X,Y,Z ==> Vertex 3 {m}
6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn002:Wall001, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
EAST ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
12.19200,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
12.19200,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
9.144000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
9.144000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn002:Wall002, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
EAST ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
6.096000,0,3.048000, !- X,Y,Z ==> Vertex 1 {m}
6.096000,0,0, !- X,Y,Z ==> Vertex 2 {m}
12.19200,0,0, !- X,Y,Z ==> Vertex 3 {m}
12.19200,0,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn002:Wall003, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
EAST ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
12.19200,0,3.048000, !- X,Y,Z ==> Vertex 1 {m}
12.19200,0,0, !- X,Y,Z ==> Vertex 2 {m}
12.19200,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
12.19200,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn002:Wall004, !- Name
Wall, !- Surface Type
PARTITION06, !- Construction Name
EAST ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn001:Wall004, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
6.096000,0,0, !- X,Y,Z ==> Vertex 3 {m}
6.096000,0,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn002:Wall005, !- Name
Wall, !- Surface Type
PARTITION06, !- Construction Name
EAST ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn003:Wall005, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
9.144000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn002:Flr001, !- Name
Floor, !- Surface Type
FLOOR SLAB 8 IN, !- Construction Name
EAST ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn002:Flr001, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
1.000000, !- View Factor to Ground
4, !- Number of Vertices
6.096000,0,0, !- X,Y,Z ==> Vertex 1 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
12.19200,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
12.19200,0,0; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn002:Roof001, !- Name
Roof, !- Surface Type
ROOF34, !- Construction Name
EAST ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0, !- View Factor to Ground
4, !- Number of Vertices
6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
6.096000,0,3.048000, !- X,Y,Z ==> Vertex 2 {m}
12.19200,0,3.048000, !- X,Y,Z ==> Vertex 3 {m}
12.19200,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn003:Wall001, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
NORTH ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
0,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m}
0,12.19200,0, !- X,Y,Z ==> Vertex 2 {m}
0,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
0,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn003:Wall002, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
NORTH ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
9.144000,12.19200,3.048000, !- X,Y,Z ==> Vertex 1 {m}
9.144000,12.19200,0, !- X,Y,Z ==> Vertex 2 {m}
0,12.19200,0, !- X,Y,Z ==> Vertex 3 {m}
0,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn003:Wall003, !- Name
Wall, !- Surface Type
EXTWALL80, !- Construction Name
NORTH ZONE, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
9.144000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
9.144000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
9.144000,12.19200,0, !- X,Y,Z ==> Vertex 3 {m}
9.144000,12.19200,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn003:Wall004, !- Name
Wall, !- Surface Type
PARTITION06, !- Construction Name
NORTH ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn001:Wall003, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
0,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
0,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 3 {m}
6.096000,6.096000,3.048000; !- X,Y,Z ==> Vertex 4 {m}
BuildingSurface:Detailed,
Zn003:Wall005, !- Name
Wall, !- Surface Type
PARTITION06, !- Construction Name
NORTH ZONE, !- Zone Name
Surface, !- Outside Boundary Condition
Zn002:Wall005, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
0.5000000, !- View Factor to Ground
4, !- Number of Vertices
6.096000,6.096000,3.048000, !- X,Y,Z ==> Vertex 1 {m}
6.096000,6.096000,0, !- X,Y,Z ==> Vertex 2 {m}