urbanopt-cli 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +11 -0
- data/CMakeLists.txt +7 -7
- data/Gemfile +5 -5
- data/example_files/Gemfile +6 -3
- data/example_files/base_workflow_res.osw +10 -0
- data/example_files/example_project_combined.json +13 -3
- data/example_files/example_project_with_PV.json +751 -0
- data/example_files/mappers/Baseline.rb +24 -3
- data/example_files/mappers/CreateBar.rb +30 -0
- data/example_files/mappers/FlexibleHotWater.rb +69 -0
- data/example_files/mappers/Floorspace.rb +30 -0
- data/example_files/mappers/base_workflow.osw +5 -0
- data/example_files/mappers/createbar_workflow.osw +3 -1
- data/example_files/mappers/floorspace_workflow.osw +2 -1
- data/example_files/osm_building/7.osm +0 -307
- data/example_files/osm_building/8.osm +0 -419
- data/example_files/osm_building/9.osm +0 -664
- data/example_files/reopt/base_assumptions.json +3 -3
- data/example_files/reopt/multiPV_assumptions.json +2 -2
- data/example_files/resources/hpxml-measures/Gemfile +1 -1
- data/example_files/resources/hpxml-measures/Gemfile.lock +6 -25
- data/example_files/visualization/input_visualization_feature.html +4 -4
- data/example_files/visualization/input_visualization_scenario.html +4 -4
- data/lib/uo_cli/version.rb +1 -1
- data/lib/uo_cli.rb +56 -14
- data/uo_cli.gemspec +5 -5
- metadata +14 -12
@@ -402,9 +402,6 @@ module URBANopt
|
|
402
402
|
feature_id = feature.id
|
403
403
|
feature_type = feature.type
|
404
404
|
|
405
|
-
# take the first vertex as the location of the building
|
406
|
-
#feature_location = feature.feature_json[:geometry][:coordinates][0][0].to_s
|
407
|
-
|
408
405
|
# take the centroid of the vertices as the location of the building
|
409
406
|
feature_vertices_coordinates = feature.feature_json[:geometry][:coordinates][0]
|
410
407
|
feature_location = feature.find_feature_center(feature_vertices_coordinates).to_s
|
@@ -936,12 +933,17 @@ module URBANopt
|
|
936
933
|
end
|
937
934
|
end
|
938
935
|
|
936
|
+
# geojson schema doesn't have modify_wkdy_op_hrs and modify_wknd_op_hrs checking for both start and duration to set to true in osw
|
937
|
+
weekday_flag = 0 # set modify arg to true of this gets to 2
|
938
|
+
weekend_flag = 0 # set modify arg to true of this gets to 2
|
939
|
+
|
939
940
|
# set weekday start time
|
940
941
|
begin
|
941
942
|
weekday_start_time = feature.weekday_start_time
|
942
943
|
if !feature.weekday_start_time.empty?
|
943
944
|
new_weekday_start_time = time_mapping(weekday_start_time)
|
944
945
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wkdy_op_hrs_start_time', new_weekday_start_time, 'create_typical_building_from_model 1')
|
946
|
+
weekday_flag += 1
|
945
947
|
end
|
946
948
|
rescue
|
947
949
|
end
|
@@ -952,6 +954,15 @@ module URBANopt
|
|
952
954
|
if !feature.weekday_duration.empty?
|
953
955
|
new_weekday_duration = time_mapping(weekday_duration)
|
954
956
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wkdy_op_hrs_duration', new_weekday_duration, 'create_typical_building_from_model 1')
|
957
|
+
weekday_flag += 1
|
958
|
+
end
|
959
|
+
rescue
|
960
|
+
end
|
961
|
+
|
962
|
+
# set weekday modify
|
963
|
+
begin
|
964
|
+
if weekday_flag == 2
|
965
|
+
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'modify_wkdy_op_hrs', true, 'create_typical_building_from_model 1')
|
955
966
|
end
|
956
967
|
rescue
|
957
968
|
end
|
@@ -962,6 +973,7 @@ module URBANopt
|
|
962
973
|
if !feature.weekend_start_time.empty?
|
963
974
|
new_weekend_start_time = time_mapping(weekend_start_time)
|
964
975
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wknd_op_hrs_start_time', new_weekend_start_time, 'create_typical_building_from_model 1')
|
976
|
+
weekend_flag += 1
|
965
977
|
end
|
966
978
|
rescue
|
967
979
|
end
|
@@ -972,10 +984,19 @@ module URBANopt
|
|
972
984
|
if !feature.weekend_duration.empty?
|
973
985
|
new_weekend_duration = time_mapping(weekend_duration)
|
974
986
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wknd_op_hrs_duration', new_weekend_duration, 'create_typical_building_from_model 1')
|
987
|
+
weekend_flag += 1
|
975
988
|
end
|
976
989
|
rescue
|
977
990
|
end
|
978
991
|
|
992
|
+
# set weekday modify
|
993
|
+
begin
|
994
|
+
if weekend_flag == 2
|
995
|
+
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'modify_wknd_op_hrs', true, 'create_typical_building_from_model 1')
|
996
|
+
end
|
997
|
+
rescue
|
998
|
+
end
|
999
|
+
|
979
1000
|
# template
|
980
1001
|
begin
|
981
1002
|
new_template = nil
|
@@ -258,7 +258,12 @@ module URBANopt
|
|
258
258
|
feature = features[0]
|
259
259
|
feature_id = feature.id
|
260
260
|
feature_type = feature.type
|
261
|
+
# take the centroid of the vertices as the location of the building
|
262
|
+
feature_vertices_coordinates = feature.feature_json[:geometry][:coordinates][0]
|
263
|
+
feature_location = feature.find_feature_center(feature_vertices_coordinates).to_s
|
264
|
+
|
261
265
|
feature_name = feature.name
|
266
|
+
|
262
267
|
if feature_names.size == 1
|
263
268
|
feature_name = feature_names[0]
|
264
269
|
end
|
@@ -453,12 +458,17 @@ module URBANopt
|
|
453
458
|
end
|
454
459
|
end
|
455
460
|
|
461
|
+
# geojson schema doesn't have modify_wkdy_op_hrs and modify_wknd_op_hrs checking for both start and duration to set to true in osw
|
462
|
+
weekday_flag = 0 # set modify arg to true of this gets to 2
|
463
|
+
weekend_flag = 0 # set modify arg to true of this gets to 2
|
464
|
+
|
456
465
|
# set weekday start time
|
457
466
|
begin
|
458
467
|
weekday_start_time = feature.weekday_start_time
|
459
468
|
if !feature.weekday_start_time.empty?
|
460
469
|
new_weekday_start_time = time_mapping(weekday_start_time)
|
461
470
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wkdy_op_hrs_start_time', new_weekday_start_time, 'create_typical_building_from_model')
|
471
|
+
weekday_flag += 1
|
462
472
|
end
|
463
473
|
rescue StandardError
|
464
474
|
end
|
@@ -469,6 +479,15 @@ module URBANopt
|
|
469
479
|
if !feature.weekday_duration.empty?
|
470
480
|
new_weekday_duration = time_mapping(weekday_duration)
|
471
481
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wkdy_op_hrs_duration', new_weekday_duration, 'create_typical_building_from_model')
|
482
|
+
weekday_flag += 1
|
483
|
+
end
|
484
|
+
rescue StandardError
|
485
|
+
end
|
486
|
+
|
487
|
+
# set weekday modify
|
488
|
+
begin
|
489
|
+
if weekday_flag == 2
|
490
|
+
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'modify_wknd_op_hrs', true, 'create_typical_building_from_model')
|
472
491
|
end
|
473
492
|
rescue StandardError
|
474
493
|
end
|
@@ -479,6 +498,7 @@ module URBANopt
|
|
479
498
|
if !feature.weekend_start_time.empty?
|
480
499
|
new_weekend_start_time = time_mapping(weekend_start_time)
|
481
500
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wknd_op_hrs_start_time', new_weekend_start_time, 'create_typical_building_from_model')
|
501
|
+
weekend_flag += 1
|
482
502
|
end
|
483
503
|
rescue StandardError
|
484
504
|
end
|
@@ -489,6 +509,15 @@ module URBANopt
|
|
489
509
|
if !feature.weekend_duration.empty?
|
490
510
|
new_weekend_duration = time_mapping(weekend_duration)
|
491
511
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wknd_op_hrs_duration', new_weekend_duration, 'create_typical_building_from_model')
|
512
|
+
weekend_flag += 1
|
513
|
+
end
|
514
|
+
rescue StandardError
|
515
|
+
end
|
516
|
+
|
517
|
+
# set weekday modify
|
518
|
+
begin
|
519
|
+
if weekend_flag == 2
|
520
|
+
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'modify_wkdy_op_hrs', true, 'create_typical_building_from_model')
|
492
521
|
end
|
493
522
|
rescue StandardError
|
494
523
|
end
|
@@ -552,6 +581,7 @@ module URBANopt
|
|
552
581
|
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_id', feature_id)
|
553
582
|
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_name', feature_name)
|
554
583
|
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_type', feature_type)
|
584
|
+
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_location', feature_location)
|
555
585
|
end
|
556
586
|
|
557
587
|
return osw
|
@@ -0,0 +1,69 @@
|
|
1
|
+
#*********************************************************************************
|
2
|
+
# URBANopt™, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other
|
3
|
+
# contributors. All rights reserved.
|
4
|
+
#
|
5
|
+
# Redistribution and use in source and binary forms, with or without modification,
|
6
|
+
# are permitted provided that the following conditions are met:
|
7
|
+
#
|
8
|
+
# Redistributions of source code must retain the above copyright notice, this list
|
9
|
+
# of conditions and the following disclaimer.
|
10
|
+
#
|
11
|
+
# Redistributions in binary form must reproduce the above copyright notice, this
|
12
|
+
# list of conditions and the following disclaimer in the documentation and/or other
|
13
|
+
# materials provided with the distribution.
|
14
|
+
#
|
15
|
+
# Neither the name of the copyright holder nor the names of its contributors may be
|
16
|
+
# used to endorse or promote products derived from this software without specific
|
17
|
+
# prior written permission.
|
18
|
+
#
|
19
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
20
|
+
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
21
|
+
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
22
|
+
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
23
|
+
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
24
|
+
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
25
|
+
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
26
|
+
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
27
|
+
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
28
|
+
# OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
#*********************************************************************************
|
30
|
+
|
31
|
+
require 'urbanopt/reporting'
|
32
|
+
|
33
|
+
require_relative 'Baseline'
|
34
|
+
|
35
|
+
require 'json'
|
36
|
+
|
37
|
+
module URBANopt
|
38
|
+
module Scenario
|
39
|
+
class FlexibleHotWaterMapper < BaselineMapper
|
40
|
+
|
41
|
+
def create_osw(scenario, features, feature_names)
|
42
|
+
|
43
|
+
osw = super(scenario, features, feature_names)
|
44
|
+
|
45
|
+
feature = features[0]
|
46
|
+
building_type = feature.building_type
|
47
|
+
|
48
|
+
# Only apply to commercial buildings, not residential models
|
49
|
+
if commercial_building_types.include? building_type
|
50
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', '__SKIP__', false)
|
51
|
+
# Add a sizing multiplier to the tank capacity to cover flex periods
|
52
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', 'vol', 2)
|
53
|
+
# Update maximum tank and minimum temperature setpoints
|
54
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', 'max_temp', 185)
|
55
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', 'min_temp', 125)
|
56
|
+
|
57
|
+
# Manage water heat charge float periods by building
|
58
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', 'flex0', 'Charge - Heat Pump')
|
59
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', 'flex_hrs0', '16:00-17:00')
|
60
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', 'flex1', 'Float')
|
61
|
+
OpenStudio::Extension.set_measure_argument(osw, 'add_hpwh', 'flex_hrs1', '17:01-19:00')
|
62
|
+
end
|
63
|
+
|
64
|
+
return osw
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -258,6 +258,11 @@ module URBANopt
|
|
258
258
|
feature = features[0]
|
259
259
|
feature_id = feature.id
|
260
260
|
feature_type = feature.type
|
261
|
+
|
262
|
+
# take the centroid of the vertices as the location of the building
|
263
|
+
feature_vertices_coordinates = feature.feature_json[:geometry][:coordinates][0]
|
264
|
+
feature_location = feature.find_feature_center(feature_vertices_coordinates).to_s
|
265
|
+
|
261
266
|
feature_name = feature.name
|
262
267
|
if feature_names.size == 1
|
263
268
|
feature_name = feature_names[0]
|
@@ -539,12 +544,17 @@ module URBANopt
|
|
539
544
|
end
|
540
545
|
end
|
541
546
|
|
547
|
+
# geojson schema doesn't have modify_wkdy_op_hrs and modify_wknd_op_hrs checking for both start and duration to set to true in osw
|
548
|
+
weekday_flag = 0 # set modify arg to true of this gets to 2
|
549
|
+
weekend_flag = 0 # set modify arg to true of this gets to 2
|
550
|
+
|
542
551
|
# set weekday start time
|
543
552
|
begin
|
544
553
|
weekday_start_time = feature.weekday_start_time
|
545
554
|
if !feature.weekday_start_time.empty?
|
546
555
|
new_weekday_start_time = time_mapping(weekday_start_time)
|
547
556
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wkdy_op_hrs_start_time', new_weekday_start_time, 'create_typical_building_from_model 1')
|
557
|
+
weekday_flag += 1
|
548
558
|
end
|
549
559
|
rescue StandardError
|
550
560
|
end
|
@@ -555,6 +565,15 @@ module URBANopt
|
|
555
565
|
if !feature.weekday_duration.empty?
|
556
566
|
new_weekday_duration = time_mapping(weekday_duration)
|
557
567
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wkdy_op_hrs_duration', new_weekday_duration, 'create_typical_building_from_model 1')
|
568
|
+
weekday_flag += 1
|
569
|
+
end
|
570
|
+
rescue StandardError
|
571
|
+
end
|
572
|
+
|
573
|
+
# set weekday modify
|
574
|
+
begin
|
575
|
+
if weekday_flag == 2
|
576
|
+
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'modify_wkdy_op_hrs', true, 'create_typical_building_from_model 1')
|
558
577
|
end
|
559
578
|
rescue StandardError
|
560
579
|
end
|
@@ -565,6 +584,7 @@ module URBANopt
|
|
565
584
|
if !feature.weekend_start_time.empty?
|
566
585
|
new_weekend_start_time = time_mapping(weekend_start_time)
|
567
586
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wknd_op_hrs_start_time', new_weekend_start_time, 'create_typical_building_from_model 1')
|
587
|
+
weekend_flag += 1
|
568
588
|
end
|
569
589
|
rescue StandardError
|
570
590
|
end
|
@@ -575,6 +595,15 @@ module URBANopt
|
|
575
595
|
if !feature.weekend_duration.empty?
|
576
596
|
new_weekend_duration = time_mapping(weekend_duration)
|
577
597
|
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'wknd_op_hrs_duration', new_weekend_duration, 'create_typical_building_from_model 1')
|
598
|
+
weekend_flag += 1
|
599
|
+
end
|
600
|
+
rescue StandardError
|
601
|
+
end
|
602
|
+
|
603
|
+
# set weekday modify
|
604
|
+
begin
|
605
|
+
if weekend_flag == 2
|
606
|
+
OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'modify_wknd_op_hrs', true, 'create_typical_building_from_model 1')
|
578
607
|
end
|
579
608
|
rescue StandardError
|
580
609
|
end
|
@@ -656,6 +685,7 @@ module URBANopt
|
|
656
685
|
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_id', feature_id)
|
657
686
|
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_name', feature_name)
|
658
687
|
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_type', feature_type)
|
688
|
+
OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_location', feature_location)
|
659
689
|
end
|
660
690
|
|
661
691
|
return osw
|
@@ -40,6 +40,7 @@
|
|
40
40
|
"num_stories_above_grade": null,
|
41
41
|
"num_stories_below_grade": null,
|
42
42
|
"building_rotation": 0,
|
43
|
+
"perim_mult": 0,
|
43
44
|
"template": "90.1-2004",
|
44
45
|
"ns_to_ew_ratio": 0,
|
45
46
|
"wwr": 0,
|
@@ -89,7 +90,8 @@
|
|
89
90
|
"arguments": {
|
90
91
|
"feature_id": null,
|
91
92
|
"feature_name": null,
|
92
|
-
"feature_type": null
|
93
|
+
"feature_type": null,
|
94
|
+
"feature_location": null
|
93
95
|
}
|
94
96
|
}
|
95
97
|
],
|
@@ -6725,313 +6725,6 @@ OS:SubSurface,
|
|
6725
6725
|
98.4726271566309, 78.4247533257874, 15.762, !- X,Y,Z Vertex 3 {m}
|
6726
6726
|
98.4726271566309, 78.4247533257874, 16.6629407837833; !- X,Y,Z Vertex 4 {m}
|
6727
6727
|
|
6728
|
-
OS:ShadingSurfaceGroup,
|
6729
|
-
{dd1e0c6d-9903-4c1d-88a7-8d6163f90c2a}, !- Handle
|
6730
|
-
Building Office 1 Space, !- Name
|
6731
|
-
Building; !- Shading Surface Type
|
6732
|
-
|
6733
|
-
OS:ShadingSurface,
|
6734
|
-
{05894720-211a-4fd4-a9e4-a4794ef3801c}, !- Handle
|
6735
|
-
Shading Surface 1, !- Name
|
6736
|
-
, !- Construction Name
|
6737
|
-
{dd1e0c6d-9903-4c1d-88a7-8d6163f90c2a}, !- Shading Surface Group Name
|
6738
|
-
, !- Transmittance Schedule Name
|
6739
|
-
, !- Number of Vertices
|
6740
|
-
15.2409505711474, 1.68454681244157e-005, 12, !- X,Y,Z Vertex 1 {m}
|
6741
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
6742
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 3 {m}
|
6743
|
-
113.706208454144, 32.2495295569472, 12; !- X,Y,Z Vertex 4 {m}
|
6744
|
-
|
6745
|
-
OS:ShadingSurface,
|
6746
|
-
{85eb0601-8dee-4b94-b492-d32c21f47e6d}, !- Handle
|
6747
|
-
Shading Surface 2, !- Name
|
6748
|
-
, !- Construction Name
|
6749
|
-
{dd1e0c6d-9903-4c1d-88a7-8d6163f90c2a}, !- Shading Surface Group Name
|
6750
|
-
, !- Transmittance Schedule Name
|
6751
|
-
, !- Number of Vertices
|
6752
|
-
113.706208454144, 32.2495295569472, 12, !- X,Y,Z Vertex 1 {m}
|
6753
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 2 {m}
|
6754
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 3 {m}
|
6755
|
-
98.4646693679155, 78.4488745529279, 12; !- X,Y,Z Vertex 4 {m}
|
6756
|
-
|
6757
|
-
OS:ShadingSurface,
|
6758
|
-
{4f3eb581-f18b-48a8-a3ec-0b9ce9badbbf}, !- Handle
|
6759
|
-
Shading Surface 3, !- Name
|
6760
|
-
, !- Construction Name
|
6761
|
-
{dd1e0c6d-9903-4c1d-88a7-8d6163f90c2a}, !- Shading Surface Group Name
|
6762
|
-
, !- Transmittance Schedule Name
|
6763
|
-
, !- Number of Vertices
|
6764
|
-
98.4646693679155, 78.4488745529279, 12, !- X,Y,Z Vertex 1 {m}
|
6765
|
-
-8.51798631629208e-011, 46.1997940409183, 12, !- X,Y,Z Vertex 2 {m}
|
6766
|
-
15.2409505711474, 1.68454681244157e-005, 12, !- X,Y,Z Vertex 3 {m}
|
6767
|
-
113.706208454144, 32.2495295569472, 12; !- X,Y,Z Vertex 4 {m}
|
6768
|
-
|
6769
|
-
OS:ShadingSurface,
|
6770
|
-
{6c828cd7-a581-49a9-bba4-b35078369d4a}, !- Handle
|
6771
|
-
Shading Surface 4, !- Name
|
6772
|
-
, !- Construction Name
|
6773
|
-
{dd1e0c6d-9903-4c1d-88a7-8d6163f90c2a}, !- Shading Surface Group Name
|
6774
|
-
, !- Transmittance Schedule Name
|
6775
|
-
, !- Number of Vertices
|
6776
|
-
-8.51798631629208e-011, 46.1997940409183, 12, !- X,Y,Z Vertex 1 {m}
|
6777
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 2 {m}
|
6778
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 3 {m}
|
6779
|
-
15.2409505711474, 1.68454681244157e-005, 12; !- X,Y,Z Vertex 4 {m}
|
6780
|
-
|
6781
|
-
OS:ShadingSurface,
|
6782
|
-
{a098b7d5-664f-46de-829f-77f1c4818661}, !- Handle
|
6783
|
-
Shading Surface 5, !- Name
|
6784
|
-
, !- Construction Name
|
6785
|
-
{dd1e0c6d-9903-4c1d-88a7-8d6163f90c2a}, !- Shading Surface Group Name
|
6786
|
-
, !- Transmittance Schedule Name
|
6787
|
-
, !- Number of Vertices
|
6788
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 1 {m}
|
6789
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
6790
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6791
|
-
98.4646693679155, 78.4488745529279, 0; !- X,Y,Z Vertex 4 {m}
|
6792
|
-
|
6793
|
-
OS:ShadingSurface,
|
6794
|
-
{af3ee510-966a-4efc-bdda-62412ab5f631}, !- Handle
|
6795
|
-
Shading Surface 6, !- Name
|
6796
|
-
, !- Construction Name
|
6797
|
-
{dd1e0c6d-9903-4c1d-88a7-8d6163f90c2a}, !- Shading Surface Group Name
|
6798
|
-
, !- Transmittance Schedule Name
|
6799
|
-
, !- Number of Vertices
|
6800
|
-
98.4646693679155, 78.4488745529279, 12, !- X,Y,Z Vertex 1 {m}
|
6801
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 2 {m}
|
6802
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6803
|
-
-8.51798631629208e-011, 46.1997940409183, 12; !- X,Y,Z Vertex 4 {m}
|
6804
|
-
|
6805
|
-
OS:ShadingSurfaceGroup,
|
6806
|
-
{820da241-5ba0-4a6d-978b-28cd3e2c6bbf}, !- Handle
|
6807
|
-
Building Office 1 Space 1, !- Name
|
6808
|
-
Building; !- Shading Surface Type
|
6809
|
-
|
6810
|
-
OS:ShadingSurface,
|
6811
|
-
{1edf48f5-b186-45d4-ad96-da78f0e03a68}, !- Handle
|
6812
|
-
Shading Surface 7, !- Name
|
6813
|
-
, !- Construction Name
|
6814
|
-
{820da241-5ba0-4a6d-978b-28cd3e2c6bbf}, !- Shading Surface Group Name
|
6815
|
-
, !- Transmittance Schedule Name
|
6816
|
-
, !- Number of Vertices
|
6817
|
-
98.4646693679155, 78.4488745529279, 30, !- X,Y,Z Vertex 1 {m}
|
6818
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 2 {m}
|
6819
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6820
|
-
-8.51798631629208e-011, 46.1997940409183, 30; !- X,Y,Z Vertex 4 {m}
|
6821
|
-
|
6822
|
-
OS:ShadingSurface,
|
6823
|
-
{09996a74-e3e9-4634-aefa-ac6994088dd1}, !- Handle
|
6824
|
-
Shading Surface 8, !- Name
|
6825
|
-
, !- Construction Name
|
6826
|
-
{820da241-5ba0-4a6d-978b-28cd3e2c6bbf}, !- Shading Surface Group Name
|
6827
|
-
, !- Transmittance Schedule Name
|
6828
|
-
, !- Number of Vertices
|
6829
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 1 {m}
|
6830
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
6831
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6832
|
-
98.4646693679155, 78.4488745529279, 0; !- X,Y,Z Vertex 4 {m}
|
6833
|
-
|
6834
|
-
OS:ShadingSurface,
|
6835
|
-
{2914cc29-a1c0-4185-9744-a1119d220690}, !- Handle
|
6836
|
-
Shading Surface 9, !- Name
|
6837
|
-
, !- Construction Name
|
6838
|
-
{820da241-5ba0-4a6d-978b-28cd3e2c6bbf}, !- Shading Surface Group Name
|
6839
|
-
, !- Transmittance Schedule Name
|
6840
|
-
, !- Number of Vertices
|
6841
|
-
-8.51798631629208e-011, 46.1997940409183, 30, !- X,Y,Z Vertex 1 {m}
|
6842
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 2 {m}
|
6843
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 3 {m}
|
6844
|
-
15.2409505711474, 1.68454681244157e-005, 30; !- X,Y,Z Vertex 4 {m}
|
6845
|
-
|
6846
|
-
OS:ShadingSurface,
|
6847
|
-
{83ff8b46-5b92-4b2c-9caf-06f2e1041270}, !- Handle
|
6848
|
-
Shading Surface 10, !- Name
|
6849
|
-
, !- Construction Name
|
6850
|
-
{820da241-5ba0-4a6d-978b-28cd3e2c6bbf}, !- Shading Surface Group Name
|
6851
|
-
, !- Transmittance Schedule Name
|
6852
|
-
, !- Number of Vertices
|
6853
|
-
113.706208454144, 32.2495295569472, 30, !- X,Y,Z Vertex 1 {m}
|
6854
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 2 {m}
|
6855
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 3 {m}
|
6856
|
-
98.4646693679155, 78.4488745529279, 30; !- X,Y,Z Vertex 4 {m}
|
6857
|
-
|
6858
|
-
OS:ShadingSurface,
|
6859
|
-
{9a1f0a0e-8664-4568-bcfd-8cda6eb281fd}, !- Handle
|
6860
|
-
Shading Surface 11, !- Name
|
6861
|
-
, !- Construction Name
|
6862
|
-
{820da241-5ba0-4a6d-978b-28cd3e2c6bbf}, !- Shading Surface Group Name
|
6863
|
-
, !- Transmittance Schedule Name
|
6864
|
-
, !- Number of Vertices
|
6865
|
-
98.4646693679155, 78.4488745529279, 30, !- X,Y,Z Vertex 1 {m}
|
6866
|
-
-8.51798631629208e-011, 46.1997940409183, 30, !- X,Y,Z Vertex 2 {m}
|
6867
|
-
15.2409505711474, 1.68454681244157e-005, 30, !- X,Y,Z Vertex 3 {m}
|
6868
|
-
113.706208454144, 32.2495295569472, 30; !- X,Y,Z Vertex 4 {m}
|
6869
|
-
|
6870
|
-
OS:ShadingSurface,
|
6871
|
-
{b0aca364-93a4-4cee-9430-15ade7f37f34}, !- Handle
|
6872
|
-
Shading Surface 12, !- Name
|
6873
|
-
, !- Construction Name
|
6874
|
-
{820da241-5ba0-4a6d-978b-28cd3e2c6bbf}, !- Shading Surface Group Name
|
6875
|
-
, !- Transmittance Schedule Name
|
6876
|
-
, !- Number of Vertices
|
6877
|
-
15.2409505711474, 1.68454681244157e-005, 30, !- X,Y,Z Vertex 1 {m}
|
6878
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
6879
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 3 {m}
|
6880
|
-
113.706208454144, 32.2495295569472, 30; !- X,Y,Z Vertex 4 {m}
|
6881
|
-
|
6882
|
-
OS:ShadingSurfaceGroup,
|
6883
|
-
{ffc64617-2b0e-4d9c-a847-49ae51df6de8}, !- Handle
|
6884
|
-
Building Office 1 Space 2, !- Name
|
6885
|
-
Building; !- Shading Surface Type
|
6886
|
-
|
6887
|
-
OS:ShadingSurface,
|
6888
|
-
{e7c5a540-dc21-484d-bd07-7b97f56d20de}, !- Handle
|
6889
|
-
Shading Surface 13, !- Name
|
6890
|
-
, !- Construction Name
|
6891
|
-
{ffc64617-2b0e-4d9c-a847-49ae51df6de8}, !- Shading Surface Group Name
|
6892
|
-
, !- Transmittance Schedule Name
|
6893
|
-
, !- Number of Vertices
|
6894
|
-
15.2409505711474, 1.68454681244157e-005, 9, !- X,Y,Z Vertex 1 {m}
|
6895
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
6896
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 3 {m}
|
6897
|
-
113.706208454144, 32.2495295569472, 9; !- X,Y,Z Vertex 4 {m}
|
6898
|
-
|
6899
|
-
OS:ShadingSurface,
|
6900
|
-
{7c302919-e095-4d12-b6d1-4fe73610b978}, !- Handle
|
6901
|
-
Shading Surface 14, !- Name
|
6902
|
-
, !- Construction Name
|
6903
|
-
{ffc64617-2b0e-4d9c-a847-49ae51df6de8}, !- Shading Surface Group Name
|
6904
|
-
, !- Transmittance Schedule Name
|
6905
|
-
, !- Number of Vertices
|
6906
|
-
-8.51798631629208e-011, 46.1997940409183, 9, !- X,Y,Z Vertex 1 {m}
|
6907
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 2 {m}
|
6908
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 3 {m}
|
6909
|
-
15.2409505711474, 1.68454681244157e-005, 9; !- X,Y,Z Vertex 4 {m}
|
6910
|
-
|
6911
|
-
OS:ShadingSurface,
|
6912
|
-
{ed1adda2-2e85-4078-86cc-719aea9d2cd2}, !- Handle
|
6913
|
-
Shading Surface 15, !- Name
|
6914
|
-
, !- Construction Name
|
6915
|
-
{ffc64617-2b0e-4d9c-a847-49ae51df6de8}, !- Shading Surface Group Name
|
6916
|
-
, !- Transmittance Schedule Name
|
6917
|
-
, !- Number of Vertices
|
6918
|
-
98.4646693679155, 78.4488745529279, 9, !- X,Y,Z Vertex 1 {m}
|
6919
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 2 {m}
|
6920
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6921
|
-
-8.51798631629208e-011, 46.1997940409183, 9; !- X,Y,Z Vertex 4 {m}
|
6922
|
-
|
6923
|
-
OS:ShadingSurface,
|
6924
|
-
{19be56b3-4cec-44b7-8696-027846c04f1c}, !- Handle
|
6925
|
-
Shading Surface 16, !- Name
|
6926
|
-
, !- Construction Name
|
6927
|
-
{ffc64617-2b0e-4d9c-a847-49ae51df6de8}, !- Shading Surface Group Name
|
6928
|
-
, !- Transmittance Schedule Name
|
6929
|
-
, !- Number of Vertices
|
6930
|
-
98.4646693679155, 78.4488745529279, 9, !- X,Y,Z Vertex 1 {m}
|
6931
|
-
-8.51798631629208e-011, 46.1997940409183, 9, !- X,Y,Z Vertex 2 {m}
|
6932
|
-
15.2409505711474, 1.68454681244157e-005, 9, !- X,Y,Z Vertex 3 {m}
|
6933
|
-
113.706208454144, 32.2495295569472, 9; !- X,Y,Z Vertex 4 {m}
|
6934
|
-
|
6935
|
-
OS:ShadingSurface,
|
6936
|
-
{7a0fe5a4-6dad-4faa-b55c-e0f6b1e25e88}, !- Handle
|
6937
|
-
Shading Surface 17, !- Name
|
6938
|
-
, !- Construction Name
|
6939
|
-
{ffc64617-2b0e-4d9c-a847-49ae51df6de8}, !- Shading Surface Group Name
|
6940
|
-
, !- Transmittance Schedule Name
|
6941
|
-
, !- Number of Vertices
|
6942
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 1 {m}
|
6943
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
6944
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6945
|
-
98.4646693679155, 78.4488745529279, 0; !- X,Y,Z Vertex 4 {m}
|
6946
|
-
|
6947
|
-
OS:ShadingSurface,
|
6948
|
-
{c7aec6e8-868a-46ea-9b82-49f5660bded2}, !- Handle
|
6949
|
-
Shading Surface 18, !- Name
|
6950
|
-
, !- Construction Name
|
6951
|
-
{ffc64617-2b0e-4d9c-a847-49ae51df6de8}, !- Shading Surface Group Name
|
6952
|
-
, !- Transmittance Schedule Name
|
6953
|
-
, !- Number of Vertices
|
6954
|
-
113.706208454144, 32.2495295569472, 9, !- X,Y,Z Vertex 1 {m}
|
6955
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 2 {m}
|
6956
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 3 {m}
|
6957
|
-
98.4646693679155, 78.4488745529279, 9; !- X,Y,Z Vertex 4 {m}
|
6958
|
-
|
6959
|
-
OS:ShadingSurfaceGroup,
|
6960
|
-
{4c71f56f-f65b-407e-a426-ef3ff2026433}, !- Handle
|
6961
|
-
Building Office 1 Space 3, !- Name
|
6962
|
-
Building; !- Shading Surface Type
|
6963
|
-
|
6964
|
-
OS:ShadingSurface,
|
6965
|
-
{4bce6b7c-ec74-426e-b965-e9f3211093a7}, !- Handle
|
6966
|
-
Shading Surface 19, !- Name
|
6967
|
-
, !- Construction Name
|
6968
|
-
{4c71f56f-f65b-407e-a426-ef3ff2026433}, !- Shading Surface Group Name
|
6969
|
-
, !- Transmittance Schedule Name
|
6970
|
-
, !- Number of Vertices
|
6971
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 1 {m}
|
6972
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
6973
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6974
|
-
98.4646693679155, 78.4488745529279, 0; !- X,Y,Z Vertex 4 {m}
|
6975
|
-
|
6976
|
-
OS:ShadingSurface,
|
6977
|
-
{cebab58d-21bb-4c4d-b969-d7605024c0e4}, !- Handle
|
6978
|
-
Shading Surface 20, !- Name
|
6979
|
-
, !- Construction Name
|
6980
|
-
{4c71f56f-f65b-407e-a426-ef3ff2026433}, !- Shading Surface Group Name
|
6981
|
-
, !- Transmittance Schedule Name
|
6982
|
-
, !- Number of Vertices
|
6983
|
-
-8.51798631629208e-011, 46.1997940409183, 24, !- X,Y,Z Vertex 1 {m}
|
6984
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 2 {m}
|
6985
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 3 {m}
|
6986
|
-
15.2409505711474, 1.68454681244157e-005, 24; !- X,Y,Z Vertex 4 {m}
|
6987
|
-
|
6988
|
-
OS:ShadingSurface,
|
6989
|
-
{9bae26ed-990c-4df5-84fd-4599889b48d1}, !- Handle
|
6990
|
-
Shading Surface 21, !- Name
|
6991
|
-
, !- Construction Name
|
6992
|
-
{4c71f56f-f65b-407e-a426-ef3ff2026433}, !- Shading Surface Group Name
|
6993
|
-
, !- Transmittance Schedule Name
|
6994
|
-
, !- Number of Vertices
|
6995
|
-
98.4646693679155, 78.4488745529279, 24, !- X,Y,Z Vertex 1 {m}
|
6996
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 2 {m}
|
6997
|
-
-8.51798631629208e-011, 46.1997940409183, 0, !- X,Y,Z Vertex 3 {m}
|
6998
|
-
-8.51798631629208e-011, 46.1997940409183, 24; !- X,Y,Z Vertex 4 {m}
|
6999
|
-
|
7000
|
-
OS:ShadingSurface,
|
7001
|
-
{c6d8bfba-026c-4fcd-be6d-1aef877bb2ad}, !- Handle
|
7002
|
-
Shading Surface 22, !- Name
|
7003
|
-
, !- Construction Name
|
7004
|
-
{4c71f56f-f65b-407e-a426-ef3ff2026433}, !- Shading Surface Group Name
|
7005
|
-
, !- Transmittance Schedule Name
|
7006
|
-
, !- Number of Vertices
|
7007
|
-
15.2409505711474, 1.68454681244157e-005, 24, !- X,Y,Z Vertex 1 {m}
|
7008
|
-
15.2409505711474, 1.68454681244157e-005, 0, !- X,Y,Z Vertex 2 {m}
|
7009
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 3 {m}
|
7010
|
-
113.706208454144, 32.2495295569472, 24; !- X,Y,Z Vertex 4 {m}
|
7011
|
-
|
7012
|
-
OS:ShadingSurface,
|
7013
|
-
{11fa6870-e33a-4460-ba6b-90ecbdc9a432}, !- Handle
|
7014
|
-
Shading Surface 23, !- Name
|
7015
|
-
, !- Construction Name
|
7016
|
-
{4c71f56f-f65b-407e-a426-ef3ff2026433}, !- Shading Surface Group Name
|
7017
|
-
, !- Transmittance Schedule Name
|
7018
|
-
, !- Number of Vertices
|
7019
|
-
113.706208454144, 32.2495295569472, 24, !- X,Y,Z Vertex 1 {m}
|
7020
|
-
113.706208454144, 32.2495295569472, 0, !- X,Y,Z Vertex 2 {m}
|
7021
|
-
98.4646693679155, 78.4488745529279, 0, !- X,Y,Z Vertex 3 {m}
|
7022
|
-
98.4646693679155, 78.4488745529279, 24; !- X,Y,Z Vertex 4 {m}
|
7023
|
-
|
7024
|
-
OS:ShadingSurface,
|
7025
|
-
{c73dfc67-2d53-4e0f-962b-32c9feb997e7}, !- Handle
|
7026
|
-
Shading Surface 24, !- Name
|
7027
|
-
, !- Construction Name
|
7028
|
-
{4c71f56f-f65b-407e-a426-ef3ff2026433}, !- Shading Surface Group Name
|
7029
|
-
, !- Transmittance Schedule Name
|
7030
|
-
, !- Number of Vertices
|
7031
|
-
98.4646693679155, 78.4488745529279, 24, !- X,Y,Z Vertex 1 {m}
|
7032
|
-
-8.51798631629208e-011, 46.1997940409183, 24, !- X,Y,Z Vertex 2 {m}
|
7033
|
-
15.2409505711474, 1.68454681244157e-005, 24, !- X,Y,Z Vertex 3 {m}
|
7034
|
-
113.706208454144, 32.2495295569472, 24; !- X,Y,Z Vertex 4 {m}
|
7035
6728
|
|
7036
6729
|
OS:DefaultScheduleSet,
|
7037
6730
|
{f1add6a3-4dd9-4d96-81ef-2898d258baf5}, !- Handle
|