forked from SongChao111/Multi-output-GP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRefBldgLargeOfficeNew2004_Chicago.idf
9196 lines (8407 loc) · 452 KB
/
RefBldgLargeOfficeNew2004_Chicago.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 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.
! RefBldgLargeOfficeNew2004_Chicago.idf
!
! This example file is based on Version 1.3_5.0 and was transitioned to Version 6.0 using the transition utility
!
! DOE Commercial Reference Building
! Large office, new construction 90.1-2004
! Version 1.3_5.0
! EnergyPlus Version 6.0
! ASHRAE Standards 90.1-2004 and 62-1999
!
! Description: 12 story plus basement, office building.
! Form: Area = 46,320 m2 (498,588 ft2); Number of Stories = 12; Shape = rectangle, Aspect ratio = 1.5
! Envelope: Envelope thermal properties vary with climate according to ASHRAE Standard 90.1-2004.
! Opaque constructions: mass walls; built-up flat roof (insulation above deck); slab-on-grade floor
! Windows: window-to-wall ratio = 38.0%, equal distribution of windows
! Infiltration in perimeter zones only
! = 0.4 cfm/ft2 above grade wall area at 0.3 in wc (75 Pa) adjusted to 0.016 in wc (4 Pa).
! 25% of full value when ventilation system on.
! HVAC: 2 water-cooled chillers, VAV with reheat and plenum zones
! Economizer per 90.1-2004
! Chiller part load curve corrected from original
!
! Int. gains: lights = 10.76 W/m2 (1.0 W/ft2) (building area method);
! elec. plug loads = 10.76 W/m2 (1.0 W/ft2)
! gas plug load = 0 W/m2 (0 W/ft2)
! people = 2,397 total, 5.38/100 m2 (5.0/1000 ft2); basement 2.69/100 m2 (2.5/1000 ft2)
! elevators = 12 @ 25 HP each, 91% motor efficiency, motor heat exhausted directly
!
! Detached Shading: None
! Daylight: None
! Natural Ventilation: None
! Zonal Equipment: None
! Air Primary Loops: VAV WITH REHEAT
! Plant Loops: SHWSys1, HeatSys1, CoolSys1, TowerWaterSys
! System Equipment Autosize: Yes
! Purchased Cooling: None
! Purchased Heating: None
! Coils: Coil:Cooling:Water; Coil:Heating:Water
! Pumps: Yes
! Boilers: Boiler:HotWater (gas-fired)
! Chillers: Chiller:Electric:ReformulatedEIR (water-cooled)
!***** NOTICE *****
!***** The Reference Buildings were prepared as an account of work sponsored by an *****
!***** agency of the United States government. Neither the United States *****
!***** government nor any agency thereof, nor any of their employees, makes *****
!***** any warranty, express or implied, or assumes any legal liability or *****
!***** responsibility for the accuracy, completeness, or usefulness of any *****
!***** information, apparatus, product, or process disclosed, or represents *****
!***** that its use would not infringe privately owned rights. Reference *****
!***** herein to any specific commercial product, process, or service by *****
!***** trade name, trademark, manufacturer, or otherwise does not necessarily *****
!***** constitute or imply its endorsement, recommendation, or favoring by *****
!***** the United States government or any agency thereof. The views and *****
!***** opinions of authors expressed herein do not necessarily state or *****
!***** reflect those of the United States government or any agency thereof. *****
!***** Access to and use of the Reference Buildings imposes the following obligations *****
!***** on the user. The user agrees to credit DOE, NREL, PNNL, and LBNL in *****
!***** any publication(s) that that result from the use of Reference Buildings. *****
!***** However, the names of DOE/NREL/PNNL/LBNL may not be used in any *****
!***** advertising or publicity that implies endorsement or promotion of any *****
!***** products, services or commercial entities. *****
! Reference citation for the Commercial Reference Buildings:
! Deru, M.; Field, K.; Studer, D.; Benne, K.; Griffith, B.; Torcellini, P;
! Halverson, M.; Winiarski, D.; Liu, B.; Rosenberg, M.; Huang, J.;
! Yazdanian, M.; Crawley, D. (2010).
! U.S. Department of Energy Commercial Reference Building Models of the National Building Stock.
! Washington, DC: U.S. Department of Energy, Energy Efficiency and
! Renewable Energy, Office of Building Technologies.
! ***GENERAL SIMULATION PARAMETERS***
! Number of Zones: 19
Version,9.1;
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
No, !- Do HVAC Sizing Simulation for Sizing Periods
1; !- Maximum Number of HVAC Sizing Simulation Passes
Building,
Ref Bldg Large Office New2004_v1.3_5.0, !- Name
0.0000, !- North Axis {deg}
City, !- Terrain
0.0400, !- Loads Convergence Tolerance Value
0.2000, !- Temperature Convergence Tolerance Value {deltaC}
FullInteriorAndExterior, !- Solar Distribution
25, !- Maximum Number of Warmup Days
6; !- Minimum Number of Warmup Days
RunPeriod,
, !- Name
7, !- Begin Month
1, !- Begin Day of Month
, !- Begin Year
12, !- End Month
31, !- End Day of Month
, !- End Year
Sunday, !- Day of Week for Start Day
Yes, !- Use Weather File Holidays and Special Days
No, !- Use Weather File Daylight Saving Period
Yes, !- Apply Weekend Holiday Rule
Yes, !- Use Weather File Rain Indicators
Yes; !- Use Weather File Snow Indicators
! ***HOLIDAYS & DAYLIGHT SAVINGS***
RunPeriodControl:DaylightSavingTime,
2nd Sunday in March, !- Start Date
1st Sunday in November; !- End Date
RunPeriodControl:SpecialDays,
New Years Day, !- Name
January 1, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Veterans Day, !- Name
November 11, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Christmas, !- Name
December 25, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Independence Day, !- Name
July 4, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
MLK Day, !- Name
3rd Monday in January, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Presidents Day, !- Name
3rd Monday in February, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Memorial Day, !- Name
Last Monday in May, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Labor Day, !- Name
1st Monday in September, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Columbus Day, !- Name
2nd Monday in October, !- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
RunPeriodControl:SpecialDays,
Thanksgiving, !- Name
4th Thursday in November,!- Start Date
1, !- Duration {days}
Holiday; !- Special Day Type
! ***SCHEDULE TYPES***
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
ScheduleTypeLimits,
On/Off, !- Name
0, !- Lower Limit Value
1, !- Upper Limit Value
DISCRETE; !- Numeric Type
ScheduleTypeLimits,
Control Type, !- Name
0, !- Lower Limit Value
4, !- Upper Limit Value
DISCRETE; !- Numeric Type
ScheduleTypeLimits,
Humidity, !- Name
10, !- Lower Limit Value
90, !- Upper Limit Value
CONTINUOUS; !- Numeric Type
ScheduleTypeLimits,
Number; !- Name
! ***ALWAYS ON SCHEDULE***
Schedule:Compact,
ALWAYS_ON, !- Name
On/Off, !- Schedule Type Limits Name
Through: 12/31, !- Field 1
For: AllDays, !- Field 2
Until: 24:00, 1; !- Field 4
! ***MISC SIMULATION PARAMETERS***
SurfaceConvectionAlgorithm:Inside,TARP;
SurfaceConvectionAlgorithm:Outside,DOE-2;
HeatBalanceAlgorithm,ConductionTransferFunction,200.0000;
ZoneAirHeatBalanceAlgorithm,AnalyticalSolution;
Sizing:Parameters,
1.33, !- Heating Sizing Factor
1.33, !- Cooling Sizing Factor
6; !- Timesteps in Averaging Window
ConvergenceLimits,
2, !- Minimum System Timestep {minutes}
25; !- Maximum HVAC Iterations
ShadowCalculation,
AverageOverDaysInFrequency, !- Calculation Method
7, !- Calculation Frequency
15000; !- Maximum Figures in Shadow Overlap Calculations
Timestep,6;
! WeatherFileName=USA_IL_Chicago-OHare_TMY2.epw
Site:Location,
USA IL-CHICAGO-OHARE, !- Name
41.77, !- Latitude {deg}
-87.75, !- Longitude {deg}
-6.00, !- Time Zone {hr}
190; !- Elevation {m}
! CHICAGO_IL_USA Annual Heating 99.6%, MaxDB=-20.6°C
SizingPeriod:DesignDay,
CHICAGO Ann Htg 99.6% Condns DB, !- Name
1, !- Month
21, !- Day of Month
WinterDesignDay, !- Day Type
-20.6, !- 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
-20.6, !- 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.00; !- Sky Clearness
! CHICAGO_IL_USA Annual Cooling (WB=>MDB) .4%, MDB=31.2°C WB=25.5°C
SizingPeriod:DesignDay,
CHICAGO Ann Clg .4% Condns WB=>MDB, !- Name
7, !- Month
21, !- Day of Month
SummerDesignDay, !- Day Type
31.2, !- 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
25.5, !- 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.00; !- Sky Clearness
Site:WaterMainsTemperature,
CORRELATION, !- Calculation Method
, !- Temperature Schedule Name
9.69, !- Annual Average Outdoor Air Temperature {C}
28.10; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC}
Site:GroundTemperature:BuildingSurface,19.527,19.502,19.536,19.598,20.002,21.640,22.225,22.375,21.449,20.121,19.802,19.633;
! ***OPAQUE CONSTRUCTIONS AND MATERIALS***
! Exterior Walls
Construction,
Mass Non-res Ext Wall, !- Name
1IN Stucco, !- Outside Layer
8IN Concrete HW, !- Layer 2
Mass NonRes Wall Insulation, !- Layer 3
1/2IN Gypsum; !- Layer 4
Material,
Mass NonRes Wall Insulation, !- Name
MediumRough, !- Roughness
0.0495494599433393, !- Thickness {m}
0.049, !- Conductivity {W/m-K}
265.0000, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.7000; !- Visible Absorptance
! Roof
Construction,
IEAD Non-res Roof, !- Name
Roof Membrane, !- Outside Layer
IEAD NonRes Roof Insulation, !- Layer 2
Metal Decking; !- Layer 3
Material,
IEAD NonRes Roof Insulation, !- Name
MediumRough, !- Roughness
0.127338688569477, !- Thickness {m}
0.049, !- Conductivity {W/m-K}
265.0000, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.7000; !- Visible Absorptance
! Slab on grade, unheated
Construction,
ext-slab, !- Name
HW CONCRETE, !- Outside Layer
CP02 CARPET PAD; !- Layer 2
! Interior Walls
Construction,
int-walls, !- Name
1/2IN Gypsum, !- Outside Layer
1/2IN Gypsum; !- Layer 2
! Interior Floors
Construction,
INT-FLOOR-TOPSIDE, !- Name
MAT-CC05 4 HW CONCRETE, !- Outside Layer
CP02 CARPET PAD; !- Layer 2
Construction,
INT-FLOOR-UNDERSIDE, !- Name
CP02 CARPET PAD, !- Outside Layer
MAT-CC05 4 HW CONCRETE; !- Layer 2
Construction,
Underground Wall Non-res,!- Name
8IN Concrete HW, !- Outside Layer
UGWall NonRes Insulation;!- Layer 2
Material,
UGWall NonRes Insulation,!- Name
MediumRough, !- Roughness
0.0001, !- Thickness {m}
0.049, !- Conductivity {W/m-K}
265.0000, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.7000; !- Visible Absorptance
! ***WINDOW/DOOR CONSTRUCTIONS AND MATERIALS***
Construction,
Window Non-res Fixed, !- Name
NonRes Fixed Assembly Window; !- Outside Layer
WindowMaterial:SimpleGlazingSystem,
NonRes Fixed Assembly Window, !- Name
3.23646, !- U-Factor {W/m2-K}
0.39; !- Solar Heat Gain Coefficient
! ***COMMON CONSTRUCTIONS AND MATERIALS***
Construction,
DropCeiling, !- Name
Std AC02; !- Outside Layer
Construction,
InteriorFurnishings, !- Name
Std Wood 6inch; !- Outside Layer
Material,
Std Wood 6inch, !- Name
MediumSmooth, !- Roughness
0.15, !- Thickness {m}
0.12, !- Conductivity {W/m-K}
540.0000, !- Density {kg/m3}
1210, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7000000, !- Solar Absorptance
0.7000000; !- Visible Absorptance
Material,
Wood Siding, !- Name
MediumSmooth, !- Roughness
0.0100, !- Thickness {m}
0.1100, !- Conductivity {W/m-K}
544.6200, !- Density {kg/m3}
1210.0000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7800, !- Solar Absorptance
0.7800; !- Visible Absorptance
Material,
1/2IN Gypsum, !- Name
Smooth, !- Roughness
0.0127, !- Thickness {m}
0.1600, !- Conductivity {W/m-K}
784.9000, !- Density {kg/m3}
830.0000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.9200, !- Solar Absorptance
0.9200; !- Visible Absorptance
Material,
1IN Stucco, !- Name
Smooth, !- Roughness
0.0253, !- Thickness {m}
0.6918, !- Conductivity {W/m-K}
1858.0000, !- Density {kg/m3}
837.0000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.9200, !- Solar Absorptance
0.9200; !- Visible Absorptance
Material,
8IN CONCRETE HW, !- Name
Rough, !- Roughness
0.2032, !- Thickness {m}
1.3110, !- Conductivity {W/m-K}
2240.0000, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.7000; !- Visible Absorptance
Material,
Metal Siding, !- Name
Smooth, !- Roughness
0.0015, !- Thickness {m}
44.9600, !- Conductivity {W/m-K}
7688.8600, !- Density {kg/m3}
410.0000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.2000, !- Solar Absorptance
0.2000; !- Visible Absorptance
Material,
HW CONCRETE, !- Name
Rough, !- Roughness
0.1016, !- Thickness {m}
1.3110, !- Conductivity {W/m-K}
2240.0000, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.7000; !- Visible Absorptance
Material:NoMass,
CP02 CARPET PAD, !- Name
VeryRough, !- Roughness
0.2165, !- Thermal Resistance {m2-K/W}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.8000; !- Visible Absorptance
Material,
Roof Membrane, !- Name
VeryRough, !- Roughness
0.0095, !- Thickness {m}
0.1600, !- Conductivity {W/m-K}
1121.2900, !- Density {kg/m3}
1460.0000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.7000; !- Visible Absorptance
Material,
Metal Decking, !- Name
MediumSmooth, !- Roughness
0.0015, !- Thickness {m}
45.0060, !- Conductivity {W/m-K}
7680.0000, !- Density {kg/m3}
418.4000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.3000; !- Visible Absorptance
Material,
Metal Roofing, !- Name
MediumSmooth, !- Roughness
0.0015, !- Thickness {m}
45.0060, !- Conductivity {W/m-K}
7680.0000, !- Density {kg/m3}
418.4000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.3000; !- Visible Absorptance
Material,
MAT-CC05 4 HW CONCRETE, !- Name
Rough, !- Roughness
0.1016, !- Thickness {m}
1.3110, !- Conductivity {W/m-K}
2240.0000, !- Density {kg/m3}
836.8000, !- Specific Heat {J/kg-K}
0.9000, !- Thermal Absorptance
0.7000, !- Solar Absorptance
0.7000; !- Visible Absorptance
! Acoustic tile for drop ceiling
Material,
Std AC02, !- Name
MediumSmooth, !- Roughness
1.2700000E-02, !- Thickness {m}
5.7000000E-02, !- Conductivity {W/m-K}
288.0000, !- Density {kg/m3}
1339.000, !- Specific Heat {J/kg-K}
0.9000000, !- Thermal Absorptance
0.7000000, !- Solar Absorptance
0.2000000; !- Visible Absorptance
Material:NoMass,
MAT-AIR-WALL, !- Name
Rough, !- Roughness
0.2079491, !- Thermal Resistance {m2-K/W}
0.9, !- Thermal Absorptance
0.7; !- Solar Absorptance
! ZONE LIST:
! Basement
! Core_bottom
! Core_mid (mult=10)
! Core_top
! GroundFloor_Plenum
! MidFloor_Plenum (mult=10)
! Perimeter_bot_ZN_1
! Perimeter_bot_ZN_2
! Perimeter_bot_ZN_3
! Perimeter_bot_ZN_4
! Perimeter_mid_ZN_1 (mult=10)
! Perimeter_mid_ZN_2 (mult=10)
! Perimeter_mid_ZN_3 (mult=10)
! Perimeter_mid_ZN_4 (mult=10)
! Perimeter_top_ZN_1
! Perimeter_top_ZN_2
! Perimeter_top_ZN_3
! Perimeter_top_ZN_4
! TopFloor_Plenum
! ***ZONES***
Zone,
Basement, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0400, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Core_bottom, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Core_mid, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
10, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Core_top, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
GroundFloor_Plenum, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
No; !- Part of Total Floor Area
Zone,
MidFloor_Plenum, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
10, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
No; !- Part of Total Floor Area
Zone,
Perimeter_bot_ZN_1, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_bot_ZN_2, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_bot_ZN_3, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_bot_ZN_4, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_mid_ZN_1, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
10, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_mid_ZN_2, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
10, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_mid_ZN_3, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
10, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_mid_ZN_4, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
10, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_top_ZN_1, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_top_ZN_2, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_top_ZN_3, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
Perimeter_top_ZN_4, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
Yes; !- Part of Total Floor Area
Zone,
TopFloor_Plenum, !- Name
0.0000, !- Direction of Relative North {deg}
0.0000, 0.0000, 0.0000, !- X,Y,Z {m}
1, !- Type
1, !- Multiplier
, !- Ceiling Height {m}
, !- Volume {m3}
autocalculate, !- Floor Area {m2}
, !- Zone Inside Convection Algorithm
, !- Zone Outside Convection Algorithm
No; !- Part of Total Floor Area
! ***WALLS***
BuildingSurface:Detailed,
Basement_Ceiling_1, !- Name
Ceiling, !- Surface Type
INT-FLOOR-UNDERSIDE, !- Construction Name
Basement, !- Zone Name
Surface, !- Outside Boundary Condition
Perimeter_bot_ZN_1_Floor,!- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
4.5732, 4.5732, 0.0000, !- X,Y,Z 1 {m}
0.0000, 0.0000, 0.0000, !- X,Y,Z 2 {m}
73.1072, 0.0000, 0.0000, !- X,Y,Z 3 {m}
68.5340, 4.5732, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Ceiling_2, !- Name
Ceiling, !- Surface Type
INT-FLOOR-UNDERSIDE, !- Construction Name
Basement, !- Zone Name
Surface, !- Outside Boundary Condition
Perimeter_bot_ZN_2_Floor,!- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
68.5340, 4.5732, 0.0000, !- X,Y,Z 1 {m}
73.1072, 0.0000, 0.0000, !- X,Y,Z 2 {m}
73.1072, 48.7381, 0.0000, !- X,Y,Z 3 {m}
68.5340, 44.1650, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Ceiling_3, !- Name
Ceiling, !- Surface Type
INT-FLOOR-UNDERSIDE, !- Construction Name
Basement, !- Zone Name
Surface, !- Outside Boundary Condition
Perimeter_bot_ZN_3_Floor,!- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
68.5340, 44.1650, 0.0000, !- X,Y,Z 1 {m}
73.1072, 48.7381, 0.0000, !- X,Y,Z 2 {m}
0.0000, 48.7381, 0.0000, !- X,Y,Z 3 {m}
4.5732, 44.1650, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Ceiling_4, !- Name
Ceiling, !- Surface Type
INT-FLOOR-UNDERSIDE, !- Construction Name
Basement, !- Zone Name
Surface, !- Outside Boundary Condition
Perimeter_bot_ZN_4_Floor,!- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
4.5732, 44.1650, 0.0000, !- X,Y,Z 1 {m}
0.0000, 48.7381, 0.0000, !- X,Y,Z 2 {m}
0.0000, 0.0000, 0.0000, !- X,Y,Z 3 {m}
4.5732, 4.5732, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Ceiling_5, !- Name
Ceiling, !- Surface Type
INT-FLOOR-UNDERSIDE, !- Construction Name
Basement, !- Zone Name
Surface, !- Outside Boundary Condition
Core_bot_ZN_5_Floor, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
4.5732, 44.1650, 0.0000, !- X,Y,Z 1 {m}
4.5732, 4.5732, 0.0000, !- X,Y,Z 2 {m}
68.5340, 4.5732, 0.0000, !- X,Y,Z 3 {m}
68.5340, 44.1650, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Floor, !- Name
Floor, !- Surface Type
ext-slab, !- Construction Name
Basement, !- Zone Name
Ground, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
73.1072, 48.7381, -2.4390, !- X,Y,Z 1 {m}
73.1072, 0.0000, -2.4390, !- X,Y,Z 2 {m}
0.0000, 0.0000, -2.4390, !- X,Y,Z 3 {m}
0.0000, 48.7381, -2.4390; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Wall_East, !- Name
Wall, !- Surface Type
Underground Wall Non-res,!- Construction Name
Basement, !- Zone Name
Ground, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
73.1072, 0.0000, 0.0000, !- X,Y,Z 1 {m}
73.1072, 0.0000, -2.4390, !- X,Y,Z 2 {m}
73.1072, 48.7381, -2.4390, !- X,Y,Z 3 {m}
73.1072, 48.7381, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Wall_North, !- Name
Wall, !- Surface Type
Underground Wall Non-res,!- Construction Name
Basement, !- Zone Name
Ground, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
73.1072, 48.7381, 0.0000, !- X,Y,Z 1 {m}
73.1072, 48.7381, -2.4390, !- X,Y,Z 2 {m}
0.0000, 48.7381, -2.4390, !- X,Y,Z 3 {m}
0.0000, 48.7381, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Wall_South, !- Name
Wall, !- Surface Type
Underground Wall Non-res,!- Construction Name
Basement, !- Zone Name
Ground, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
0.0000, 0.0000, 0.0000, !- X,Y,Z 1 {m}
0.0000, 0.0000, -2.4390, !- X,Y,Z 2 {m}
73.1072, 0.0000, -2.4390, !- X,Y,Z 3 {m}
73.1072, 0.0000, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Basement_Wall_West, !- Name
Wall, !- Surface Type
Underground Wall Non-res,!- Construction Name
Basement, !- Zone Name
Ground, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
AutoCalculate, !- View Factor to Ground
4, !- Number of Vertices
0.0000, 48.7381, 0.0000, !- X,Y,Z 1 {m}
0.0000, 48.7381, -2.4390, !- X,Y,Z 2 {m}
0.0000, 0.0000, -2.4390, !- X,Y,Z 3 {m}
0.0000, 0.0000, 0.0000; !- X,Y,Z 4 {m}
BuildingSurface:Detailed,
Building_Roof, !- Name
Roof, !- Surface Type
IEAD Non-res Roof, !- Construction Name
TopFloor_Plenum, !- Zone Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure