-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASHRAESecondarySchool.osm
14358 lines (13264 loc) · 790 KB
/
ASHRAESecondarySchool.osm
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
OS:Version,
{ea1ff784-3247-4d77-bcd7-9839e40042f4}, !- Handle
3.2.0; !- Version Identifier
OS:Schedule:Constant,
{681a9229-e2cb-42b5-b98a-61bea51b7b95}, !- Handle
Always On Discrete, !- Name
{d77ede1e-2988-4308-b17e-f3f84a30d16f}, !- Schedule Type Limits Name
1; !- Value
OS:ScheduleTypeLimits,
{d77ede1e-2988-4308-b17e-f3f84a30d16f}, !- Handle
Always On Discrete Limits, !- Name
0, !- Lower Limit Value
1, !- Upper Limit Value
Discrete, !- Numeric Type
Availability; !- Unit Type
OS:Site,
{faecd613-9968-425f-9fdc-e929aa68dc07}, !- Handle
Chicago Ohare Intl Ap_IL_USA Design_Conditions, !- Name
41.98, !- Latitude {deg}
-87.92, !- Longitude {deg}
-6, !- Time Zone {hr}
201, !- Elevation {m}
City; !- Terrain
OS:SimulationControl,
{15d51e58-1faf-4716-8aac-6c267c8c1139}, !- Handle
Yes, !- Do Zone Sizing Calculation
Yes, !- Do System Sizing Calculation
Yes, !- Do Plant Sizing Calculation
Yes, !- Run Simulation for Sizing Periods
Yes, !- Run Simulation for Weather File Run Periods
0.04, !- Loads Convergence Tolerance Value {W}
0.2, !- Temperature Convergence Tolerance Value {deltaC}
FullInteriorAndExterior, !- Solar Distribution
25, !- Maximum Number of Warmup Days
6; !- Minimum Number of Warmup Days
OS:Surface,
{b14a540a-8ac3-4fb4-b61e-cd33f920dd35}, !- Handle
Bathrooms_ZN_1_FLR_2_Wall_4, !- Name
Wall, !- Surface Type
, !- Construction Name
{8c07a26c-759e-4a0c-be83-e179d3ff1ba1}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
15, 14, 4, !- X,Y,Z Vertex 1 {m}
15, 14, 0, !- X,Y,Z Vertex 2 {m}
0, 14, 0, !- X,Y,Z Vertex 3 {m}
0, 14, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{3daf5232-c140-4073-8a54-d868ab119172}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{8c07a26c-759e-4a0c-be83-e179d3ff1ba1}, !- Handle
Bathrooms_ZN_1_FLR_2, !- Name
{bb27daaf-073c-4c11-b3d0-1bdd346b4e59}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
64, !- X Origin {m}
90, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{892ffd5e-541c-46bc-9a8b-f46c08d00dd0}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{7ef6e8c5-bf4d-4669-89e1-78154a5a9a65}, !- Handle
Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_3, !- Name
Wall, !- Surface Type
, !- Construction Name
{f70833c5-e11a-4fe3-b01f-1ec1692c6820}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
11, 9, 4, !- X,Y,Z Vertex 1 {m}
11, 9, 0, !- X,Y,Z Vertex 2 {m}
0, 9, 0, !- X,Y,Z Vertex 3 {m}
0, 9, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{810bbf4f-ecea-46ac-8c19-13efbf0027fd}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{f70833c5-e11a-4fe3-b01f-1ec1692c6820}, !- Handle
Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
95, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{3aa329b5-b540-4175-93bc-c39d7cd5dc2b}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{466bbd9d-853a-46c7-8656-a7cc8aa1a410}, !- Handle
Kitchen_ZN_1_FLR_1_Floor, !- Name
Floor, !- Surface Type
, !- Construction Name
{5ac31c4c-fc60-49f4-83e3-b5b17c6fe4fc}, !- Space Name
Ground, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
24, 9, 0, !- X,Y,Z Vertex 1 {m}
24, 0, 0, !- X,Y,Z Vertex 2 {m}
0, 0, 0, !- X,Y,Z Vertex 3 {m}
0, 9, 0; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{0d02f7c4-82e0-4566-bedf-8548fb9d79fa}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{5ac31c4c-fc60-49f4-83e3-b5b17c6fe4fc}, !- Handle
Kitchen_ZN_1_FLR_1, !- Name
{3c2c9bf3-6852-4456-ac7a-ecf10a342639}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
117, !- X Origin {m}
66, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{9469ccad-9ba4-449d-a71e-3f2bddb806fb}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Connection,
{3c583f04-3d48-4edf-8dc0-727ec1de4fc8}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{ca77a65a-8c83-47b2-8f2a-9d681b5b657c}, !- Handle
Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
40, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{a635d636-b51a-43fc-bd53-990f076a1b21}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:SubSurface,
{46d4a197-8aa7-49f9-8cca-70373b802fb4}, !- Handle
Gym_ZN_1_FLR_2_skylight_44, !- Name
Skylight, !- Sub Surface Type
, !- Construction Name
{4b4b6a4c-1a14-40ab-ad3b-d253940966b3}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
10.11, 42.7237, 8, !- X,Y,Z Vertex 1 {m}
10.11, 43.9429, 8, !- X,Y,Z Vertex 2 {m}
8.89, 43.9429, 8, !- X,Y,Z Vertex 3 {m}
8.89, 42.7237, 8; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{4b4b6a4c-1a14-40ab-ad3b-d253940966b3}, !- Handle
Gym_ZN_1_FLR_2_Ceiling, !- Name
RoofCeiling, !- Surface Type
, !- Construction Name
{5b6d79a1-ca37-4ac2-86a5-1120aebe4e62}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
38, 0, 8, !- X,Y,Z Vertex 1 {m}
38, 52, 8, !- X,Y,Z Vertex 2 {m}
0, 52, 8, !- X,Y,Z Vertex 3 {m}
0, 0, 8; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{f6d493f2-07d8-4629-8718-f178beb56343}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{5b6d79a1-ca37-4ac2-86a5-1120aebe4e62}, !- Handle
Gym_ZN_1_FLR_1, !- Name
{db3daa1a-c0fd-4e0c-a447-312631139af5}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
79, !- X Origin {m}
14, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{959c035d-968d-43c0-b058-cb5ccdc70547}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:SubSurface,
{37656382-f771-4078-a8c3-6372271a9a0e}, !- Handle
Offices_ZN_1_FLR_1_Wall_1_Window1, !- Name
FixedWindow, !- Sub Surface Type
, !- Construction Name
{52eeee34-1919-4eec-abc4-9285a85be0dc}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
0.05, 0, 2.50371, !- X,Y,Z Vertex 1 {m}
0.05, 0, 1.00348, !- X,Y,Z Vertex 2 {m}
11.870652, 0, 1.00348, !- X,Y,Z Vertex 3 {m}
11.870652, 0, 2.50371; !- X,Y,Z Vertex 4 {m}
OS:SubSurface,
{37656112-f711-4011-a1c1-6112271a9a1e}, !- Handle
Offices_ZN_1_FLR_1_Wall_1_Window2, !- Name
FixedWindow, !- Sub Surface Type
, !- Construction Name
{52eeee34-1919-4eec-abc4-9285a85be0dc}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
13.089852, 0, 2.50371, !- X,Y,Z Vertex 1 {m}
13.089852, 0, 1.00348, !- X,Y,Z Vertex 2 {m}
24.910504, 0, 1.00348, !- X,Y,Z Vertex 3 {m}
24.910504, 0, 2.50371; !- X,Y,Z Vertex 4 {m}
OS:SubSurface,
{33246382-f741-4478-a5c3-6355571a9a0e}, !- Handle
Offices_ZN_1_FLR_1_Wall_1_Window3, !- Name
FixedWindow, !- Sub Surface Type
, !- Construction Name
{52eeee34-1919-4eec-abc4-9285a85be0dc}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
26.129704, 0, 2.50371, !- X,Y,Z Vertex 1 {m}
26.129704, 0, 1.00348, !- X,Y,Z Vertex 2 {m}
37.95, 0, 1.00348, !- X,Y,Z Vertex 3 {m}
37.95, 0, 2.50371; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{52eeee34-1919-4eec-abc4-9285a85be0dc}, !- Handle
Offices_ZN_1_FLR_1_Wall_1, !- Name
Wall, !- Surface Type
, !- Construction Name
{07897017-2f7d-4da1-85cc-9c9ec7088e51}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
0, 0, 4, !- X,Y,Z Vertex 1 {m}
0, 0, 0, !- X,Y,Z Vertex 2 {m}
38, 0, 0, !- X,Y,Z Vertex 3 {m}
38, 0, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{c28987b0-2c44-497e-bf5c-424849135b68}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{07897017-2f7d-4da1-85cc-9c9ec7088e51}, !- Handle
Offices_ZN_1_FLR_1, !- Name
{05b553fe-6c22-4921-8324-7c516c72963c}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
79, !- X Origin {m}
0, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{439f9922-9102-4ef3-94bd-e7d978ea6e94}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{a82b9ed5-c277-43fb-abe1-8881e66e7591}, !- Handle
Corridor_Pod_1_ZN_1_FLR_2_Wall_6, !- Name
Wall, !- Surface Type
, !- Construction Name
{98a24e6c-59af-448d-bf56-daadacedc0c5}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
0, 5, 4, !- X,Y,Z Vertex 1 {m}
0, 5, 0, !- X,Y,Z Vertex 2 {m}
0, 0, 0, !- X,Y,Z Vertex 3 {m}
0, 0, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{25d6007f-cdcd-4f8e-ad3d-e752156c3b7c}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{98a24e6c-59af-448d-bf56-daadacedc0c5}, !- Handle
Corridor_Pod_1_ZN_1_FLR_2, !- Name
{f81cba6e-f55f-464d-b4db-1425b2ca93b7}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
9, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{963a3759-c7c3-4754-a227-a3cdbd592ebf}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{c1818fb5-6767-489e-b5b5-e765a5cf5ae2}, !- Handle
Auditorium_ZN_1_FLR_2_Wall_2, !- Name
Wall, !- Surface Type
, !- Construction Name
{9afb3bcc-f466-426d-84be-d73696352d8a}, !- Space Name
Surface, !- Outside Boundary Condition
{5cb2bea6-af2a-4351-9f64-e14feb99ded8}, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
38, 0, 8, !- X,Y,Z Vertex 1 {m}
38, 0, 4, !- X,Y,Z Vertex 2 {m}
38, 26, 4, !- X,Y,Z Vertex 3 {m}
38, 26, 8; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{8396b6b9-90e6-4144-bc44-e3d23597515e}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{9afb3bcc-f466-426d-84be-d73696352d8a}, !- Handle
Auditorium_ZN_1_FLR_1, !- Name
{741a6d56-630f-4617-b7de-06f2490afcc7}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
79, !- X Origin {m}
75, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{ddbb570d-8145-4bc8-b832-8f0600713731}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Connection,
{2b0117e1-369f-4c23-b973-5471faf8eb55}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{9642778a-9cfa-4d96-a768-710240677291}, !- Handle
LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Name
{0470cc4e-eb57-47de-8d7f-9d4027e16b92}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
117, !- X Origin {m}
66, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{d5eec8f6-019c-4081-80c1-c52da248ce67}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{b3ccb0a3-6522-43bb-87b1-1127ff5bdecf}, !- Handle
Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Name
Wall, !- Surface Type
, !- Construction Name
{8b1f8f19-8d7c-433c-9ecc-bfb247b3b7d4}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
53, 9, 4, !- X,Y,Z Vertex 1 {m}
53, 9, 0, !- X,Y,Z Vertex 2 {m}
0, 9, 0, !- X,Y,Z Vertex 3 {m}
0, 9, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{37b79caf-b484-4158-9ca9-8e009289efbf}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{8b1f8f19-8d7c-433c-9ecc-bfb247b3b7d4}, !- Handle
Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
11, !- X Origin {m}
54, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{90ccd761-b2ca-4a90-882e-ae243add522e}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{35611eec-683e-4c41-a585-bb48caa0a1ed}, !- Handle
Corridor_Pod_1_ZN_1_FLR_2_Wall_1, !- Name
Wall, !- Surface Type
, !- Construction Name
{98a24e6c-59af-448d-bf56-daadacedc0c5}, !- Space Name
Surface, !- Outside Boundary Condition
{e256f2a1-a05c-4d15-a632-bbce1c1f6e05}, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
0, 0, 4, !- X,Y,Z Vertex 1 {m}
0, 0, 0, !- X,Y,Z Vertex 2 {m}
11, 0, 0, !- X,Y,Z Vertex 3 {m}
11, 0, 4; !- X,Y,Z Vertex 4 {m}
OS:SubSurface,
{db357969-fe3d-484b-be80-38e71946881a}, !- Handle
Aux_Gym_ZN_1_FLR_2_skylight_25, !- Name
Skylight, !- Sub Surface Type
, !- Construction Name
{89fd87b6-ce0e-4e53-82e1-edc9a39bf1aa}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
3.61, 36.946, 8, !- X,Y,Z Vertex 1 {m}
3.61, 38.1652, 8, !- X,Y,Z Vertex 2 {m}
2.39, 38.1652, 8, !- X,Y,Z Vertex 3 {m}
2.39, 36.946, 8; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{89fd87b6-ce0e-4e53-82e1-edc9a39bf1aa}, !- Handle
Aux_Gym_ZN_1_FLR_2_Ceiling, !- Name
RoofCeiling, !- Surface Type
, !- Construction Name
{8e6e73b2-43d7-4a77-a53a-c3b09d195d59}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
24, 0, 8, !- X,Y,Z Vertex 1 {m}
24, 52, 8, !- X,Y,Z Vertex 2 {m}
0, 52, 8, !- X,Y,Z Vertex 3 {m}
0, 0, 8; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{25e988c3-0a48-4ba9-a6af-150e7f60c727}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{8e6e73b2-43d7-4a77-a53a-c3b09d195d59}, !- Handle
Aux_Gym_ZN_1_FLR_1, !- Name
{db3daa1a-c0fd-4e0c-a447-312631139af5}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
117, !- X Origin {m}
14, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{766fee25-2a65-4717-b645-14248941feb5}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Connection,
{3cc4e9d4-ca63-462c-905c-d275a786593c}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{b6c86a90-edfc-4e71-b6f9-346cd0a38717}, !- Handle
Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
11, !- X Origin {m}
40, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{d765577e-ed32-4805-9970-a33476c2fb53}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Connection,
{8dab90fd-8296-4c8c-8629-dc48fda4b6dc}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{dda8118e-5bf7-4453-bed7-34efb3eb3a63}, !- Handle
Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Name
{c73772b8-aa19-4b80-ab3c-a8d3178978d0}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
11, !- X Origin {m}
81, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{de7c36c3-1539-4620-af28-a4ee1a2422cf}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Connection,
{4a111ba5-a823-4ad1-bd5b-6bf12c6be0e0}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{db901331-8783-4932-bbcd-197c7bbbb277}, !- Handle
Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
81, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{8da6cd76-9ab6-41f1-afc5-8ab74b75ecc5}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Connection,
{0655efd8-9472-4083-bf8b-829e473f8697}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{b7ed1746-e328-4d40-9bf6-a1219420f787}, !- Handle
Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
11, !- X Origin {m}
14, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{4c7f0b55-7695-4676-bd67-ce8182578b9e}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{4819c532-e832-495b-a819-1a1f219ae064}, !- Handle
Gym_ZN_1_FLR_2_Wall_2, !- Name
Wall, !- Surface Type
, !- Construction Name
{5b6d79a1-ca37-4ac2-86a5-1120aebe4e62}, !- Space Name
Surface, !- Outside Boundary Condition
{1c173857-db23-4c45-b490-b9a17752ebf7}, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
38, 0, 8, !- X,Y,Z Vertex 1 {m}
38, 0, 4, !- X,Y,Z Vertex 2 {m}
38, 52, 4, !- X,Y,Z Vertex 3 {m}
38, 52, 8; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{89c20614-114c-4314-b11f-5ef2417739dd}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{5636d2ef-32e4-44f0-9333-393e20c4bebf}, !- Handle
Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
14, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{061e41bd-a9f2-4d97-b515-1a0084af4d6a}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:SubSurface,
{8328c02f-7415-433e-a0d0-c69225333c14}, !- Handle
Aux_Gym_ZN_1_FLR_2_skylight_8, !- Name
Skylight, !- Sub Surface Type
, !- Construction Name
{89fd87b6-ce0e-4e53-82e1-edc9a39bf1aa}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
21.61, 8.0571, 8, !- X,Y,Z Vertex 1 {m}
21.61, 9.2763, 8, !- X,Y,Z Vertex 2 {m}
20.39, 9.2763, 8, !- X,Y,Z Vertex 3 {m}
20.39, 8.0571, 8; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{3e08178f-52af-43f0-9272-fda193992b8a}, !- Handle
Cafeteria_ZN_1_FLR_1_Wall_2, !- Name
Wall, !- Surface Type
, !- Construction Name
{4df5e3e9-4558-49e9-b589-cc23916d222a}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
24, 0, 4, !- X,Y,Z Vertex 1 {m}
24, 0, 0, !- X,Y,Z Vertex 2 {m}
24, 26, 0, !- X,Y,Z Vertex 3 {m}
24, 26, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{0e78cca9-ad5a-4374-b8b2-17f5a6a1e823}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{4df5e3e9-4558-49e9-b589-cc23916d222a}, !- Handle
Cafeteria_ZN_1_FLR_1, !- Name
{11a9dfb8-b3cc-4f63-9ef1-88736a2ff33a}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
117, !- X Origin {m}
75, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{35bbd16c-a576-4b50-8e6c-7c706609641a}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{d8ced04f-cf42-45cc-b9e0-a78bc5abf9fd}, !- Handle
Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Name
Wall, !- Surface Type
, !- Construction Name
{db901331-8783-4932-bbcd-197c7bbbb277}, !- Space Name
Surface, !- Outside Boundary Condition
{43218b1b-323a-493a-a30e-398783df6d25}, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
11, 0, 4, !- X,Y,Z Vertex 1 {m}
11, 0, 0, !- X,Y,Z Vertex 2 {m}
11, 9, 0, !- X,Y,Z Vertex 3 {m}
11, 9, 4; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{40d54599-3b3c-4b03-b09d-92f80279cdaf}, !- Handle
Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_4, !- Name
Wall, !- Surface Type
, !- Construction Name
{5636d2ef-32e4-44f0-9333-393e20c4bebf}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
0, 9, 4, !- X,Y,Z Vertex 1 {m}
0, 9, 0, !- X,Y,Z Vertex 2 {m}
0, 0, 0, !- X,Y,Z Vertex 3 {m}
0, 0, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{01bfdf17-316f-4c95-b510-658f545b56f6}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{5dec4325-8f0a-488d-b707-613fb470e0e7}, !- Handle
Offices_ZN_1_FLR_2, !- Name
{05b553fe-6c22-4921-8324-7c516c72963c}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
79, !- X Origin {m}
0, !- Y Origin {m}
4, !- Z Origin {m}
{4d821eda-b5ee-48d5-86db-89d8b7c292a0}, !- Building Story Name
{6dd7e038-275d-4603-ab41-166460f84e87}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Connection,
{bce463b3-22b2-4ddd-9399-1c2b8ae37533}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{bb8fc698-714c-49fb-984a-9bc976451518}, !- Handle
Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
11, !- X Origin {m}
81, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{f7050f41-8f8d-4b89-b991-dad6601ffe0b}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:SubSurface,
{9ee3e205-ce24-4f36-a68b-1d9a483cda66}, !- Handle
Aux_Gym_ZN_1_FLR_2_skylight_9, !- Name
Skylight, !- Sub Surface Type
, !- Construction Name
{89fd87b6-ce0e-4e53-82e1-edc9a39bf1aa}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
3.61, 13.8348, 8, !- X,Y,Z Vertex 1 {m}
3.61, 15.054, 8, !- X,Y,Z Vertex 2 {m}
2.39, 15.054, 8, !- X,Y,Z Vertex 3 {m}
2.39, 13.8348, 8; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{719c62f3-08bf-4162-8824-54c1a06440fe}, !- Handle
Aux_Gym_ZN_1_FLR_1_Wall_1, !- Name
Wall, !- Surface Type
, !- Construction Name
{8e6e73b2-43d7-4a77-a53a-c3b09d195d59}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
0, 0, 8, !- X,Y,Z Vertex 1 {m}
0, 0, 0, !- X,Y,Z Vertex 2 {m}
24, 0, 0, !- X,Y,Z Vertex 3 {m}
24, 0, 8; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{0691cb49-f8a4-45e4-8ba7-131a23f7e475}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{b0690467-f466-4dbf-beee-17790f02591d}, !- Handle
Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
11, !- X Origin {m}
0, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{4b589bc1-be81-410b-b111-c648697d274f}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:Surface,
{a6f55a68-de74-4e5c-9be8-ed862ceebba1}, !- Handle
Corridor_Pod_1_ZN_1_FLR_2_Wall_2, !- Name
Wall, !- Surface Type
, !- Construction Name
{98a24e6c-59af-448d-bf56-daadacedc0c5}, !- Space Name
Surface, !- Outside Boundary Condition
{2f94703b-f7e9-447d-9d76-234e9aa18f4d}, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
11, 0, 4, !- X,Y,Z Vertex 1 {m}
11, 0, 0, !- X,Y,Z Vertex 2 {m}
64, 0, 0, !- X,Y,Z Vertex 3 {m}
64, 0, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{d4ac3d19-9a9b-493c-80f9-1932fa3bfa0e}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{ac3693b2-3300-4f2c-b943-7409b6dd6d2b}, !- Handle
Mech_ZN_1_FLR_1, !- Name
{b734713d-80ec-45a4-91bf-f23af92fb3ed}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
79, !- X Origin {m}
66, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{12972a75-8de9-4107-9c35-8dacdf34fcd6}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:SubSurface,
{6f7f3c31-4358-4fd4-b22c-a032cbdf881f}, !- Handle
Cafeteria_ZN_1_FLR_1_Wall_2_Window1, !- Name
FixedWindow, !- Sub Surface Type
, !- Construction Name
{3e08178f-52af-43f0-9272-fda193992b8a}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
24, 0.05, 2.50539, !- X,Y,Z Vertex 1 {m}
24, 0.05, 1.0305818, !- X,Y,Z Vertex 2 {m}
24, 1.2692, 1.0305818, !- X,Y,Z Vertex 3 {m}
24, 1.2692, 2.50539; !- X,Y,Z Vertex 4 {m}
OS:SubSurface,
{6f2f3c21-4352-2fd4-b22d-d032cbdf883d}, !- Handle
Cafeteria_ZN_1_FLR_1_Wall_2_Window2, !- Name
FixedWindow, !- Sub Surface Type
, !- Construction Name
{3e08178f-52af-43f0-9272-fda193992b8a}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
24, 2.4884, 2.50539, !- X,Y,Z Vertex 1 {m}
24, 2.4884, 1.0305818, !- X,Y,Z Vertex 2 {m}
24, 25.95, 1.0305818, !- X,Y,Z Vertex 3 {m}
24, 25.95, 2.50539; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{07624e98-ec2c-405f-bd69-d42de9065ecf}, !- Handle
Corner_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Name
Floor, !- Surface Type
, !- Construction Name
{f70833c5-e11a-4fe3-b01f-1ec1692c6820}, !- Space Name
Surface, !- Outside Boundary Condition
{514c5683-92e9-4733-9d65-447b9d8fefce}, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
11, 9, 0, !- X,Y,Z Vertex 1 {m}
11, 0, 0, !- X,Y,Z Vertex 2 {m}
0, 0, 0, !- X,Y,Z Vertex 3 {m}
0, 9, 0; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{ec88116e-22a2-4227-9b61-33211b3f6085}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{1be8baf7-7cf1-4108-868c-705edf0e7ec0}, !- Handle
Corridor_Pod_1_ZN_1_FLR_1, !- Name
{f81cba6e-f55f-464d-b4db-1425b2ca93b7}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}
0, !- X Origin {m}
9, !- Y Origin {m}
0, !- Z Origin {m}
{7706be27-4082-4c44-abfd-979f50d9e943}, !- Building Story Name
{b574940f-c316-48f9-be1b-8229c3f14c79}, !- Thermal Zone Name
Yes; !- Part of Total Floor Area
OS:SubSurface,
{0b2cf7b5-e2e6-44f3-81b9-8b584e0baadc}, !- Handle
Offices_ZN_1_FLR_2_Wall_1_window_1, !- Name
FixedWindow, !- Sub Surface Type
, !- Construction Name
{193eec22-57f5-46ea-8474-f1e7d0fa1377}, !- Surface Name
, !- Outside Boundary Condition Object
, !- View Factor to Ground
, !- Frame and Divider Name
1, !- Multiplier
, !- Number of Vertices
0.05, 0, 2.50371, !- X,Y,Z Vertex 1 {m}
0.05, 0, 1.1, !- X,Y,Z Vertex 2 {m}
37.95, 0, 1.1, !- X,Y,Z Vertex 3 {m}
37.95, 0, 2.50371; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{193eec22-57f5-46ea-8474-f1e7d0fa1377}, !- Handle
Offices_ZN_1_FLR_2_Wall_1, !- Name
Wall, !- Surface Type
, !- Construction Name
{5dec4325-8f0a-488d-b707-613fb470e0e7}, !- Space Name
Outdoors, !- Outside Boundary Condition
, !- Outside Boundary Condition Object
SunExposed, !- Sun Exposure
WindExposed, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
0, 0, 4, !- X,Y,Z Vertex 1 {m}
0, 0, 0, !- X,Y,Z Vertex 2 {m}
38, 0, 0, !- X,Y,Z Vertex 3 {m}
38, 0, 4; !- X,Y,Z Vertex 4 {m}
OS:Surface,
{a00b2683-390b-4594-b80e-201ef25df06a}, !- Handle
Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Name
Wall, !- Surface Type
, !- Construction Name
{dde5685d-dbf0-4ee6-8d68-d62c6a0b05e8}, !- Space Name
Surface, !- Outside Boundary Condition
{53c09581-a25a-407c-b46c-48d8399ba718}, !- Outside Boundary Condition Object
NoSun, !- Sun Exposure
NoWind, !- Wind Exposure
, !- View Factor to Ground
, !- Number of Vertices
0, 0, 4, !- X,Y,Z Vertex 1 {m}
0, 0, 0, !- X,Y,Z Vertex 2 {m}
11, 0, 0, !- X,Y,Z Vertex 3 {m}
11, 0, 4; !- X,Y,Z Vertex 4 {m}
OS:Connection,
{8ceb4a20-be97-4d9d-b526-9b8b922607f0}, !- Handle
, !- Source Object
11, !- Outlet Port
, !- Target Object
2; !- Inlet Port
OS:Space,
{dde5685d-dbf0-4ee6-8d68-d62c6a0b05e8}, !- Handle
Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Name
{3fbc61e2-5ba2-47f6-854e-20a037673eaa}, !- Space Type Name
, !- Default Construction Set Name
, !- Default Schedule Set Name
0, !- Direction of Relative North {deg}