urbanopt-geojson 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +24 -0
  3. data/.rakeTasks +7 -0
  4. data/.rdoc_options +43 -0
  5. data/.rspec +2 -0
  6. data/.rubocop.yml +10 -0
  7. data/.travis.yml +35 -0
  8. data/CHANGELOG.md +5 -0
  9. data/Gemfile +27 -0
  10. data/Jenkinsfile +10 -0
  11. data/LICENSE.md +27 -0
  12. data/RDOC_MAIN.md +48 -0
  13. data/README.md +40 -0
  14. data/Rakefile +45 -0
  15. data/deploy_docs.sh +4 -0
  16. data/doc_templates/LICENSE.md +27 -0
  17. data/doc_templates/README.md.erb +42 -0
  18. data/doc_templates/copyright_erb.txt +31 -0
  19. data/doc_templates/copyright_js.txt +4 -0
  20. data/doc_templates/copyright_ruby.txt +29 -0
  21. data/docs/.gitignore +3 -0
  22. data/docs/.vuepress/components/BuildingProperties.vue +12 -0
  23. data/docs/.vuepress/components/DistrictSystemProperties.vue +12 -0
  24. data/docs/.vuepress/components/ElectricalConnectorProperties.vue +12 -0
  25. data/docs/.vuepress/components/ElectricalJunctionProperties.vue +12 -0
  26. data/docs/.vuepress/components/InnerJsonSchema.vue +80 -0
  27. data/docs/.vuepress/components/JsonSchema.vue +12 -0
  28. data/docs/.vuepress/components/RegionProperties.vue +12 -0
  29. data/docs/.vuepress/components/SiteProperties.vue +12 -0
  30. data/docs/.vuepress/components/StaticLink.vue +8 -0
  31. data/docs/.vuepress/components/ThermalConnectorProperties.vue +12 -0
  32. data/docs/.vuepress/components/ThermalJunctionProperties.vue +12 -0
  33. data/docs/.vuepress/config.js +22 -0
  34. data/docs/.vuepress/highlight.js +8 -0
  35. data/docs/.vuepress/public/custom_rdoc_styles.css +64 -0
  36. data/docs/.vuepress/utils.js +17 -0
  37. data/docs/README.md +30 -0
  38. data/docs/doc/created.rid +0 -0
  39. data/docs/package-lock.json +11771 -0
  40. data/docs/package.json +22 -0
  41. data/docs/schemas/building-properties.md +3 -0
  42. data/docs/schemas/district-system-properties.md +3 -0
  43. data/docs/schemas/electrical-connector-properties.md +3 -0
  44. data/docs/schemas/electrical-junction-properties.md +3 -0
  45. data/docs/schemas/region-properties.md +3 -0
  46. data/docs/schemas/site-properties.md +3 -0
  47. data/docs/schemas/thermal-connector-properties.md +3 -0
  48. data/docs/schemas/thermal-junction-properties.md +3 -0
  49. data/lib/measures/.rubocop.yml +5 -0
  50. data/lib/measures/urban_geometry_creation/LICENSE.md +27 -0
  51. data/lib/measures/urban_geometry_creation/README.md +48 -0
  52. data/lib/measures/urban_geometry_creation/README.md.erb +42 -0
  53. data/lib/measures/urban_geometry_creation/measure.rb +199 -0
  54. data/lib/measures/urban_geometry_creation/measure.xml +139 -0
  55. data/lib/measures/urban_geometry_creation/tests/nrel_stm_footprints.geojson +3238 -0
  56. data/lib/measures/urban_geometry_creation/tests/shadowed_tests.rb +80 -0
  57. data/lib/measures/urban_geometry_creation/tests/urban_geometry_creation_test.rb +143 -0
  58. data/lib/measures/urban_geometry_creation_zoning/LICENSE.md +27 -0
  59. data/lib/measures/urban_geometry_creation_zoning/README.md +48 -0
  60. data/lib/measures/urban_geometry_creation_zoning/README.md.erb +42 -0
  61. data/lib/measures/urban_geometry_creation_zoning/measure.rb +203 -0
  62. data/lib/measures/urban_geometry_creation_zoning/measure.xml +133 -0
  63. data/lib/measures/urban_geometry_creation_zoning/tests/nrel_stm_footprints.geojson +3238 -0
  64. data/lib/measures/urban_geometry_creation_zoning/tests/urban_geometry_creation_test.rb +143 -0
  65. data/lib/urbanopt/geojson.rb +41 -0
  66. data/lib/urbanopt/geojson/building.rb +341 -0
  67. data/lib/urbanopt/geojson/district_system.rb +53 -0
  68. data/lib/urbanopt/geojson/extension.rb +63 -0
  69. data/lib/urbanopt/geojson/feature.rb +206 -0
  70. data/lib/urbanopt/geojson/geo_file.rb +154 -0
  71. data/lib/urbanopt/geojson/helper.rb +340 -0
  72. data/lib/urbanopt/geojson/logging.rb +46 -0
  73. data/lib/urbanopt/geojson/mapper_classes.rb +85 -0
  74. data/lib/urbanopt/geojson/model.rb +133 -0
  75. data/lib/urbanopt/geojson/region.rb +55 -0
  76. data/lib/urbanopt/geojson/schema/building_properties.json +358 -0
  77. data/lib/urbanopt/geojson/schema/district_system_properties.json +137 -0
  78. data/lib/urbanopt/geojson/schema/electrical_connector_properties.json +77 -0
  79. data/lib/urbanopt/geojson/schema/electrical_junction_properties.json +64 -0
  80. data/lib/urbanopt/geojson/schema/geojson_schema.json +323 -0
  81. data/lib/urbanopt/geojson/schema/region_properties.json +93 -0
  82. data/lib/urbanopt/geojson/schema/site_properties.json +87 -0
  83. data/lib/urbanopt/geojson/schema/thermal_connector_properties.json +107 -0
  84. data/lib/urbanopt/geojson/schema/thermal_junction_properties.json +83 -0
  85. data/lib/urbanopt/geojson/update_areas.rb +102 -0
  86. data/lib/urbanopt/geojson/validate_geojson.rb +147 -0
  87. data/lib/urbanopt/geojson/version.rb +35 -0
  88. data/lib/urbanopt/geojson/workflows/building.osw +187 -0
  89. data/lib/urbanopt/geojson/workflows/building.osw.out +2806 -0
  90. data/lib/urbanopt/geojson/workflows/district_system.osw +84 -0
  91. data/lib/urbanopt/geojson/workflows/district_system.osw.out +646 -0
  92. data/lib/urbanopt/geojson/zoning.rb +134 -0
  93. data/package-lock.json +3 -0
  94. data/urbanopt-geojson-gem.gemspec +39 -0
  95. metadata +238 -0
@@ -0,0 +1,147 @@
1
+ # *********************************************************************************
2
+ # URBANopt, Copyright (c) 2019, 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 'json'
32
+ require 'json-schema'
33
+
34
+ def get_building_schema(strict)
35
+ result = nil
36
+ File.open(File.dirname(__FILE__) + '/../schema/building_properties.json') do |f|
37
+ result = JSON.parse(f.read)
38
+ end
39
+ if strict
40
+ result['additionalProperties'] = false
41
+ else
42
+ result['additionalProperties'] = true
43
+ end
44
+ return result
45
+ end
46
+
47
+ def get_taxlot_schema(strict)
48
+ result = nil
49
+ File.open(File.dirname(__FILE__) + '/../schema/taxlot_properties.json') do |f|
50
+ result = JSON.parse(f.read)
51
+ end
52
+ if strict
53
+ result['additionalProperties'] = false
54
+ else
55
+ result['additionalProperties'] = true
56
+ end
57
+ return result
58
+ end
59
+
60
+ def get_district_system_schema(strict)
61
+ result = nil
62
+ File.open(File.dirname(__FILE__) + '/../schema/district_system_properties.json') do |f|
63
+ result = JSON.parse(f.read)
64
+ end
65
+ if strict
66
+ result['additionalProperties'] = false
67
+ else
68
+ result['additionalProperties'] = true
69
+ end
70
+ return result
71
+ end
72
+
73
+ def get_region_schema(strict)
74
+ result = nil
75
+ File.open(File.dirname(__FILE__) + '/../schema/region_properties.json') do |f|
76
+ result = JSON.parse(f.read)
77
+ end
78
+ if strict
79
+ result['additionalProperties'] = false
80
+ else
81
+ result['additionalProperties'] = true
82
+ end
83
+ return result
84
+ end
85
+
86
+ def validate(schema, data)
87
+ # validate
88
+ errors = JSON::Validator.fully_validate(schema, data, errors_as_objects: true)
89
+ return errors
90
+ end
91
+
92
+ strict = true
93
+ building_schema = get_building_schema(strict)
94
+ district_system_schema = get_district_system_schema(strict)
95
+ taxlot_schema = get_taxlot_schema(strict)
96
+ region_schema = get_region_schema(strict)
97
+
98
+ all_errors = {}
99
+
100
+ # Dir.glob("*.geojson").each do |p|
101
+ Dir.glob('denver_district*.geojson').each do |p|
102
+ # enforce .geojson extension
103
+ next unless /\.geojson$/.match(p)
104
+
105
+ # puts "Validating #{p}"
106
+ all_errors[p] = []
107
+
108
+ geojson = nil
109
+ File.open(p, 'r') do |f|
110
+ geojson = JSON.parse(f.read)
111
+ end
112
+
113
+ # loop over features
114
+ geojson['features'].each do |feature|
115
+ all_errors[p] << []
116
+
117
+ begin
118
+ geometry = feature['geometry']
119
+ data = feature['properties']
120
+ type = data['type']
121
+ errors = []
122
+
123
+ if /building/i.match(type)
124
+ errors = validate(building_schema, data)
125
+ elsif /district system/i.match(type)
126
+ errors = validate(district_system_schema, data)
127
+ elsif /taxlot/i.match(type)
128
+ errors = validate(taxlot_schema, data)
129
+ elsif /region/i.match(type)
130
+ errors = validate(region_schema, data)
131
+ else
132
+ raise("Unknown type: '#{type}'")
133
+ end
134
+
135
+ all_errors[p][-1].concat(errors)
136
+ rescue Exception => e
137
+ all_errors[p][-1] << "Error '#{e.message}' occurred: "
138
+ all_errors[p][-1] << e.backtrace.to_s
139
+ end
140
+
141
+ if all_errors[p][-1].empty?
142
+ all_errors[p].pop
143
+ end
144
+ end
145
+ end
146
+
147
+ puts all_errors
@@ -0,0 +1,35 @@
1
+ # *********************************************************************************
2
+ # URBANopt, Copyright (c) 2019, 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
+ module URBANopt
32
+ module GeoJSON
33
+ VERSION = '0.1.0'.freeze
34
+ end
35
+ end
@@ -0,0 +1,187 @@
1
+ {
2
+ "feature_type": "Building",
3
+ "seed_file": null,
4
+ "weather_file": null,
5
+ "root_directory": null,
6
+ "run_directory": "./run",
7
+ "file_paths": [
8
+ "./../../../weather/"
9
+ ],
10
+ "measure_paths": [
11
+ "./../../../measures/",
12
+ "./../../../../OpenStudio-measures/NREL working measures/",
13
+ "./../../../../OpenStudio-measures/NREL internal measures/"
14
+ ],
15
+ "steps": [
16
+ {
17
+ "name": "gem_env_report",
18
+ "measure_dir_name": "gem_env_report",
19
+ "arguments": {
20
+ }
21
+ },
22
+ {
23
+ "name": "set_run_period",
24
+ "measure_dir_name": "set_run_period",
25
+ "arguments": {
26
+ "__SKIP__": false,
27
+ "timesteps_per_hour": 4,
28
+ "begin_date": "2017-01-01",
29
+ "end_date": "2017-12-31"
30
+ }
31
+ },
32
+ {
33
+ "name": "ChangeBuildingLocation",
34
+ "measure_dir_name": "ChangeBuildingLocation",
35
+ "arguments": {
36
+ "__SKIP__": false,
37
+ "weather_file_name": "USA_CO_Denver.Intl.AP.725650_TMY3.epw",
38
+ "climate_zone": "5B"
39
+ }
40
+ },
41
+ {
42
+ "name": "create_bar_from_building_type_ratios",
43
+ "measure_dir_name": "create_bar_from_building_type_ratios",
44
+ "arguments": {
45
+ "bldg_type_a": null,
46
+ "bldg_type_a_num_units": null,
47
+ "bldg_type_b": null,
48
+ "bldg_type_b_fract_bldg_area": null,
49
+ "bldg_type_b_num_units": null,
50
+ "bldg_type_c": null,
51
+ "bldg_type_c_fract_bldg_area": null,
52
+ "bldg_type_c_num_units": null,
53
+ "bldg_type_d": null,
54
+ "bldg_type_d_fract_bldg_area": null,
55
+ "bldg_type_d_num_units": null,
56
+ "total_bldg_floor_area": null,
57
+ "floor_height": 0,
58
+ "num_stories_above_grade": null,
59
+ "num_stories_below_grade": null,
60
+ "building_rotation": 0,
61
+ "template": "90.1-2004",
62
+ "ns_to_ew_ratio": 0,
63
+ "wwr": 0,
64
+ "party_wall_fraction": 0,
65
+ "story_multiplier": "None",
66
+ "bar_division_method": "Multiple Space Types - Individual Stories Sliced"
67
+ }
68
+ },
69
+ {
70
+ "name": "create_typical_building_from_model 1",
71
+ "measure_dir_name": "create_typical_building_from_model",
72
+ "arguments": {
73
+ "template": "90.1-2004",
74
+ "add_thermostat": false,
75
+ "add_hvac": false
76
+ }
77
+ },
78
+ {
79
+ "name": "blended_space_type_from_model",
80
+ "measure_dir_name": "blended_space_type_from_model",
81
+ "arguments": {
82
+ "blend_method": "Building Story"
83
+ }
84
+ },
85
+ {
86
+ "name": "urban_geometry_creation",
87
+ "measure_dir_name": "urban_geometry_creation",
88
+ "arguments": {
89
+ "city_db_url": null,
90
+ "project_id": null,
91
+ "feature_id": null,
92
+ "surrounding_buildings": "None"
93
+ }
94
+ },
95
+ {
96
+ "name": "create_typical_building_from_model 2",
97
+ "measure_dir_name": "create_typical_building_from_model",
98
+ "arguments": {
99
+ "template": "90.1-2004",
100
+ "add_constructions": false,
101
+ "add_space_type_loads": false,
102
+ "add_elevators": false,
103
+ "add_exterior_lights": false,
104
+ "add_exhaust": false,
105
+ "add_swh": false,
106
+ "remove_objects": false,
107
+ "clg_src": "Electricity",
108
+ "htg_src": "NaturalGas",
109
+ "hvac_delivery_type": "Forced Air",
110
+ "system_type": "Inferred"
111
+ }
112
+ },
113
+ {
114
+ "name": "ReduceElectricEquipmentLoadsByPercentage",
115
+ "measure_dir_name": "ReduceElectricEquipmentLoadsByPercentage",
116
+ "arguments": {
117
+ "__SKIP__": true
118
+ }
119
+ },
120
+ {
121
+ "name": "AedgK12ElectricEquipmentControls",
122
+ "measure_dir_name": "AedgK12ElectricEquipmentControls",
123
+ "arguments": {
124
+ "__SKIP__": true
125
+ }
126
+ },
127
+ {
128
+ "name": "ReduceLightingLoadsByPercentage",
129
+ "measure_dir_name": "ReduceLightingLoadsByPercentage",
130
+ "arguments": {
131
+ "__SKIP__": true
132
+ }
133
+ },
134
+ {
135
+ "name": "AedgK12InteriorLightingControls",
136
+ "measure_dir_name": "AedgK12InteriorLightingControls",
137
+ "arguments": {
138
+ "__SKIP__": true
139
+ }
140
+ },
141
+ {
142
+ "name": "AdjustSystemEfficiencies",
143
+ "measure_dir_name": "AdjustSystemEfficiencies",
144
+ "arguments": {
145
+ "__SKIP__": true,
146
+ "heating_efficiency_multiplier": 1.0,
147
+ "cooling_cop_multiplier": 1.0
148
+ }
149
+ },
150
+ {
151
+ "name": "ImproveFanBeltEfficiency",
152
+ "measure_dir_name": "ImproveFanBeltEfficiency",
153
+ "arguments": {
154
+ "__SKIP__": true
155
+ }
156
+ },
157
+ {
158
+ "name": "ImproveMotorEfficiency",
159
+ "measure_dir_name": "ImproveMotorEfficiency",
160
+ "arguments": {
161
+ "__SKIP__": true
162
+ }
163
+ },
164
+ {
165
+ "name": "add_rooftop_pv",
166
+ "measure_dir_name": "add_rooftop_pv",
167
+ "arguments": {
168
+ "__SKIP__": true
169
+ }
170
+ },
171
+ {
172
+ "name": "ViewModel",
173
+ "measure_dir_name": "ViewModel",
174
+ "arguments": {
175
+ }
176
+ },
177
+ {
178
+ "name": "datapoint_reports",
179
+ "measure_dir_name": "datapoint_reports",
180
+ "arguments": {
181
+ "city_db_url": null,
182
+ "project_id": null,
183
+ "datapoint_id": null
184
+ }
185
+ }
186
+ ]
187
+ }
@@ -0,0 +1,2806 @@
1
+ {
2
+ "feature_type": "Building",
3
+ "seed_file": null,
4
+ "weather_file": null,
5
+ "root_directory": null,
6
+ "run_directory": "./run",
7
+ "file_paths": [
8
+ "./../../../weather/"
9
+ ],
10
+ "measure_paths": [
11
+ "./../../../measures/",
12
+ "./../../../../OpenStudio-measures/NREL working measures/",
13
+ "./../../../../OpenStudio-measures/NREL internal measures/"
14
+ ],
15
+ "steps": [
16
+ {
17
+ "name": "gem_env_report",
18
+ "measure_dir_name": "gem_env_report",
19
+ "arguments": {
20
+ },
21
+ "measure_definition": {
22
+ "name": "gem_environment_report",
23
+ "uid": "3f9f1a2f-0e8a-4c88-b817-10494fc3e73a",
24
+ "uuid": "{3f9f1a2f-0e8a-4c88-b817-10494fc3e73a}",
25
+ "version_id": "c2787324-da95-4957-a79d-6bca7211f5b9",
26
+ "version_uuid": "{c2787324-da95-4957-a79d-6bca7211f5b9}",
27
+ "version_modified": "20170322T154845Z",
28
+ "xml_checksum": "D1F10311",
29
+ "display_name": "gem environment report",
30
+ "class_name": "GemEnvironmentReport",
31
+ "description": "For OpenStudio testing and development; this measure reports out information about the gem path and gems that are available and loaded. Used for debugging different runtime environments.",
32
+ "modeler_description": "For OpenStudio testing and development; this measure reports out information about the gem path and gems that are available and loaded. Used for debugging different runtime environments.",
33
+ "tags": [
34
+ "Reporting.Troubleshooting"
35
+ ],
36
+ "outputs": [
37
+
38
+ ],
39
+ "attributes": [
40
+ {
41
+ "name": "Measure Type",
42
+ "display_name": "Measure Type",
43
+ "value": "ModelMeasure"
44
+ },
45
+ {
46
+ "name": "Intended Software Tool",
47
+ "display_name": "Intended Software Tool",
48
+ "value": "Apply Measure Now"
49
+ },
50
+ {
51
+ "name": "Intended Software Tool",
52
+ "display_name": "Intended Software Tool",
53
+ "value": "OpenStudio Application"
54
+ },
55
+ {
56
+ "name": "Intended Software Tool",
57
+ "display_name": "Intended Software Tool",
58
+ "value": "Parametric Analysis Tool"
59
+ }
60
+ ],
61
+ "arguments": [
62
+
63
+ ],
64
+ "visible": true
65
+ }
66
+ },
67
+ {
68
+ "name": "set_run_period",
69
+ "measure_dir_name": "set_run_period",
70
+ "arguments": {
71
+ "__SKIP__": false,
72
+ "timesteps_per_hour": 4,
73
+ "begin_date": "2017-01-01",
74
+ "end_date": "2017-12-31"
75
+ },
76
+ "measure_definition": {
77
+ "name": "set_run_period",
78
+ "uid": "7a84292a-3975-4ab3-9284-6edabcbe750b",
79
+ "uuid": "{7a84292a-3975-4ab3-9284-6edabcbe750b}",
80
+ "version_id": "d44923db-6aaf-46b6-9d93-3bb27a1816ff",
81
+ "version_uuid": "{d44923db-6aaf-46b6-9d93-3bb27a1816ff}",
82
+ "version_modified": "20170615T203344Z",
83
+ "xml_checksum": "2AF3A68E",
84
+ "display_name": "SetRunPeriod",
85
+ "class_name": "SetRunPeriod",
86
+ "description": "Sets the run period and timestep for simulation",
87
+ "modeler_description": "",
88
+ "tags": [
89
+ "Envelope.Form"
90
+ ],
91
+ "outputs": [
92
+
93
+ ],
94
+ "attributes": [
95
+ {
96
+ "name": "Measure Type",
97
+ "display_name": "Measure Type",
98
+ "value": "ModelMeasure"
99
+ },
100
+ {
101
+ "name": "Intended Software Tool",
102
+ "display_name": "Intended Software Tool",
103
+ "value": "Apply Measure Now"
104
+ },
105
+ {
106
+ "name": "Intended Software Tool",
107
+ "display_name": "Intended Software Tool",
108
+ "value": "OpenStudio Application"
109
+ },
110
+ {
111
+ "name": "Intended Software Tool",
112
+ "display_name": "Intended Software Tool",
113
+ "value": "Parametric Analysis Tool"
114
+ }
115
+ ],
116
+ "arguments": [
117
+ {
118
+ "name": "timesteps_per_hour",
119
+ "display_name": "Timesteps per hour",
120
+ "description": "Number of simulation timesteps per hour",
121
+ "type": "Integer",
122
+ "required": true,
123
+ "model_dependent": false,
124
+ "visible": true
125
+ },
126
+ {
127
+ "name": "begin_date",
128
+ "display_name": "Begin date",
129
+ "description": "Simulation start date, YYYY-MM-DD format",
130
+ "type": "String",
131
+ "required": true,
132
+ "model_dependent": false,
133
+ "visible": true
134
+ },
135
+ {
136
+ "name": "end_date",
137
+ "display_name": "End date",
138
+ "description": "Simulation end date, YYYY-MM-DD format",
139
+ "type": "String",
140
+ "required": true,
141
+ "model_dependent": false,
142
+ "visible": true
143
+ }
144
+ ],
145
+ "visible": true
146
+ }
147
+ },
148
+ {
149
+ "name": "ChangeBuildingLocation",
150
+ "measure_dir_name": "ChangeBuildingLocation",
151
+ "arguments": {
152
+ "__SKIP__": false,
153
+ "weather_file_name": "USA_CO_Denver.Intl.AP.725650_TMY3.epw",
154
+ "climate_zone": "5B"
155
+ },
156
+ "measure_definition": {
157
+ "name": "change_building_location",
158
+ "uid": "d4db4971-f5ba-11e3-a3ac-0800200c9a66",
159
+ "uuid": "{d4db4971-f5ba-11e3-a3ac-0800200c9a66}",
160
+ "version_id": "b3fd6f41-00dd-4ffd-95f0-f3ec03a06fcf",
161
+ "version_uuid": "{b3fd6f41-00dd-4ffd-95f0-f3ec03a06fcf}",
162
+ "version_modified": "20170531T200304Z",
163
+ "xml_checksum": "057E8D9D",
164
+ "display_name": "ChangeBuildingLocation",
165
+ "class_name": "ChangeBuildingLocation",
166
+ "description": "Change the building location",
167
+ "modeler_description": "Change the building location",
168
+ "tags": [
169
+ "Whole Building.Space Types"
170
+ ],
171
+ "outputs": [
172
+
173
+ ],
174
+ "attributes": [
175
+ {
176
+ "name": "Measure Type",
177
+ "display_name": "Measure Type",
178
+ "value": "ModelMeasure"
179
+ },
180
+ {
181
+ "name": "Uses SketchUp API",
182
+ "display_name": "Uses SketchUp API",
183
+ "value": false
184
+ }
185
+ ],
186
+ "arguments": [
187
+ {
188
+ "name": "weather_file_name",
189
+ "display_name": "Weather File Name",
190
+ "description": "Name of the weather file to change to. This is the filename with the extension (e.g. NewWeather.epw). Optionally this can inclucde the full file path, but for most use cases should just be file name.",
191
+ "type": "String",
192
+ "required": true,
193
+ "model_dependent": false,
194
+ "visible": true
195
+ },
196
+ {
197
+ "name": "climate_zone",
198
+ "display_name": "Climate Zone.",
199
+ "description": "",
200
+ "type": "Choice",
201
+ "required": true,
202
+ "model_dependent": false,
203
+ "default_value": "Lookup From Stat File",
204
+ "choice_values": [
205
+ "1A",
206
+ "1B",
207
+ "2A",
208
+ "2B",
209
+ "3A",
210
+ "3B",
211
+ "3C",
212
+ "4A",
213
+ "4B",
214
+ "4C",
215
+ "5A",
216
+ "5B",
217
+ "5C",
218
+ "6A",
219
+ "6B",
220
+ "7",
221
+ "8",
222
+ "Lookup From Stat File"
223
+ ],
224
+ "choice_display_names": [
225
+ "1A",
226
+ "1B",
227
+ "2A",
228
+ "2B",
229
+ "3A",
230
+ "3B",
231
+ "3C",
232
+ "4A",
233
+ "4B",
234
+ "4C",
235
+ "5A",
236
+ "5B",
237
+ "5C",
238
+ "6A",
239
+ "6B",
240
+ "7",
241
+ "8",
242
+ "Lookup From Stat File"
243
+ ],
244
+ "visible": true
245
+ }
246
+ ],
247
+ "visible": true
248
+ }
249
+ },
250
+ {
251
+ "name": "create_bar_from_building_type_ratios",
252
+ "measure_dir_name": "create_bar_from_building_type_ratios",
253
+ "arguments": {
254
+ "bldg_type_a": null,
255
+ "bldg_type_a_num_units": null,
256
+ "bldg_type_b": null,
257
+ "bldg_type_b_fract_bldg_area": null,
258
+ "bldg_type_b_num_units": null,
259
+ "bldg_type_c": null,
260
+ "bldg_type_c_fract_bldg_area": null,
261
+ "bldg_type_c_num_units": null,
262
+ "bldg_type_d": null,
263
+ "bldg_type_d_fract_bldg_area": null,
264
+ "bldg_type_d_num_units": null,
265
+ "total_bldg_floor_area": null,
266
+ "floor_height": 0,
267
+ "num_stories_above_grade": null,
268
+ "num_stories_below_grade": null,
269
+ "building_rotation": 0,
270
+ "template": "90.1-2004",
271
+ "ns_to_ew_ratio": 0,
272
+ "wwr": 0,
273
+ "party_wall_fraction": 0,
274
+ "story_multiplier": "None",
275
+ "bar_division_method": "Multiple Space Types - Individual Stories Sliced"
276
+ },
277
+ "measure_definition": {
278
+ "name": "create_bar_from_building_type_ratios",
279
+ "uid": "6e3a14f8-c3c7-4e03-bc51-bef8a52e1a05",
280
+ "uuid": "{6e3a14f8-c3c7-4e03-bc51-bef8a52e1a05}",
281
+ "version_id": "b032db7d-33c2-4f97-b9d6-e3b6f5dc1547",
282
+ "version_uuid": "{b032db7d-33c2-4f97-b9d6-e3b6f5dc1547}",
283
+ "version_modified": "20170605T211455Z",
284
+ "xml_checksum": "2AF3A68E",
285
+ "display_name": "Create Bar From Building Type Ratios",
286
+ "class_name": "CreateBarFromBuildingTypeRatios",
287
+ "description": "Create a core and perimeter bar sliced by space type.",
288
+ "modeler_description": "Space Type collections are made from one or more building types passed in with user arguments.",
289
+ "tags": [
290
+ "Envelope.Form"
291
+ ],
292
+ "outputs": [
293
+
294
+ ],
295
+ "attributes": [
296
+ {
297
+ "name": "Measure Type",
298
+ "display_name": "Measure Type",
299
+ "value": "ModelMeasure"
300
+ },
301
+ {
302
+ "name": "Intended Software Tool",
303
+ "display_name": "Intended Software Tool",
304
+ "value": "Apply Measure Now"
305
+ },
306
+ {
307
+ "name": "Intended Software Tool",
308
+ "display_name": "Intended Software Tool",
309
+ "value": "OpenStudio Application"
310
+ },
311
+ {
312
+ "name": "Intended Software Tool",
313
+ "display_name": "Intended Software Tool",
314
+ "value": "Parametric Analysis Tool"
315
+ }
316
+ ],
317
+ "arguments": [
318
+ {
319
+ "name": "bldg_type_a",
320
+ "display_name": "Primary Building Type",
321
+ "description": "",
322
+ "type": "Choice",
323
+ "required": true,
324
+ "model_dependent": false,
325
+ "default_value": "SmallOffice",
326
+ "choice_values": [
327
+ "SecondarySchool",
328
+ "PrimarySchool",
329
+ "SmallOffice",
330
+ "MediumOffice",
331
+ "LargeOffice",
332
+ "SmallHotel",
333
+ "LargeHotel",
334
+ "Warehouse",
335
+ "RetailStandalone",
336
+ "RetailStripmall",
337
+ "QuickServiceRestaurant",
338
+ "FullServiceRestaurant",
339
+ "MidriseApartment",
340
+ "HighriseApartment",
341
+ "Hospital",
342
+ "Outpatient",
343
+ "SuperMarket"
344
+ ],
345
+ "choice_display_names": [
346
+ "SecondarySchool",
347
+ "PrimarySchool",
348
+ "SmallOffice",
349
+ "MediumOffice",
350
+ "LargeOffice",
351
+ "SmallHotel",
352
+ "LargeHotel",
353
+ "Warehouse",
354
+ "RetailStandalone",
355
+ "RetailStripmall",
356
+ "QuickServiceRestaurant",
357
+ "FullServiceRestaurant",
358
+ "MidriseApartment",
359
+ "HighriseApartment",
360
+ "Hospital",
361
+ "Outpatient",
362
+ "SuperMarket"
363
+ ],
364
+ "visible": true
365
+ },
366
+ {
367
+ "name": "bldg_type_a_num_units",
368
+ "display_name": "Primary Building Type Number of Units",
369
+ "description": "",
370
+ "type": "Integer",
371
+ "required": true,
372
+ "model_dependent": false,
373
+ "default_value": 1,
374
+ "visible": true
375
+ },
376
+ {
377
+ "name": "bldg_type_b",
378
+ "display_name": "Building Type B",
379
+ "description": "",
380
+ "type": "Choice",
381
+ "required": true,
382
+ "model_dependent": false,
383
+ "default_value": "SmallOffice",
384
+ "choice_values": [
385
+ "SecondarySchool",
386
+ "PrimarySchool",
387
+ "SmallOffice",
388
+ "MediumOffice",
389
+ "LargeOffice",
390
+ "SmallHotel",
391
+ "LargeHotel",
392
+ "Warehouse",
393
+ "RetailStandalone",
394
+ "RetailStripmall",
395
+ "QuickServiceRestaurant",
396
+ "FullServiceRestaurant",
397
+ "MidriseApartment",
398
+ "HighriseApartment",
399
+ "Hospital",
400
+ "Outpatient",
401
+ "SuperMarket"
402
+ ],
403
+ "choice_display_names": [
404
+ "SecondarySchool",
405
+ "PrimarySchool",
406
+ "SmallOffice",
407
+ "MediumOffice",
408
+ "LargeOffice",
409
+ "SmallHotel",
410
+ "LargeHotel",
411
+ "Warehouse",
412
+ "RetailStandalone",
413
+ "RetailStripmall",
414
+ "QuickServiceRestaurant",
415
+ "FullServiceRestaurant",
416
+ "MidriseApartment",
417
+ "HighriseApartment",
418
+ "Hospital",
419
+ "Outpatient",
420
+ "SuperMarket"
421
+ ],
422
+ "visible": true
423
+ },
424
+ {
425
+ "name": "bldg_type_b_fract_bldg_area",
426
+ "display_name": "Building Type B Fraction of Building Floor Area",
427
+ "description": "",
428
+ "type": "Double",
429
+ "required": true,
430
+ "model_dependent": false,
431
+ "default_value": 0.0,
432
+ "visible": true
433
+ },
434
+ {
435
+ "name": "bldg_type_b_num_units",
436
+ "display_name": "Building Type B Number of Units",
437
+ "description": "",
438
+ "type": "Integer",
439
+ "required": true,
440
+ "model_dependent": false,
441
+ "default_value": 1,
442
+ "visible": true
443
+ },
444
+ {
445
+ "name": "bldg_type_c",
446
+ "display_name": "Building Type C",
447
+ "description": "",
448
+ "type": "Choice",
449
+ "required": true,
450
+ "model_dependent": false,
451
+ "default_value": "SmallOffice",
452
+ "choice_values": [
453
+ "SecondarySchool",
454
+ "PrimarySchool",
455
+ "SmallOffice",
456
+ "MediumOffice",
457
+ "LargeOffice",
458
+ "SmallHotel",
459
+ "LargeHotel",
460
+ "Warehouse",
461
+ "RetailStandalone",
462
+ "RetailStripmall",
463
+ "QuickServiceRestaurant",
464
+ "FullServiceRestaurant",
465
+ "MidriseApartment",
466
+ "HighriseApartment",
467
+ "Hospital",
468
+ "Outpatient",
469
+ "SuperMarket"
470
+ ],
471
+ "choice_display_names": [
472
+ "SecondarySchool",
473
+ "PrimarySchool",
474
+ "SmallOffice",
475
+ "MediumOffice",
476
+ "LargeOffice",
477
+ "SmallHotel",
478
+ "LargeHotel",
479
+ "Warehouse",
480
+ "RetailStandalone",
481
+ "RetailStripmall",
482
+ "QuickServiceRestaurant",
483
+ "FullServiceRestaurant",
484
+ "MidriseApartment",
485
+ "HighriseApartment",
486
+ "Hospital",
487
+ "Outpatient",
488
+ "SuperMarket"
489
+ ],
490
+ "visible": true
491
+ },
492
+ {
493
+ "name": "bldg_type_c_fract_bldg_area",
494
+ "display_name": "Building Type C Fraction of Building Floor Area",
495
+ "description": "",
496
+ "type": "Double",
497
+ "required": true,
498
+ "model_dependent": false,
499
+ "default_value": 0.0,
500
+ "visible": true
501
+ },
502
+ {
503
+ "name": "bldg_type_c_num_units",
504
+ "display_name": "Building Type C Number of Units",
505
+ "description": "",
506
+ "type": "Integer",
507
+ "required": true,
508
+ "model_dependent": false,
509
+ "default_value": 1,
510
+ "visible": true
511
+ },
512
+ {
513
+ "name": "bldg_type_d",
514
+ "display_name": "Building Type D",
515
+ "description": "",
516
+ "type": "Choice",
517
+ "required": true,
518
+ "model_dependent": false,
519
+ "default_value": "SmallOffice",
520
+ "choice_values": [
521
+ "SecondarySchool",
522
+ "PrimarySchool",
523
+ "SmallOffice",
524
+ "MediumOffice",
525
+ "LargeOffice",
526
+ "SmallHotel",
527
+ "LargeHotel",
528
+ "Warehouse",
529
+ "RetailStandalone",
530
+ "RetailStripmall",
531
+ "QuickServiceRestaurant",
532
+ "FullServiceRestaurant",
533
+ "MidriseApartment",
534
+ "HighriseApartment",
535
+ "Hospital",
536
+ "Outpatient",
537
+ "SuperMarket"
538
+ ],
539
+ "choice_display_names": [
540
+ "SecondarySchool",
541
+ "PrimarySchool",
542
+ "SmallOffice",
543
+ "MediumOffice",
544
+ "LargeOffice",
545
+ "SmallHotel",
546
+ "LargeHotel",
547
+ "Warehouse",
548
+ "RetailStandalone",
549
+ "RetailStripmall",
550
+ "QuickServiceRestaurant",
551
+ "FullServiceRestaurant",
552
+ "MidriseApartment",
553
+ "HighriseApartment",
554
+ "Hospital",
555
+ "Outpatient",
556
+ "SuperMarket"
557
+ ],
558
+ "visible": true
559
+ },
560
+ {
561
+ "name": "bldg_type_d_fract_bldg_area",
562
+ "display_name": "Building Type D Fraction of Building Floor Area",
563
+ "description": "",
564
+ "type": "Double",
565
+ "required": true,
566
+ "model_dependent": false,
567
+ "default_value": 0.0,
568
+ "visible": true
569
+ },
570
+ {
571
+ "name": "bldg_type_d_num_units",
572
+ "display_name": "Building Type D Number of Units",
573
+ "description": "",
574
+ "type": "Integer",
575
+ "required": true,
576
+ "model_dependent": false,
577
+ "default_value": 1,
578
+ "visible": true
579
+ },
580
+ {
581
+ "name": "single_floor_area",
582
+ "display_name": "Single Floor Area",
583
+ "description": "Non-zero value will fix the single floor area, overriding a user entry for Total Building Floor Area",
584
+ "type": "Double",
585
+ "required": true,
586
+ "model_dependent": false,
587
+ "units": "ft^2",
588
+ "default_value": 0.0,
589
+ "visible": true
590
+ },
591
+ {
592
+ "name": "total_bldg_floor_area",
593
+ "display_name": "Total Building Floor Area",
594
+ "description": "",
595
+ "type": "Double",
596
+ "required": true,
597
+ "model_dependent": false,
598
+ "units": "ft^2",
599
+ "default_value": 10000.0,
600
+ "visible": true
601
+ },
602
+ {
603
+ "name": "floor_height",
604
+ "display_name": "Typical Floor to FLoor Height",
605
+ "description": "Selecting a typical floor height of 0 will trigger a smart building type default.",
606
+ "type": "Double",
607
+ "required": true,
608
+ "model_dependent": false,
609
+ "units": "ft",
610
+ "default_value": 0.0,
611
+ "visible": true
612
+ },
613
+ {
614
+ "name": "num_stories_above_grade",
615
+ "display_name": "Number of Stories Above Grade",
616
+ "description": "",
617
+ "type": "Double",
618
+ "required": true,
619
+ "model_dependent": false,
620
+ "default_value": 1.0,
621
+ "visible": true
622
+ },
623
+ {
624
+ "name": "num_stories_below_grade",
625
+ "display_name": "Number of Stories Below Grade",
626
+ "description": "",
627
+ "type": "Integer",
628
+ "required": true,
629
+ "model_dependent": false,
630
+ "default_value": 0,
631
+ "visible": true
632
+ },
633
+ {
634
+ "name": "building_rotation",
635
+ "display_name": "Building Rotation",
636
+ "description": "Set Building Rotation off of North (positive value is clockwise).",
637
+ "type": "Double",
638
+ "required": true,
639
+ "model_dependent": false,
640
+ "units": "Degrees",
641
+ "default_value": 0.0,
642
+ "visible": true
643
+ },
644
+ {
645
+ "name": "template",
646
+ "display_name": "Target Standard",
647
+ "description": "",
648
+ "type": "Choice",
649
+ "required": true,
650
+ "model_dependent": false,
651
+ "default_value": "90.1-2004",
652
+ "choice_values": [
653
+ "DOE Ref Pre-1980",
654
+ "DOE Ref 1980-2004",
655
+ "90.1-2004",
656
+ "90.1-2007",
657
+ "90.1-2010",
658
+ "90.1-2013"
659
+ ],
660
+ "choice_display_names": [
661
+ "DOE Ref Pre-1980",
662
+ "DOE Ref 1980-2004",
663
+ "90.1-2004",
664
+ "90.1-2007",
665
+ "90.1-2010",
666
+ "90.1-2013"
667
+ ],
668
+ "visible": true
669
+ },
670
+ {
671
+ "name": "ns_to_ew_ratio",
672
+ "display_name": "Ratio of North/South Facade Length Relative to East/West Facade Length.",
673
+ "description": "Selecting an aspect ratio of 0 will trigger a smart building type default. Aspect ratios less than one are not recommended for sliced bar geometry, instead rotate building and use a greater than 1 aspect ratio",
674
+ "type": "Double",
675
+ "required": true,
676
+ "model_dependent": false,
677
+ "default_value": 0.0,
678
+ "visible": true
679
+ },
680
+ {
681
+ "name": "wwr",
682
+ "display_name": "Window to Wall Ratio.",
683
+ "description": "Selecting a window to wall ratio of 0 will trigger a smart building type default.",
684
+ "type": "Double",
685
+ "required": true,
686
+ "model_dependent": false,
687
+ "default_value": 0.0,
688
+ "visible": true
689
+ },
690
+ {
691
+ "name": "party_wall_fraction",
692
+ "display_name": "Fraction of Exterior Wall Area with Adjacent Structure",
693
+ "description": "This will impact how many above grade exterior walls are modeled with adiabatic boundary condition.",
694
+ "type": "Double",
695
+ "required": true,
696
+ "model_dependent": false,
697
+ "default_value": 0.0,
698
+ "visible": true
699
+ },
700
+ {
701
+ "name": "party_wall_stories_north",
702
+ "display_name": "Number of North facing stories with party wall",
703
+ "description": "This will impact how many above grade exterior north walls are modeled with adiabatic boundary condition. If this is less than the number of above grade stoes, upper flor will reamin exterior",
704
+ "type": "Integer",
705
+ "required": true,
706
+ "model_dependent": false,
707
+ "default_value": 0,
708
+ "visible": true
709
+ },
710
+ {
711
+ "name": "party_wall_stories_south",
712
+ "display_name": "Number of South facing stories with party wall",
713
+ "description": "This will impact how many above grade exterior south walls are modeled with adiabatic boundary condition. If this is less than the number of above grade stoes, upper flor will reamin exterior",
714
+ "type": "Integer",
715
+ "required": true,
716
+ "model_dependent": false,
717
+ "default_value": 0,
718
+ "visible": true
719
+ },
720
+ {
721
+ "name": "party_wall_stories_east",
722
+ "display_name": "Number of East facing stories with party wall",
723
+ "description": "This will impact how many above grade exterior east walls are modeled with adiabatic boundary condition. If this is less than the number of above grade stoes, upper flor will reamin exterior",
724
+ "type": "Integer",
725
+ "required": true,
726
+ "model_dependent": false,
727
+ "default_value": 0,
728
+ "visible": true
729
+ },
730
+ {
731
+ "name": "party_wall_stories_west",
732
+ "display_name": "Number of West facing stories with party wall",
733
+ "description": "This will impact how many above grade exterior west walls are modeled with adiabatic boundary condition. If this is less than the number of above grade stoes, upper flor will reamin exterior",
734
+ "type": "Integer",
735
+ "required": true,
736
+ "model_dependent": false,
737
+ "default_value": 0,
738
+ "visible": true
739
+ },
740
+ {
741
+ "name": "bottom_story_ground_exposed_floor",
742
+ "display_name": "Is the Bottom Story Exposed to Ground?",
743
+ "description": "This should be true unless you are modeling a partial building which doesn't include the lowest story. The bottom story floor will have an adiabatic boundary condition when false.",
744
+ "type": "Boolean",
745
+ "required": true,
746
+ "model_dependent": false,
747
+ "default_value": true,
748
+ "visible": true
749
+ },
750
+ {
751
+ "name": "top_story_exterior_exposed_roof",
752
+ "display_name": "Is the Top Story an Exterior Roof?",
753
+ "description": "This should be true unless you are modeling a partial building which doesn't include the highest story. The top story ceiling will have an adiabatic boundary condition when false.",
754
+ "type": "Boolean",
755
+ "required": true,
756
+ "model_dependent": false,
757
+ "default_value": true,
758
+ "visible": true
759
+ },
760
+ {
761
+ "name": "story_multiplier",
762
+ "display_name": "Calculation Method for Story Multiplier",
763
+ "description": "",
764
+ "type": "Choice",
765
+ "required": true,
766
+ "model_dependent": false,
767
+ "default_value": "Basements Ground Mid Top",
768
+ "choice_values": [
769
+ "None",
770
+ "Basements Ground Mid Top"
771
+ ],
772
+ "choice_display_names": [
773
+ "None",
774
+ "Basements Ground Mid Top"
775
+ ],
776
+ "visible": true
777
+ },
778
+ {
779
+ "name": "bar_division_method",
780
+ "display_name": "Division Method for Bar Space Types.",
781
+ "description": "",
782
+ "type": "Choice",
783
+ "required": true,
784
+ "model_dependent": false,
785
+ "default_value": "Multiple Space Types - Individual Stories Sliced",
786
+ "choice_values": [
787
+ "Multiple Space Types - Simple Sliced",
788
+ "Multiple Space Types - Individual Stories Sliced",
789
+ "Single Space Type - Core and Perimeter"
790
+ ],
791
+ "choice_display_names": [
792
+ "Multiple Space Types - Simple Sliced",
793
+ "Multiple Space Types - Individual Stories Sliced",
794
+ "Single Space Type - Core and Perimeter"
795
+ ],
796
+ "visible": true
797
+ },
798
+ {
799
+ "name": "make_mid_story_surfaces_adiabatic",
800
+ "display_name": "Make Mid Story Floor Surfaces Adibatic",
801
+ "description": "If set to true, this will skip surface intersection and make mid story floors and celings adiabiatc, not just at multiplied gaps.",
802
+ "type": "Boolean",
803
+ "required": true,
804
+ "model_dependent": false,
805
+ "default_value": false,
806
+ "visible": true
807
+ }
808
+ ],
809
+ "visible": true
810
+ }
811
+ },
812
+ {
813
+ "name": "create_typical_building_from_model 1",
814
+ "measure_dir_name": "create_typical_building_from_model",
815
+ "arguments": {
816
+ "template": "90.1-2004",
817
+ "add_thermostat": false,
818
+ "add_hvac": false
819
+ },
820
+ "measure_definition": {
821
+ "name": "create_typical_building_from_model",
822
+ "uid": "339a2e3a-273c-4494-bb50-bfe586a0647c",
823
+ "uuid": "{339a2e3a-273c-4494-bb50-bfe586a0647c}",
824
+ "version_id": "2bd161d7-455f-44e3-ba7b-95e17aa2d0de",
825
+ "version_uuid": "{2bd161d7-455f-44e3-ba7b-95e17aa2d0de}",
826
+ "version_modified": "20170610T214305Z",
827
+ "xml_checksum": "EE13F09F",
828
+ "display_name": "Create Typical Building from Model",
829
+ "class_name": "CreateTypicalBuildingFromModel",
830
+ "description": "Takes a model with space and stub space types, and assigns constructions, schedules, internal loads, hvac, and other loads such as exterior lights and service water heating. The end result is somewhat like a custom protptye model with user geometry, but it may use different HVAC systems.",
831
+ "modeler_description": "Initially this was intended for stub space types, but it is possible that it will be run on models tha talready have internal loads, schedules, or constructions that should be preserved. Set it up to support addition at later date of bool args to skip specific types of model elements.",
832
+ "tags": [
833
+ "Whole Building.Space Types"
834
+ ],
835
+ "outputs": [
836
+
837
+ ],
838
+ "attributes": [
839
+ {
840
+ "name": "Measure Type",
841
+ "display_name": "Measure Type",
842
+ "value": "ModelMeasure"
843
+ },
844
+ {
845
+ "name": "Intended Software Tool",
846
+ "display_name": "Intended Software Tool",
847
+ "value": "Apply Measure Now"
848
+ },
849
+ {
850
+ "name": "Intended Software Tool",
851
+ "display_name": "Intended Software Tool",
852
+ "value": "OpenStudio Application"
853
+ },
854
+ {
855
+ "name": "Intended Software Tool",
856
+ "display_name": "Intended Software Tool",
857
+ "value": "Parametric Analysis Tool"
858
+ },
859
+ {
860
+ "name": "Intended Use Case",
861
+ "display_name": "Intended Use Case",
862
+ "value": "Model Articulation"
863
+ }
864
+ ],
865
+ "arguments": [
866
+ {
867
+ "name": "template",
868
+ "display_name": "Target Standard",
869
+ "description": "",
870
+ "type": "Choice",
871
+ "required": true,
872
+ "model_dependent": false,
873
+ "default_value": "90.1-2010",
874
+ "choice_values": [
875
+ "DOE Ref Pre-1980",
876
+ "DOE Ref 1980-2004",
877
+ "90.1-2004",
878
+ "90.1-2007",
879
+ "90.1-2010",
880
+ "90.1-2013"
881
+ ],
882
+ "choice_display_names": [
883
+ "DOE Ref Pre-1980",
884
+ "DOE Ref 1980-2004",
885
+ "90.1-2004",
886
+ "90.1-2007",
887
+ "90.1-2010",
888
+ "90.1-2013"
889
+ ],
890
+ "visible": true
891
+ },
892
+ {
893
+ "name": "system_type",
894
+ "display_name": "HVAC System Type",
895
+ "description": "",
896
+ "type": "Choice",
897
+ "required": true,
898
+ "model_dependent": false,
899
+ "default_value": "Inferred",
900
+ "choice_values": [
901
+ "Inferred",
902
+ "Ideal Air Loads",
903
+ "PTAC with hot water heat",
904
+ "PTAC with gas coil heat",
905
+ "PTAC with electric baseboard heat",
906
+ "PTAC with no heat",
907
+ "PTAC with district hot water heat",
908
+ "PTHP",
909
+ "PSZ-AC with gas coil heat",
910
+ "PSZ-AC with electric baseboard heat",
911
+ "PSZ-AC with no heat",
912
+ "PSZ-AC with district hot water heat",
913
+ "PSZ-HP",
914
+ "Fan coil district chilled water with no heat",
915
+ "Fan coil district chilled water and boiler",
916
+ "Fan coil district chilled water unit heaters",
917
+ "Fan coil district chilled water electric baseboard heat",
918
+ "Fan coil district hot and chilled water",
919
+ "Fan coil district hot water and chiller",
920
+ "Fan coil chiller with no heat",
921
+ "Baseboard district hot water heat",
922
+ "Baseboard district hot water heat with direct evap coolers",
923
+ "Baseboard electric heat",
924
+ "Baseboard electric heat with direct evap coolers",
925
+ "Baseboard hot water heat",
926
+ "Baseboard hot water heat with direct evap coolers",
927
+ "Window AC with no heat",
928
+ "Window AC with forced air furnace",
929
+ "Window AC with district hot water baseboard heat",
930
+ "Window AC with hot water baseboard heat",
931
+ "Window AC with electric baseboard heat",
932
+ "Window AC with unit heaters",
933
+ "Direct evap coolers",
934
+ "Direct evap coolers with unit heaters",
935
+ "Unit heaters",
936
+ "Heat pump heat with no cooling",
937
+ "Heat pump heat with direct evap cooler",
938
+ "VAV with reheat",
939
+ "VAV with PFP boxes",
940
+ "VAV with gas reheat",
941
+ "VAV with zone unit heaters",
942
+ "VAV with electric baseboard heat",
943
+ "VAV cool with zone heat pump heat",
944
+ "PVAV with reheat",
945
+ "PVAV with PFP boxes",
946
+ "Residential forced air",
947
+ "Residential forced air cooling hot water baseboard heat",
948
+ "Residential forced air with district hot water",
949
+ "Residential heat pump",
950
+ "Forced air furnace",
951
+ "Forced air furnace district chilled water fan coil",
952
+ "Forced air furnace direct evap cooler",
953
+ "Residential AC with no heat",
954
+ "Residential AC with electric baseboard heat"
955
+ ],
956
+ "choice_display_names": [
957
+ "Inferred",
958
+ "Ideal Air Loads",
959
+ "PTAC with hot water heat",
960
+ "PTAC with gas coil heat",
961
+ "PTAC with electric baseboard heat",
962
+ "PTAC with no heat",
963
+ "PTAC with district hot water heat",
964
+ "PTHP",
965
+ "PSZ-AC with gas coil heat",
966
+ "PSZ-AC with electric baseboard heat",
967
+ "PSZ-AC with no heat",
968
+ "PSZ-AC with district hot water heat",
969
+ "PSZ-HP",
970
+ "Fan coil district chilled water with no heat",
971
+ "Fan coil district chilled water and boiler",
972
+ "Fan coil district chilled water unit heaters",
973
+ "Fan coil district chilled water electric baseboard heat",
974
+ "Fan coil district hot and chilled water",
975
+ "Fan coil district hot water and chiller",
976
+ "Fan coil chiller with no heat",
977
+ "Baseboard district hot water heat",
978
+ "Baseboard district hot water heat with direct evap coolers",
979
+ "Baseboard electric heat",
980
+ "Baseboard electric heat with direct evap coolers",
981
+ "Baseboard hot water heat",
982
+ "Baseboard hot water heat with direct evap coolers",
983
+ "Window AC with no heat",
984
+ "Window AC with forced air furnace",
985
+ "Window AC with district hot water baseboard heat",
986
+ "Window AC with hot water baseboard heat",
987
+ "Window AC with electric baseboard heat",
988
+ "Window AC with unit heaters",
989
+ "Direct evap coolers",
990
+ "Direct evap coolers with unit heaters",
991
+ "Unit heaters",
992
+ "Heat pump heat with no cooling",
993
+ "Heat pump heat with direct evap cooler",
994
+ "VAV with reheat",
995
+ "VAV with PFP boxes",
996
+ "VAV with gas reheat",
997
+ "VAV with zone unit heaters",
998
+ "VAV with electric baseboard heat",
999
+ "VAV cool with zone heat pump heat",
1000
+ "PVAV with reheat",
1001
+ "PVAV with PFP boxes",
1002
+ "Residential forced air",
1003
+ "Residential forced air cooling hot water baseboard heat",
1004
+ "Residential forced air with district hot water",
1005
+ "Residential heat pump",
1006
+ "Forced air furnace",
1007
+ "Forced air furnace district chilled water fan coil",
1008
+ "Forced air furnace direct evap cooler",
1009
+ "Residential AC with no heat",
1010
+ "Residential AC with electric baseboard heat"
1011
+ ],
1012
+ "visible": true
1013
+ },
1014
+ {
1015
+ "name": "hvac_delivery_type",
1016
+ "display_name": "HVAC System Delivery Type",
1017
+ "description": "How the HVAC system delivers heating or cooling to the zone.",
1018
+ "type": "Choice",
1019
+ "required": true,
1020
+ "model_dependent": false,
1021
+ "default_value": "Forced Air",
1022
+ "choice_values": [
1023
+ "Forced Air",
1024
+ "Hydronic"
1025
+ ],
1026
+ "choice_display_names": [
1027
+ "Forced Air",
1028
+ "Hydronic"
1029
+ ],
1030
+ "visible": true
1031
+ },
1032
+ {
1033
+ "name": "htg_src",
1034
+ "display_name": "HVAC Heating Source",
1035
+ "description": "The primary source of heating used by HVAC systems in the model.",
1036
+ "type": "Choice",
1037
+ "required": true,
1038
+ "model_dependent": false,
1039
+ "default_value": "NaturalGas",
1040
+ "choice_values": [
1041
+ "Electricity",
1042
+ "NaturalGas",
1043
+ "DistrictHeating",
1044
+ "DistrictAmbient"
1045
+ ],
1046
+ "choice_display_names": [
1047
+ "Electricity",
1048
+ "NaturalGas",
1049
+ "DistrictHeating",
1050
+ "DistrictAmbient"
1051
+ ],
1052
+ "visible": true
1053
+ },
1054
+ {
1055
+ "name": "clg_src",
1056
+ "display_name": "HVAC Cooling Source",
1057
+ "description": "The primary source of cooling used by HVAC systems in the model.",
1058
+ "type": "Choice",
1059
+ "required": true,
1060
+ "model_dependent": false,
1061
+ "default_value": "Electricity",
1062
+ "choice_values": [
1063
+ "Electricity",
1064
+ "DistrictCooling",
1065
+ "DistrictAmbient"
1066
+ ],
1067
+ "choice_display_names": [
1068
+ "Electricity",
1069
+ "DistrictCooling",
1070
+ "DistrictAmbient"
1071
+ ],
1072
+ "visible": true
1073
+ },
1074
+ {
1075
+ "name": "kitchen_makeup",
1076
+ "display_name": "Kitchen Exhaust MakeUp Air Calculation Method",
1077
+ "description": "Determine logic to identify dining or cafe zones to provide makeup air to kitchen exhaust.",
1078
+ "type": "Choice",
1079
+ "required": true,
1080
+ "model_dependent": false,
1081
+ "default_value": "Adjacent",
1082
+ "choice_values": [
1083
+ "None",
1084
+ "Largest Zone",
1085
+ "Adjacent"
1086
+ ],
1087
+ "choice_display_names": [
1088
+ "None",
1089
+ "Largest Zone",
1090
+ "Adjacent"
1091
+ ],
1092
+ "visible": true
1093
+ },
1094
+ {
1095
+ "name": "exterior_lighting_zone",
1096
+ "display_name": "Exterior Lighting Zone",
1097
+ "description": "Identify the Exterior Lighitng Zone for the Building Site.",
1098
+ "type": "Choice",
1099
+ "required": true,
1100
+ "model_dependent": false,
1101
+ "default_value": "3 - All Other Areas",
1102
+ "choice_values": [
1103
+ "0 - Undeveloped Areas Parks",
1104
+ "1 - Developed Areas Parks",
1105
+ "2 - Neighborhood",
1106
+ "3 - All Other Areas",
1107
+ "4 - High Activity"
1108
+ ],
1109
+ "choice_display_names": [
1110
+ "0 - Undeveloped Areas Parks",
1111
+ "1 - Developed Areas Parks",
1112
+ "2 - Neighborhood",
1113
+ "3 - All Other Areas",
1114
+ "4 - High Activity"
1115
+ ],
1116
+ "visible": true
1117
+ },
1118
+ {
1119
+ "name": "add_constructions",
1120
+ "display_name": "Add Constructions to Model",
1121
+ "description": "Construction Set will be appied to entire building",
1122
+ "type": "Boolean",
1123
+ "required": true,
1124
+ "model_dependent": false,
1125
+ "default_value": true,
1126
+ "visible": true
1127
+ },
1128
+ {
1129
+ "name": "add_space_type_loads",
1130
+ "display_name": "Add Space Type Loads to Model",
1131
+ "description": "Populate existing space types in model with internal loads.",
1132
+ "type": "Boolean",
1133
+ "required": true,
1134
+ "model_dependent": false,
1135
+ "default_value": true,
1136
+ "visible": true
1137
+ },
1138
+ {
1139
+ "name": "add_elevators",
1140
+ "display_name": "Add Elevators to Model",
1141
+ "description": "Elevators will be add directly to space in model vs. being applied to a space type.",
1142
+ "type": "Boolean",
1143
+ "required": true,
1144
+ "model_dependent": false,
1145
+ "default_value": true,
1146
+ "visible": true
1147
+ },
1148
+ {
1149
+ "name": "add_exterior_lights",
1150
+ "display_name": "Add Exterior Lights to Model",
1151
+ "description": "Multiple exterior lights objects will be added for different classes of lighting such as parking and facade.",
1152
+ "type": "Boolean",
1153
+ "required": true,
1154
+ "model_dependent": false,
1155
+ "default_value": true,
1156
+ "visible": true
1157
+ },
1158
+ {
1159
+ "name": "onsite_parking_fraction",
1160
+ "display_name": "Onsite Parking Fraction",
1161
+ "description": "If set to 0 no exterior lighting for parking will be added",
1162
+ "type": "Double",
1163
+ "required": true,
1164
+ "model_dependent": false,
1165
+ "default_value": 1.0,
1166
+ "visible": true
1167
+ },
1168
+ {
1169
+ "name": "add_exhaust",
1170
+ "display_name": "Add Exhaust Fans to Model",
1171
+ "description": "Depending upon building type exhaust fans can be in kitchens, restrooms or other space types",
1172
+ "type": "Boolean",
1173
+ "required": true,
1174
+ "model_dependent": false,
1175
+ "default_value": true,
1176
+ "visible": true
1177
+ },
1178
+ {
1179
+ "name": "add_swh",
1180
+ "display_name": "Add Service Water Heating to Model",
1181
+ "description": "This will add both the supply and demand side of service water heating.",
1182
+ "type": "Boolean",
1183
+ "required": true,
1184
+ "model_dependent": false,
1185
+ "default_value": true,
1186
+ "visible": true
1187
+ },
1188
+ {
1189
+ "name": "add_thermostat",
1190
+ "display_name": "Add Thermostats",
1191
+ "description": "Add Thermost to model based on Space Type Standards information of spaces assigned to thermal zones.",
1192
+ "type": "Boolean",
1193
+ "required": true,
1194
+ "model_dependent": false,
1195
+ "default_value": true,
1196
+ "visible": true
1197
+ },
1198
+ {
1199
+ "name": "add_hvac",
1200
+ "display_name": "Add HVAC System to Model",
1201
+ "description": "Add HVAC System and thermostats to model",
1202
+ "type": "Boolean",
1203
+ "required": true,
1204
+ "model_dependent": false,
1205
+ "default_value": true,
1206
+ "visible": true
1207
+ },
1208
+ {
1209
+ "name": "remove_objects",
1210
+ "display_name": "Clean Model of non-gemoetry objects",
1211
+ "description": "Only removes objects of type that are selected to be added.",
1212
+ "type": "Boolean",
1213
+ "required": true,
1214
+ "model_dependent": false,
1215
+ "default_value": true,
1216
+ "visible": true
1217
+ }
1218
+ ],
1219
+ "visible": true
1220
+ }
1221
+ },
1222
+ {
1223
+ "name": "blended_space_type_from_model",
1224
+ "measure_dir_name": "blended_space_type_from_model",
1225
+ "arguments": {
1226
+ "blend_method": "Building Story"
1227
+ },
1228
+ "measure_definition": {
1229
+ "name": "blended_space_type_from_model",
1230
+ "uid": "667c2f1f-0927-4dbd-a7be-1087b5c15181",
1231
+ "uuid": "{667c2f1f-0927-4dbd-a7be-1087b5c15181}",
1232
+ "version_id": "c6a8ba99-6d80-4e00-afe3-8f24f8e32641",
1233
+ "version_uuid": "{c6a8ba99-6d80-4e00-afe3-8f24f8e32641}",
1234
+ "version_modified": "20170510T162533Z",
1235
+ "xml_checksum": "28AD5222",
1236
+ "display_name": "Blended Space Type from Model",
1237
+ "class_name": "BlendedSpaceTypeFromModel",
1238
+ "description": "This measure will remove all space type assignemnts and hard assigned internal loads from spaces that are included in the building floor area. Spaces such as plenums and attics will be left alone. A blended space type will be created from the original internal loads and assigned at the building level. Thermostats, Service Water Heating, and HVAC systems will not be altered. Any constructions associated with space types will be hard assigned prior to the space type assignemnt being removed.",
1239
+ "modeler_description": "The goal of this measure is to create a single space type that represents the loads and schedules of a collection of space types in a model. When possible the measure will create mulitple load instances of a specific type in the resulting blended space type. This allows the original schedules to be used, and can allow for down stream EE measures on specific internal loads. Design Ventilation Outdoor Air objects will have to be merged into a single object. Will try to maintain the load design type (power, per area, per person) when possible. Need to account for zone multipliers when createding blended internal loads. Also address what happens to daylighting control objets. Original space types will be left in the model, some may still be assigned to spaces not included in the building area.",
1240
+ "tags": [
1241
+ "Whole Building.Space Types"
1242
+ ],
1243
+ "outputs": [
1244
+
1245
+ ],
1246
+ "attributes": [
1247
+ {
1248
+ "name": "Measure Type",
1249
+ "display_name": "Measure Type",
1250
+ "value": "ModelMeasure"
1251
+ },
1252
+ {
1253
+ "name": "Intended Software Tool",
1254
+ "display_name": "Intended Software Tool",
1255
+ "value": "Apply Measure Now"
1256
+ },
1257
+ {
1258
+ "name": "Intended Software Tool",
1259
+ "display_name": "Intended Software Tool",
1260
+ "value": "OpenStudio Application"
1261
+ },
1262
+ {
1263
+ "name": "Intended Software Tool",
1264
+ "display_name": "Intended Software Tool",
1265
+ "value": "Parametric Analysis Tool"
1266
+ },
1267
+ {
1268
+ "name": "Intended Software Tool",
1269
+ "display_name": "Intended Software Tool",
1270
+ "value": "Analysis Spreadsheet"
1271
+ },
1272
+ {
1273
+ "name": "Intended Use Case",
1274
+ "display_name": "Intended Use Case",
1275
+ "value": "Model Articulation"
1276
+ }
1277
+ ],
1278
+ "arguments": [
1279
+ {
1280
+ "name": "blend_method",
1281
+ "display_name": "Blend Space Types that are part of the same",
1282
+ "description": "",
1283
+ "type": "Choice",
1284
+ "required": true,
1285
+ "model_dependent": false,
1286
+ "default_value": "Building",
1287
+ "choice_values": [
1288
+ "Building Type",
1289
+ "Building Story",
1290
+ "Building"
1291
+ ],
1292
+ "choice_display_names": [
1293
+ "Building Type",
1294
+ "Building Story",
1295
+ "Building"
1296
+ ],
1297
+ "visible": true
1298
+ }
1299
+ ],
1300
+ "visible": true
1301
+ }
1302
+ },
1303
+ {
1304
+ "name": "urban_geometry_creation",
1305
+ "measure_dir_name": "urban_geometry_creation",
1306
+ "arguments": {
1307
+ "city_db_url": null,
1308
+ "project_id": null,
1309
+ "feature_id": null,
1310
+ "surrounding_buildings": "None"
1311
+ },
1312
+ "measure_definition": {
1313
+ "name": "urban_geometry_creation",
1314
+ "uid": "5ab85d6b-c9af-4361-8ab9-613ee99a5666",
1315
+ "uuid": "{5ab85d6b-c9af-4361-8ab9-613ee99a5666}",
1316
+ "version_id": "62e39ee5-7fb9-4fc7-92bd-07870aa1a55f",
1317
+ "version_uuid": "{62e39ee5-7fb9-4fc7-92bd-07870aa1a55f}",
1318
+ "version_modified": "20170515T191742Z",
1319
+ "xml_checksum": "D254E772",
1320
+ "display_name": "UrbanGeometryCreation",
1321
+ "class_name": "UrbanGeometryCreation",
1322
+ "description": "This measure queries the URBANopt database for a building then creates geometry for it. Surrounding buildings are included as shading structures.",
1323
+ "modeler_description": "",
1324
+ "tags": [
1325
+ "Envelope.Form"
1326
+ ],
1327
+ "outputs": [
1328
+
1329
+ ],
1330
+ "attributes": [
1331
+ {
1332
+ "name": "Measure Type",
1333
+ "display_name": "Measure Type",
1334
+ "value": "ModelMeasure"
1335
+ },
1336
+ {
1337
+ "name": "Intended Software Tool",
1338
+ "display_name": "Intended Software Tool",
1339
+ "value": "Apply Measure Now"
1340
+ },
1341
+ {
1342
+ "name": "Intended Software Tool",
1343
+ "display_name": "Intended Software Tool",
1344
+ "value": "OpenStudio Application"
1345
+ },
1346
+ {
1347
+ "name": "Intended Software Tool",
1348
+ "display_name": "Intended Software Tool",
1349
+ "value": "Parametric Analysis Tool"
1350
+ },
1351
+ {
1352
+ "name": "Intended Software Tool",
1353
+ "display_name": "Intended Software Tool",
1354
+ "value": "Analysis Spreadsheet"
1355
+ },
1356
+ {
1357
+ "name": "Intended Use Case",
1358
+ "display_name": "Intended Use Case",
1359
+ "value": "Model Articulation"
1360
+ }
1361
+ ],
1362
+ "arguments": [
1363
+ {
1364
+ "name": "city_db_url",
1365
+ "display_name": "City Database Url",
1366
+ "description": "Url of the City Database",
1367
+ "type": "String",
1368
+ "required": true,
1369
+ "model_dependent": false,
1370
+ "default_value": "http://insight4.hpc.nrel.gov:8081/",
1371
+ "visible": true
1372
+ },
1373
+ {
1374
+ "name": "project_id",
1375
+ "display_name": "Project ID",
1376
+ "description": "Project ID.",
1377
+ "type": "String",
1378
+ "required": true,
1379
+ "model_dependent": false,
1380
+ "visible": true
1381
+ },
1382
+ {
1383
+ "name": "feature_id",
1384
+ "display_name": "Feature ID",
1385
+ "description": "Feature ID.",
1386
+ "type": "String",
1387
+ "required": true,
1388
+ "model_dependent": false,
1389
+ "visible": true
1390
+ },
1391
+ {
1392
+ "name": "surrounding_buildings",
1393
+ "display_name": "Surrounding Buildings",
1394
+ "description": "Select which surrounding buildings to include.",
1395
+ "type": "Choice",
1396
+ "required": true,
1397
+ "model_dependent": false,
1398
+ "default_value": "ShadingOnly",
1399
+ "choice_values": [
1400
+ "None",
1401
+ "ShadingOnly",
1402
+ "All"
1403
+ ],
1404
+ "choice_display_names": [
1405
+ "None",
1406
+ "ShadingOnly",
1407
+ "All"
1408
+ ],
1409
+ "visible": true
1410
+ }
1411
+ ],
1412
+ "visible": true
1413
+ }
1414
+ },
1415
+ {
1416
+ "name": "create_typical_building_from_model 2",
1417
+ "measure_dir_name": "create_typical_building_from_model",
1418
+ "arguments": {
1419
+ "template": "90.1-2004",
1420
+ "add_constructions": false,
1421
+ "add_space_type_loads": false,
1422
+ "add_elevators": false,
1423
+ "add_exterior_lights": false,
1424
+ "add_exhaust": false,
1425
+ "add_swh": false,
1426
+ "remove_objects": false,
1427
+ "clg_src": "Electricity",
1428
+ "htg_src": "NaturalGas",
1429
+ "hvac_delivery_type": "Forced Air",
1430
+ "system_type": "Inferred"
1431
+ },
1432
+ "measure_definition": {
1433
+ "name": "create_typical_building_from_model",
1434
+ "uid": "339a2e3a-273c-4494-bb50-bfe586a0647c",
1435
+ "uuid": "{339a2e3a-273c-4494-bb50-bfe586a0647c}",
1436
+ "version_id": "2bd161d7-455f-44e3-ba7b-95e17aa2d0de",
1437
+ "version_uuid": "{2bd161d7-455f-44e3-ba7b-95e17aa2d0de}",
1438
+ "version_modified": "20170610T214305Z",
1439
+ "xml_checksum": "EE13F09F",
1440
+ "display_name": "Create Typical Building from Model",
1441
+ "class_name": "CreateTypicalBuildingFromModel",
1442
+ "description": "Takes a model with space and stub space types, and assigns constructions, schedules, internal loads, hvac, and other loads such as exterior lights and service water heating. The end result is somewhat like a custom protptye model with user geometry, but it may use different HVAC systems.",
1443
+ "modeler_description": "Initially this was intended for stub space types, but it is possible that it will be run on models tha talready have internal loads, schedules, or constructions that should be preserved. Set it up to support addition at later date of bool args to skip specific types of model elements.",
1444
+ "tags": [
1445
+ "Whole Building.Space Types"
1446
+ ],
1447
+ "outputs": [
1448
+
1449
+ ],
1450
+ "attributes": [
1451
+ {
1452
+ "name": "Measure Type",
1453
+ "display_name": "Measure Type",
1454
+ "value": "ModelMeasure"
1455
+ },
1456
+ {
1457
+ "name": "Intended Software Tool",
1458
+ "display_name": "Intended Software Tool",
1459
+ "value": "Apply Measure Now"
1460
+ },
1461
+ {
1462
+ "name": "Intended Software Tool",
1463
+ "display_name": "Intended Software Tool",
1464
+ "value": "OpenStudio Application"
1465
+ },
1466
+ {
1467
+ "name": "Intended Software Tool",
1468
+ "display_name": "Intended Software Tool",
1469
+ "value": "Parametric Analysis Tool"
1470
+ },
1471
+ {
1472
+ "name": "Intended Use Case",
1473
+ "display_name": "Intended Use Case",
1474
+ "value": "Model Articulation"
1475
+ }
1476
+ ],
1477
+ "arguments": [
1478
+ {
1479
+ "name": "template",
1480
+ "display_name": "Target Standard",
1481
+ "description": "",
1482
+ "type": "Choice",
1483
+ "required": true,
1484
+ "model_dependent": false,
1485
+ "default_value": "90.1-2010",
1486
+ "choice_values": [
1487
+ "DOE Ref Pre-1980",
1488
+ "DOE Ref 1980-2004",
1489
+ "90.1-2004",
1490
+ "90.1-2007",
1491
+ "90.1-2010",
1492
+ "90.1-2013"
1493
+ ],
1494
+ "choice_display_names": [
1495
+ "DOE Ref Pre-1980",
1496
+ "DOE Ref 1980-2004",
1497
+ "90.1-2004",
1498
+ "90.1-2007",
1499
+ "90.1-2010",
1500
+ "90.1-2013"
1501
+ ],
1502
+ "visible": true
1503
+ },
1504
+ {
1505
+ "name": "system_type",
1506
+ "display_name": "HVAC System Type",
1507
+ "description": "",
1508
+ "type": "Choice",
1509
+ "required": true,
1510
+ "model_dependent": false,
1511
+ "default_value": "Inferred",
1512
+ "choice_values": [
1513
+ "Inferred",
1514
+ "Ideal Air Loads",
1515
+ "PTAC with hot water heat",
1516
+ "PTAC with gas coil heat",
1517
+ "PTAC with electric baseboard heat",
1518
+ "PTAC with no heat",
1519
+ "PTAC with district hot water heat",
1520
+ "PTHP",
1521
+ "PSZ-AC with gas coil heat",
1522
+ "PSZ-AC with electric baseboard heat",
1523
+ "PSZ-AC with no heat",
1524
+ "PSZ-AC with district hot water heat",
1525
+ "PSZ-HP",
1526
+ "Fan coil district chilled water with no heat",
1527
+ "Fan coil district chilled water and boiler",
1528
+ "Fan coil district chilled water unit heaters",
1529
+ "Fan coil district chilled water electric baseboard heat",
1530
+ "Fan coil district hot and chilled water",
1531
+ "Fan coil district hot water and chiller",
1532
+ "Fan coil chiller with no heat",
1533
+ "Baseboard district hot water heat",
1534
+ "Baseboard district hot water heat with direct evap coolers",
1535
+ "Baseboard electric heat",
1536
+ "Baseboard electric heat with direct evap coolers",
1537
+ "Baseboard hot water heat",
1538
+ "Baseboard hot water heat with direct evap coolers",
1539
+ "Window AC with no heat",
1540
+ "Window AC with forced air furnace",
1541
+ "Window AC with district hot water baseboard heat",
1542
+ "Window AC with hot water baseboard heat",
1543
+ "Window AC with electric baseboard heat",
1544
+ "Window AC with unit heaters",
1545
+ "Direct evap coolers",
1546
+ "Direct evap coolers with unit heaters",
1547
+ "Unit heaters",
1548
+ "Heat pump heat with no cooling",
1549
+ "Heat pump heat with direct evap cooler",
1550
+ "VAV with reheat",
1551
+ "VAV with PFP boxes",
1552
+ "VAV with gas reheat",
1553
+ "VAV with zone unit heaters",
1554
+ "VAV with electric baseboard heat",
1555
+ "VAV cool with zone heat pump heat",
1556
+ "PVAV with reheat",
1557
+ "PVAV with PFP boxes",
1558
+ "Residential forced air",
1559
+ "Residential forced air cooling hot water baseboard heat",
1560
+ "Residential forced air with district hot water",
1561
+ "Residential heat pump",
1562
+ "Forced air furnace",
1563
+ "Forced air furnace district chilled water fan coil",
1564
+ "Forced air furnace direct evap cooler",
1565
+ "Residential AC with no heat",
1566
+ "Residential AC with electric baseboard heat"
1567
+ ],
1568
+ "choice_display_names": [
1569
+ "Inferred",
1570
+ "Ideal Air Loads",
1571
+ "PTAC with hot water heat",
1572
+ "PTAC with gas coil heat",
1573
+ "PTAC with electric baseboard heat",
1574
+ "PTAC with no heat",
1575
+ "PTAC with district hot water heat",
1576
+ "PTHP",
1577
+ "PSZ-AC with gas coil heat",
1578
+ "PSZ-AC with electric baseboard heat",
1579
+ "PSZ-AC with no heat",
1580
+ "PSZ-AC with district hot water heat",
1581
+ "PSZ-HP",
1582
+ "Fan coil district chilled water with no heat",
1583
+ "Fan coil district chilled water and boiler",
1584
+ "Fan coil district chilled water unit heaters",
1585
+ "Fan coil district chilled water electric baseboard heat",
1586
+ "Fan coil district hot and chilled water",
1587
+ "Fan coil district hot water and chiller",
1588
+ "Fan coil chiller with no heat",
1589
+ "Baseboard district hot water heat",
1590
+ "Baseboard district hot water heat with direct evap coolers",
1591
+ "Baseboard electric heat",
1592
+ "Baseboard electric heat with direct evap coolers",
1593
+ "Baseboard hot water heat",
1594
+ "Baseboard hot water heat with direct evap coolers",
1595
+ "Window AC with no heat",
1596
+ "Window AC with forced air furnace",
1597
+ "Window AC with district hot water baseboard heat",
1598
+ "Window AC with hot water baseboard heat",
1599
+ "Window AC with electric baseboard heat",
1600
+ "Window AC with unit heaters",
1601
+ "Direct evap coolers",
1602
+ "Direct evap coolers with unit heaters",
1603
+ "Unit heaters",
1604
+ "Heat pump heat with no cooling",
1605
+ "Heat pump heat with direct evap cooler",
1606
+ "VAV with reheat",
1607
+ "VAV with PFP boxes",
1608
+ "VAV with gas reheat",
1609
+ "VAV with zone unit heaters",
1610
+ "VAV with electric baseboard heat",
1611
+ "VAV cool with zone heat pump heat",
1612
+ "PVAV with reheat",
1613
+ "PVAV with PFP boxes",
1614
+ "Residential forced air",
1615
+ "Residential forced air cooling hot water baseboard heat",
1616
+ "Residential forced air with district hot water",
1617
+ "Residential heat pump",
1618
+ "Forced air furnace",
1619
+ "Forced air furnace district chilled water fan coil",
1620
+ "Forced air furnace direct evap cooler",
1621
+ "Residential AC with no heat",
1622
+ "Residential AC with electric baseboard heat"
1623
+ ],
1624
+ "visible": true
1625
+ },
1626
+ {
1627
+ "name": "hvac_delivery_type",
1628
+ "display_name": "HVAC System Delivery Type",
1629
+ "description": "How the HVAC system delivers heating or cooling to the zone.",
1630
+ "type": "Choice",
1631
+ "required": true,
1632
+ "model_dependent": false,
1633
+ "default_value": "Forced Air",
1634
+ "choice_values": [
1635
+ "Forced Air",
1636
+ "Hydronic"
1637
+ ],
1638
+ "choice_display_names": [
1639
+ "Forced Air",
1640
+ "Hydronic"
1641
+ ],
1642
+ "visible": true
1643
+ },
1644
+ {
1645
+ "name": "htg_src",
1646
+ "display_name": "HVAC Heating Source",
1647
+ "description": "The primary source of heating used by HVAC systems in the model.",
1648
+ "type": "Choice",
1649
+ "required": true,
1650
+ "model_dependent": false,
1651
+ "default_value": "NaturalGas",
1652
+ "choice_values": [
1653
+ "Electricity",
1654
+ "NaturalGas",
1655
+ "DistrictHeating",
1656
+ "DistrictAmbient"
1657
+ ],
1658
+ "choice_display_names": [
1659
+ "Electricity",
1660
+ "NaturalGas",
1661
+ "DistrictHeating",
1662
+ "DistrictAmbient"
1663
+ ],
1664
+ "visible": true
1665
+ },
1666
+ {
1667
+ "name": "clg_src",
1668
+ "display_name": "HVAC Cooling Source",
1669
+ "description": "The primary source of cooling used by HVAC systems in the model.",
1670
+ "type": "Choice",
1671
+ "required": true,
1672
+ "model_dependent": false,
1673
+ "default_value": "Electricity",
1674
+ "choice_values": [
1675
+ "Electricity",
1676
+ "DistrictCooling",
1677
+ "DistrictAmbient"
1678
+ ],
1679
+ "choice_display_names": [
1680
+ "Electricity",
1681
+ "DistrictCooling",
1682
+ "DistrictAmbient"
1683
+ ],
1684
+ "visible": true
1685
+ },
1686
+ {
1687
+ "name": "kitchen_makeup",
1688
+ "display_name": "Kitchen Exhaust MakeUp Air Calculation Method",
1689
+ "description": "Determine logic to identify dining or cafe zones to provide makeup air to kitchen exhaust.",
1690
+ "type": "Choice",
1691
+ "required": true,
1692
+ "model_dependent": false,
1693
+ "default_value": "Adjacent",
1694
+ "choice_values": [
1695
+ "None",
1696
+ "Largest Zone",
1697
+ "Adjacent"
1698
+ ],
1699
+ "choice_display_names": [
1700
+ "None",
1701
+ "Largest Zone",
1702
+ "Adjacent"
1703
+ ],
1704
+ "visible": true
1705
+ },
1706
+ {
1707
+ "name": "exterior_lighting_zone",
1708
+ "display_name": "Exterior Lighting Zone",
1709
+ "description": "Identify the Exterior Lighitng Zone for the Building Site.",
1710
+ "type": "Choice",
1711
+ "required": true,
1712
+ "model_dependent": false,
1713
+ "default_value": "3 - All Other Areas",
1714
+ "choice_values": [
1715
+ "0 - Undeveloped Areas Parks",
1716
+ "1 - Developed Areas Parks",
1717
+ "2 - Neighborhood",
1718
+ "3 - All Other Areas",
1719
+ "4 - High Activity"
1720
+ ],
1721
+ "choice_display_names": [
1722
+ "0 - Undeveloped Areas Parks",
1723
+ "1 - Developed Areas Parks",
1724
+ "2 - Neighborhood",
1725
+ "3 - All Other Areas",
1726
+ "4 - High Activity"
1727
+ ],
1728
+ "visible": true
1729
+ },
1730
+ {
1731
+ "name": "add_constructions",
1732
+ "display_name": "Add Constructions to Model",
1733
+ "description": "Construction Set will be appied to entire building",
1734
+ "type": "Boolean",
1735
+ "required": true,
1736
+ "model_dependent": false,
1737
+ "default_value": true,
1738
+ "visible": true
1739
+ },
1740
+ {
1741
+ "name": "add_space_type_loads",
1742
+ "display_name": "Add Space Type Loads to Model",
1743
+ "description": "Populate existing space types in model with internal loads.",
1744
+ "type": "Boolean",
1745
+ "required": true,
1746
+ "model_dependent": false,
1747
+ "default_value": true,
1748
+ "visible": true
1749
+ },
1750
+ {
1751
+ "name": "add_elevators",
1752
+ "display_name": "Add Elevators to Model",
1753
+ "description": "Elevators will be add directly to space in model vs. being applied to a space type.",
1754
+ "type": "Boolean",
1755
+ "required": true,
1756
+ "model_dependent": false,
1757
+ "default_value": true,
1758
+ "visible": true
1759
+ },
1760
+ {
1761
+ "name": "add_exterior_lights",
1762
+ "display_name": "Add Exterior Lights to Model",
1763
+ "description": "Multiple exterior lights objects will be added for different classes of lighting such as parking and facade.",
1764
+ "type": "Boolean",
1765
+ "required": true,
1766
+ "model_dependent": false,
1767
+ "default_value": true,
1768
+ "visible": true
1769
+ },
1770
+ {
1771
+ "name": "onsite_parking_fraction",
1772
+ "display_name": "Onsite Parking Fraction",
1773
+ "description": "If set to 0 no exterior lighting for parking will be added",
1774
+ "type": "Double",
1775
+ "required": true,
1776
+ "model_dependent": false,
1777
+ "default_value": 1.0,
1778
+ "visible": true
1779
+ },
1780
+ {
1781
+ "name": "add_exhaust",
1782
+ "display_name": "Add Exhaust Fans to Model",
1783
+ "description": "Depending upon building type exhaust fans can be in kitchens, restrooms or other space types",
1784
+ "type": "Boolean",
1785
+ "required": true,
1786
+ "model_dependent": false,
1787
+ "default_value": true,
1788
+ "visible": true
1789
+ },
1790
+ {
1791
+ "name": "add_swh",
1792
+ "display_name": "Add Service Water Heating to Model",
1793
+ "description": "This will add both the supply and demand side of service water heating.",
1794
+ "type": "Boolean",
1795
+ "required": true,
1796
+ "model_dependent": false,
1797
+ "default_value": true,
1798
+ "visible": true
1799
+ },
1800
+ {
1801
+ "name": "add_thermostat",
1802
+ "display_name": "Add Thermostats",
1803
+ "description": "Add Thermost to model based on Space Type Standards information of spaces assigned to thermal zones.",
1804
+ "type": "Boolean",
1805
+ "required": true,
1806
+ "model_dependent": false,
1807
+ "default_value": true,
1808
+ "visible": true
1809
+ },
1810
+ {
1811
+ "name": "add_hvac",
1812
+ "display_name": "Add HVAC System to Model",
1813
+ "description": "Add HVAC System and thermostats to model",
1814
+ "type": "Boolean",
1815
+ "required": true,
1816
+ "model_dependent": false,
1817
+ "default_value": true,
1818
+ "visible": true
1819
+ },
1820
+ {
1821
+ "name": "remove_objects",
1822
+ "display_name": "Clean Model of non-gemoetry objects",
1823
+ "description": "Only removes objects of type that are selected to be added.",
1824
+ "type": "Boolean",
1825
+ "required": true,
1826
+ "model_dependent": false,
1827
+ "default_value": true,
1828
+ "visible": true
1829
+ }
1830
+ ],
1831
+ "visible": true
1832
+ }
1833
+ },
1834
+ {
1835
+ "name": "ReduceElectricEquipmentLoadsByPercentage",
1836
+ "measure_dir_name": "ReduceElectricEquipmentLoadsByPercentage",
1837
+ "arguments": {
1838
+ "__SKIP__": true
1839
+ },
1840
+ "measure_definition": {
1841
+ "name": "reduce_electric_equipment_loads_by_percentage",
1842
+ "uid": "0902e302-70db-4339-99b0-17f08bc93629",
1843
+ "uuid": "{0902e302-70db-4339-99b0-17f08bc93629}",
1844
+ "version_id": "08bc65cf-c7ad-4b1d-b1f6-ee3f2edb2188",
1845
+ "version_uuid": "{08bc65cf-c7ad-4b1d-b1f6-ee3f2edb2188}",
1846
+ "version_modified": "20170316T164922Z",
1847
+ "xml_checksum": "F9A5B8F0",
1848
+ "display_name": "Reduce Electric Equipment Loads by Percentage",
1849
+ "class_name": "ReduceElectricEquipmentLoadsByPercentage",
1850
+ "description": "Reduce electric equipment loads. This will affect equipment that have a, power, power per area (LPD), or power per person value. This can be applied to the entire building or a specific space type. A positive percentage represents an increase electric equipment power, while a negative percentage can be used for an increase in electric equipment power.",
1851
+ "modeler_description": "Loop through all electric equipment objects in the specified space type or the entire building. Clone the definition if it has not already been cloned, rename and adjust the power based on the specified percentage. Link the new definition to the existing electric equipment instance. Loop through objects first in space types and then in spaces, but only for spaces that are in the specified space type, unless entire building has been chosen.",
1852
+ "tags": [
1853
+ "Equipment.Electric Equipment"
1854
+ ],
1855
+ "outputs": [
1856
+
1857
+ ],
1858
+ "attributes": [
1859
+ {
1860
+ "name": "Measure Type",
1861
+ "display_name": "Measure Type",
1862
+ "value": "ModelMeasure"
1863
+ },
1864
+ {
1865
+ "name": "Measure Function",
1866
+ "display_name": "Measure Function",
1867
+ "value": "Measure"
1868
+ },
1869
+ {
1870
+ "name": "Requires EnergyPlus Results",
1871
+ "display_name": "Requires EnergyPlus Results",
1872
+ "value": false
1873
+ },
1874
+ {
1875
+ "name": "Uses SketchUp API",
1876
+ "display_name": "Uses SketchUp API",
1877
+ "value": false
1878
+ }
1879
+ ],
1880
+ "arguments": [
1881
+ {
1882
+ "name": "space_type",
1883
+ "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.",
1884
+ "description": "",
1885
+ "type": "Choice",
1886
+ "required": true,
1887
+ "model_dependent": false,
1888
+ "default_value": "*Entire Building*",
1889
+ "choice_values": [
1890
+ "{6ea89adb-d707-4397-bf87-b2b6f00fe7cd}"
1891
+ ],
1892
+ "choice_display_names": [
1893
+ "*Entire Building*"
1894
+ ],
1895
+ "visible": true
1896
+ },
1897
+ {
1898
+ "name": "elecequip_power_reduction_percent",
1899
+ "display_name": "Electric Equipment Power Reduction (%).",
1900
+ "description": "",
1901
+ "type": "Double",
1902
+ "required": true,
1903
+ "model_dependent": false,
1904
+ "default_value": 30.0,
1905
+ "visible": true
1906
+ },
1907
+ {
1908
+ "name": "material_and_installation_cost",
1909
+ "display_name": "Increase in Material and Installation Cost for Electric Equipment per Floor Area (%).",
1910
+ "description": "",
1911
+ "type": "Double",
1912
+ "required": true,
1913
+ "model_dependent": false,
1914
+ "default_value": 0.0,
1915
+ "visible": true
1916
+ },
1917
+ {
1918
+ "name": "demolition_cost",
1919
+ "display_name": "Increase in Demolition Costs for Electric Equipment per Floor Area (%).",
1920
+ "description": "",
1921
+ "type": "Double",
1922
+ "required": true,
1923
+ "model_dependent": false,
1924
+ "default_value": 0.0,
1925
+ "visible": true
1926
+ },
1927
+ {
1928
+ "name": "years_until_costs_start",
1929
+ "display_name": "Years Until Costs Start (whole years).",
1930
+ "description": "",
1931
+ "type": "Integer",
1932
+ "required": true,
1933
+ "model_dependent": false,
1934
+ "default_value": 0,
1935
+ "visible": true
1936
+ },
1937
+ {
1938
+ "name": "demo_cost_initial_const",
1939
+ "display_name": "Demolition Costs Occur During Initial Construction?",
1940
+ "description": "",
1941
+ "type": "Boolean",
1942
+ "required": true,
1943
+ "model_dependent": false,
1944
+ "default_value": false,
1945
+ "visible": true
1946
+ },
1947
+ {
1948
+ "name": "expected_life",
1949
+ "display_name": "Expected Life (whole years).",
1950
+ "description": "",
1951
+ "type": "Integer",
1952
+ "required": true,
1953
+ "model_dependent": false,
1954
+ "default_value": 15,
1955
+ "visible": true
1956
+ },
1957
+ {
1958
+ "name": "om_cost",
1959
+ "display_name": "Increase O & M Costs for Electric Equipment per Floor Area (%).",
1960
+ "description": "",
1961
+ "type": "Double",
1962
+ "required": true,
1963
+ "model_dependent": false,
1964
+ "default_value": 0.0,
1965
+ "visible": true
1966
+ },
1967
+ {
1968
+ "name": "om_frequency",
1969
+ "display_name": "O & M Frequency (whole years).",
1970
+ "description": "",
1971
+ "type": "Integer",
1972
+ "required": true,
1973
+ "model_dependent": false,
1974
+ "default_value": 1,
1975
+ "visible": true
1976
+ }
1977
+ ],
1978
+ "visible": true
1979
+ }
1980
+ },
1981
+ {
1982
+ "name": "AedgK12ElectricEquipmentControls",
1983
+ "measure_dir_name": "AedgK12ElectricEquipmentControls",
1984
+ "arguments": {
1985
+ "__SKIP__": true
1986
+ },
1987
+ "measure_definition": {
1988
+ "name": "aedg_k_12_electric_equipment_controls",
1989
+ "uid": "285bc263-7429-4049-a0ce-f60fabf46eec",
1990
+ "uuid": "{285bc263-7429-4049-a0ce-f60fabf46eec}",
1991
+ "version_id": "d1886dc4-ab9a-4d65-a4ec-b7c49f291c6c",
1992
+ "version_uuid": "{d1886dc4-ab9a-4d65-a4ec-b7c49f291c6c}",
1993
+ "version_modified": "20170316T164848Z",
1994
+ "xml_checksum": "1F21832E",
1995
+ "display_name": "AedgK12ElectricEquipmentControls",
1996
+ "class_name": "AedgK12ElectricEquipmentControls",
1997
+ "description": "This measure reduces the values associated with electric equipment schedules to simulate reductions due to equipment controls throughout the building. This includes occupancy based outlets or adapters, as well as network or timer based controls. Kitchen equipment controls are not altered by this measure. The kitchen has a dedicated measure of its own which includes equipment controls.",
1998
+ "modeler_description": "This measure is intended to be used on schedules that have not previously been adjusted for advanced controls. If you run this measure multiple times you will end up with more schedule reduction than is appropriate. The schedules used in the OpenStudio templates have not been adjusted for advanced controls, so it is appropriate to run them through this measure to simulation their impact on energy use. This measure applies a reduction of 0.15 to schedule values that are below 0.5 start with, no reduction is applied to values that are at or above 0.5 to start with. As a result the lower the initial fractional value the higher the percentage reduction it will receive. Values won't be lowered to a value below 0.1. Values already below this level will keep their original value.",
1999
+ "tags": [
2000
+ "Equipment.Equipment Controls"
2001
+ ],
2002
+ "outputs": [
2003
+
2004
+ ],
2005
+ "attributes": [
2006
+ {
2007
+ "name": "Measure Type",
2008
+ "display_name": "Measure Type",
2009
+ "value": "ModelMeasure"
2010
+ },
2011
+ {
2012
+ "name": "Uses SketchUp API",
2013
+ "display_name": "Uses SketchUp API",
2014
+ "value": false
2015
+ }
2016
+ ],
2017
+ "arguments": [
2018
+ {
2019
+ "name": "costTotal",
2020
+ "display_name": "Total cost for all Equipment Controls in the Building ($).",
2021
+ "description": "",
2022
+ "type": "Double",
2023
+ "required": true,
2024
+ "model_dependent": false,
2025
+ "default_value": 0.0,
2026
+ "visible": true
2027
+ }
2028
+ ],
2029
+ "visible": true
2030
+ }
2031
+ },
2032
+ {
2033
+ "name": "ReduceLightingLoadsByPercentage",
2034
+ "measure_dir_name": "ReduceLightingLoadsByPercentage",
2035
+ "arguments": {
2036
+ "__SKIP__": true
2037
+ },
2038
+ "measure_definition": {
2039
+ "name": "reduce_lighting_loads_by_percentage",
2040
+ "uid": "791f3404-a28b-4a80-ba3f-e15b339e39ea",
2041
+ "uuid": "{791f3404-a28b-4a80-ba3f-e15b339e39ea}",
2042
+ "version_id": "61e58d6a-8e52-4a1e-9a5b-17fed2ccc4a5",
2043
+ "version_uuid": "{61e58d6a-8e52-4a1e-9a5b-17fed2ccc4a5}",
2044
+ "version_modified": "20170316T164922Z",
2045
+ "xml_checksum": "293730A7",
2046
+ "display_name": "Reduce Lighting Loads by Percentage",
2047
+ "class_name": "ReduceLightingLoadsByPercentage",
2048
+ "description": "The lighting system in this building uses more power per area than is required with the latest lighting technologies. Replace the lighting system with a newer, more efficient lighting technology. Newer technologies provide the same amount of light but use less energy in the process.",
2049
+ "modeler_description": "This measure supports models which have a mixture of lighting assigned to spaces and space types. The lighting may be specified as individual luminaires, lighting equipment level, lighting power per area, or lighting power per person.\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\r\nLoop through all lights and luminaires in the specified space type or the entire building. Clone the definition if it is shared by other lights, rename and adjust the power based on the specified percentage. Link the new definition to the existing lights or luminaire instance. Adjust the power for lighting equipment assigned to a particular space but only if that space is part of the selected space type by looping through the objects first in space types and then in spaces, but again only for spaces that are in the specified space type (unless the entire building has been chosen). Material and installation cost increases will be applied to all costs related to both the definition and instance of the lighting object. If this measure includes baseline costs, then the material and installation costs of the lighting objects in the baseline model will be summed together and added as a capital cost on the building object.",
2050
+ "tags": [
2051
+ "Electric Lighting.Lighting Equipment"
2052
+ ],
2053
+ "outputs": [
2054
+
2055
+ ],
2056
+ "attributes": [
2057
+ {
2058
+ "name": "Measure Type",
2059
+ "display_name": "Measure Type",
2060
+ "value": "ModelMeasure"
2061
+ },
2062
+ {
2063
+ "name": "Measure Function",
2064
+ "display_name": "Measure Function",
2065
+ "value": "Measure"
2066
+ },
2067
+ {
2068
+ "name": "Requires EnergyPlus Results",
2069
+ "display_name": "Requires EnergyPlus Results",
2070
+ "value": false
2071
+ },
2072
+ {
2073
+ "name": "Uses SketchUp API",
2074
+ "display_name": "Uses SketchUp API",
2075
+ "value": false
2076
+ }
2077
+ ],
2078
+ "arguments": [
2079
+ {
2080
+ "name": "space_type",
2081
+ "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.",
2082
+ "description": "",
2083
+ "type": "Choice",
2084
+ "required": true,
2085
+ "model_dependent": false,
2086
+ "default_value": "*Entire Building*",
2087
+ "choice_values": [
2088
+ "{01b056f9-290e-4617-b1fe-d6dac6c3a99d}"
2089
+ ],
2090
+ "choice_display_names": [
2091
+ "*Entire Building*"
2092
+ ],
2093
+ "visible": true
2094
+ },
2095
+ {
2096
+ "name": "lighting_power_reduction_percent",
2097
+ "display_name": "Lighting Power Reduction (%).",
2098
+ "description": "",
2099
+ "type": "Double",
2100
+ "required": true,
2101
+ "model_dependent": false,
2102
+ "default_value": 30.0,
2103
+ "visible": true
2104
+ },
2105
+ {
2106
+ "name": "material_and_installation_cost",
2107
+ "display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).",
2108
+ "description": "",
2109
+ "type": "Double",
2110
+ "required": true,
2111
+ "model_dependent": false,
2112
+ "default_value": 0.0,
2113
+ "visible": true
2114
+ },
2115
+ {
2116
+ "name": "demolition_cost",
2117
+ "display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).",
2118
+ "description": "",
2119
+ "type": "Double",
2120
+ "required": true,
2121
+ "model_dependent": false,
2122
+ "default_value": 0.0,
2123
+ "visible": true
2124
+ },
2125
+ {
2126
+ "name": "years_until_costs_start",
2127
+ "display_name": "Years Until Costs Start (whole years).",
2128
+ "description": "",
2129
+ "type": "Integer",
2130
+ "required": true,
2131
+ "model_dependent": false,
2132
+ "default_value": 0,
2133
+ "visible": true
2134
+ },
2135
+ {
2136
+ "name": "demo_cost_initial_const",
2137
+ "display_name": "Demolition Costs Occur During Initial Construction?",
2138
+ "description": "",
2139
+ "type": "Boolean",
2140
+ "required": true,
2141
+ "model_dependent": false,
2142
+ "default_value": false,
2143
+ "visible": true
2144
+ },
2145
+ {
2146
+ "name": "expected_life",
2147
+ "display_name": "Expected Life (whole years).",
2148
+ "description": "",
2149
+ "type": "Integer",
2150
+ "required": true,
2151
+ "model_dependent": false,
2152
+ "default_value": 15,
2153
+ "visible": true
2154
+ },
2155
+ {
2156
+ "name": "om_cost",
2157
+ "display_name": "Increase O & M Costs for Lighting per Floor Area (%).",
2158
+ "description": "",
2159
+ "type": "Double",
2160
+ "required": true,
2161
+ "model_dependent": false,
2162
+ "default_value": 0.0,
2163
+ "visible": true
2164
+ },
2165
+ {
2166
+ "name": "om_frequency",
2167
+ "display_name": "O & M Frequency (whole years).",
2168
+ "description": "",
2169
+ "type": "Integer",
2170
+ "required": true,
2171
+ "model_dependent": false,
2172
+ "default_value": 1,
2173
+ "visible": true
2174
+ }
2175
+ ],
2176
+ "visible": true
2177
+ }
2178
+ },
2179
+ {
2180
+ "name": "AedgK12InteriorLightingControls",
2181
+ "measure_dir_name": "AedgK12InteriorLightingControls",
2182
+ "arguments": {
2183
+ "__SKIP__": true
2184
+ },
2185
+ "measure_definition": {
2186
+ "name": "aedg_k_12_interior_lighting_controls",
2187
+ "uid": "9f395ee4-5f82-4ca6-8a50-cb854893827e",
2188
+ "uuid": "{9f395ee4-5f82-4ca6-8a50-cb854893827e}",
2189
+ "version_id": "c24063db-8a57-4fc7-b166-ac5ade968cdb",
2190
+ "version_uuid": "{c24063db-8a57-4fc7-b166-ac5ade968cdb}",
2191
+ "version_modified": "20170316T164850Z",
2192
+ "xml_checksum": "9B7BB4D8",
2193
+ "display_name": "AedgK12InteriorLightingControls",
2194
+ "class_name": "AedgK12InteriorLightingControls",
2195
+ "description": "This measure reduces the values associated with lighting schedules to simulate reductions due to vacancy sensors throughout the building.",
2196
+ "modeler_description": "This measure is intended to be used on schedules that have not previously been adjusted for advanced controls. If you run this measure multiple times you will end up with more schedule reduction than is appropriate. The schedules used in the OpenStudio templates have not been adjusted for vacancy controls, so it is appropriate to run them through this measure to simulation their impact on energy use. This measure applies a 15% reduction to the fractional schedule values.",
2197
+ "tags": [
2198
+ "Electric Lighting.Electric Lighting Controls"
2199
+ ],
2200
+ "outputs": [
2201
+
2202
+ ],
2203
+ "attributes": [
2204
+ {
2205
+ "name": "Measure Type",
2206
+ "display_name": "Measure Type",
2207
+ "value": "ModelMeasure"
2208
+ },
2209
+ {
2210
+ "name": "Uses SketchUp API",
2211
+ "display_name": "Uses SketchUp API",
2212
+ "value": false
2213
+ }
2214
+ ],
2215
+ "arguments": [
2216
+ {
2217
+ "name": "costTotal",
2218
+ "display_name": "Total cost for all Lighting Controls in the Building ($).",
2219
+ "description": "",
2220
+ "type": "Double",
2221
+ "required": true,
2222
+ "model_dependent": false,
2223
+ "default_value": 0.0,
2224
+ "visible": true
2225
+ }
2226
+ ],
2227
+ "visible": true
2228
+ }
2229
+ },
2230
+ {
2231
+ "name": "AdjustSystemEfficiencies",
2232
+ "measure_dir_name": "AdjustSystemEfficiencies",
2233
+ "arguments": {
2234
+ "__SKIP__": true,
2235
+ "heating_efficiency_multiplier": 1.0,
2236
+ "cooling_cop_multiplier": 1.0
2237
+ },
2238
+ "measure_definition": {
2239
+ "name": "adjust_system_efficiencies",
2240
+ "uid": "edeaff3d-3ae4-4487-b4a4-5cf08ea14510",
2241
+ "uuid": "{edeaff3d-3ae4-4487-b4a4-5cf08ea14510}",
2242
+ "version_id": "e6a2e76e-207d-41df-b7f9-be0d91ae8bd4",
2243
+ "version_uuid": "{e6a2e76e-207d-41df-b7f9-be0d91ae8bd4}",
2244
+ "version_modified": "20170510T043328Z",
2245
+ "xml_checksum": "4435983D",
2246
+ "display_name": "AdjustSystemEfficiencies",
2247
+ "class_name": "AdjustSystemEfficiencies",
2248
+ "description": "Updates heating and cooling efficiencies of all equipment in a model by a multiplier.",
2249
+ "modeler_description": "This measure will search through all air loops, plant loops, and thermal zones in the model and adjust heating and cooling efficiencies of all relevant objects found.",
2250
+ "tags": [
2251
+ "HVAC.Whole System"
2252
+ ],
2253
+ "outputs": [
2254
+
2255
+ ],
2256
+ "attributes": [
2257
+ {
2258
+ "name": "Measure Type",
2259
+ "display_name": "Measure Type",
2260
+ "value": "ModelMeasure"
2261
+ },
2262
+ {
2263
+ "name": "Uses SketchUp API",
2264
+ "display_name": "Uses SketchUp API",
2265
+ "value": false
2266
+ }
2267
+ ],
2268
+ "arguments": [
2269
+ {
2270
+ "name": "heating_efficiency_multiplier",
2271
+ "display_name": "Heating Efficiency Multiplier",
2272
+ "description": "",
2273
+ "type": "Double",
2274
+ "required": true,
2275
+ "model_dependent": false,
2276
+ "default_value": 1.0,
2277
+ "visible": true
2278
+ },
2279
+ {
2280
+ "name": "cooling_cop_multiplier",
2281
+ "display_name": "Cooling COP Multiplier",
2282
+ "description": "",
2283
+ "type": "Double",
2284
+ "required": true,
2285
+ "model_dependent": false,
2286
+ "default_value": 1.0,
2287
+ "visible": true
2288
+ }
2289
+ ],
2290
+ "visible": true
2291
+ }
2292
+ },
2293
+ {
2294
+ "name": "ImproveFanBeltEfficiency",
2295
+ "measure_dir_name": "ImproveFanBeltEfficiency",
2296
+ "arguments": {
2297
+ "__SKIP__": true
2298
+ },
2299
+ "measure_definition": {
2300
+ "name": "improve_fan_belt_efficiency",
2301
+ "uid": "ebeca0aa-a432-4283-a714-17116f7c8f8c",
2302
+ "uuid": "{ebeca0aa-a432-4283-a714-17116f7c8f8c}",
2303
+ "version_id": "df17b1ca-bcf2-4305-8374-d82f210c7be3",
2304
+ "version_uuid": "{df17b1ca-bcf2-4305-8374-d82f210c7be3}",
2305
+ "version_modified": "20170510T043335Z",
2306
+ "xml_checksum": "F78494F2",
2307
+ "display_name": "Improve Fan Belt Efficiency",
2308
+ "class_name": "ImproveFanBeltEfficiency",
2309
+ "description": "The assessment team observed opportunities for fan belt improvements on HVAC fan drives. These motors are asynchronous induction motors.\r\r\r\r\r\r\n\r\r\r\r\r\r\nImprovements in belt efficiency result in energy savings at the motor. The three common belt efficiency measures are belt tightening (1%-5% savings per motor), replace standard v-belts with cogged v-belts (2% savings per motor), and replace standard belts with synchronous belts (3% savings per motor).\r\r\r\r\r\r\n\r\r\r\r\r\r\nWell-adjusted belts run cooler, last longer, and operate at higher efficiency than standard belts. The belts associated with the largest motors, longest run times, and that are run closest to full load should be given priority when making replacements.\r\r\r\r\r\r\n ",
2310
+ "modeler_description": "This measure alters fans on all or a single air loop in the building. The three belt ECMs options are then exposed as three user argument fields with a default populated for each. The range of efficiency improvements will be listed in the user argument description. The three user arguments will be summed and added to the existing motor efficiency. The cost arguments are user arguments that are also populated with a default. If arguments are left blank, the user is notified that the model has not changed in the run manager. A warning is issued if the motor efficiency >96% and an error is issued if efficiency is >100%.",
2311
+ "tags": [
2312
+ "HVAC.Distribution"
2313
+ ],
2314
+ "outputs": [
2315
+
2316
+ ],
2317
+ "attributes": [
2318
+ {
2319
+ "name": "Measure Type",
2320
+ "display_name": "Measure Type",
2321
+ "value": "ModelMeasure"
2322
+ },
2323
+ {
2324
+ "name": "Uses SketchUp API",
2325
+ "display_name": "Uses SketchUp API",
2326
+ "value": false
2327
+ }
2328
+ ],
2329
+ "arguments": [
2330
+ {
2331
+ "name": "object",
2332
+ "display_name": "Choose an Air Loop to Alter.",
2333
+ "description": "",
2334
+ "type": "Choice",
2335
+ "required": true,
2336
+ "model_dependent": false,
2337
+ "default_value": "*All Air Loops*",
2338
+ "choice_values": [
2339
+ "{e81bc1de-a622-42b1-a682-56ad3b6296a7}"
2340
+ ],
2341
+ "choice_display_names": [
2342
+ "*All Air Loops*"
2343
+ ],
2344
+ "visible": true
2345
+ },
2346
+ {
2347
+ "name": "motor_eff",
2348
+ "display_name": "Motor Efficiency Improvement Due to Fan Belt Improvements(%).",
2349
+ "description": "",
2350
+ "type": "Double",
2351
+ "required": true,
2352
+ "model_dependent": false,
2353
+ "default_value": 3.0,
2354
+ "visible": true
2355
+ },
2356
+ {
2357
+ "name": "remove_costs",
2358
+ "display_name": "Remove Baseline Costs From Effected Fans?",
2359
+ "description": "",
2360
+ "type": "Boolean",
2361
+ "required": true,
2362
+ "model_dependent": false,
2363
+ "default_value": false,
2364
+ "visible": true
2365
+ },
2366
+ {
2367
+ "name": "material_cost",
2368
+ "display_name": "Material and Installation Costs per Motor ($).",
2369
+ "description": "",
2370
+ "type": "Double",
2371
+ "required": true,
2372
+ "model_dependent": false,
2373
+ "default_value": 0.0,
2374
+ "visible": true
2375
+ },
2376
+ {
2377
+ "name": "demolition_cost",
2378
+ "display_name": "Demolition Costs per Motor ($).",
2379
+ "description": "",
2380
+ "type": "Double",
2381
+ "required": true,
2382
+ "model_dependent": false,
2383
+ "default_value": 0.0,
2384
+ "visible": true
2385
+ },
2386
+ {
2387
+ "name": "years_until_costs_start",
2388
+ "display_name": "Years Until Costs Start (whole years).",
2389
+ "description": "",
2390
+ "type": "Integer",
2391
+ "required": true,
2392
+ "model_dependent": false,
2393
+ "default_value": 0,
2394
+ "visible": true
2395
+ },
2396
+ {
2397
+ "name": "demo_cost_initial_const",
2398
+ "display_name": "Demolition Costs Occur During Initial Construction?",
2399
+ "description": "",
2400
+ "type": "Boolean",
2401
+ "required": true,
2402
+ "model_dependent": false,
2403
+ "default_value": false,
2404
+ "visible": true
2405
+ },
2406
+ {
2407
+ "name": "expected_life",
2408
+ "display_name": "Expected Life (whole years).",
2409
+ "description": "",
2410
+ "type": "Integer",
2411
+ "required": true,
2412
+ "model_dependent": false,
2413
+ "default_value": 20,
2414
+ "visible": true
2415
+ },
2416
+ {
2417
+ "name": "om_cost",
2418
+ "display_name": "O & M Costs per Motor ($).",
2419
+ "description": "",
2420
+ "type": "Double",
2421
+ "required": true,
2422
+ "model_dependent": false,
2423
+ "default_value": 0.0,
2424
+ "visible": true
2425
+ },
2426
+ {
2427
+ "name": "om_frequency",
2428
+ "display_name": "O & M Frequency (whole years).",
2429
+ "description": "",
2430
+ "type": "Integer",
2431
+ "required": true,
2432
+ "model_dependent": false,
2433
+ "default_value": 1,
2434
+ "visible": true
2435
+ }
2436
+ ],
2437
+ "visible": true
2438
+ }
2439
+ },
2440
+ {
2441
+ "name": "ImproveMotorEfficiency",
2442
+ "measure_dir_name": "ImproveMotorEfficiency",
2443
+ "arguments": {
2444
+ "__SKIP__": true
2445
+ },
2446
+ "measure_definition": {
2447
+ "name": "improve_motor_efficiency",
2448
+ "uid": "52013ba9-7b9b-4ffd-bc67-d4c0fa05d7ae",
2449
+ "uuid": "{52013ba9-7b9b-4ffd-bc67-d4c0fa05d7ae}",
2450
+ "version_id": "2bc1f8fa-14b9-48ad-88d0-28f048ede403",
2451
+ "version_uuid": "{2bc1f8fa-14b9-48ad-88d0-28f048ede403}",
2452
+ "version_modified": "20170510T052741Z",
2453
+ "xml_checksum": "F78494F2",
2454
+ "display_name": "Improve Motor Efficiency in Selected Fans and Pumps",
2455
+ "class_name": "ImproveMotorEfficiency",
2456
+ "description": "The assessment team observed opportunities for motor efficiency improvements on HVAC systems. These motors are asynchronous induction motors.\rThere are currently motors on the market that are far superior to standard efficiency motors. These come in both premium efficiency and ultra-efficiency which exceed NEMA Premium standards. These motors utilize a die cast copper rotor which reduces the energy requirements of the motor and allows the motor to run cooler. The motor also features an improved heat dissipation system and new low-friction bearings; both of which help extend the life of the motor. The motor also has a smaller weight and size compared to the standard efficiency motors. These high efficiency motors are showing efficiency improvements on the order of 3-10% more efficient than current standard efficiency motors.\rFor all of the three-phase, asynchronous induction motors feeding AHU supply fans, specify premium or ultra-efficiency motors. The belts associated with the largest motors, longest run times, and that run closest to full load should be given priority when making replacements.",
2457
+ "modeler_description": "This measure alters motors for fans and pumps in all or a single air/plant loop in the building. The text before each user argument should include the motor location and motor HP. The default value for the user argument field will be the existing motor efficiency. After each user argument there will be a check box to specify which of the motors the calculation will be applied to. For each object with a check box, the efficiency in the user argument field is replaced as the motor efficiency.\r\r\r\r\r\r\n\r\r\r\r\r\r\nThe cost arguments are user arguments that start with a default of $0. Operations and maintenance cost is applied to both baseline and new measure cash flows. Salvage value can only be applied at year 0 and only if material and installation cost for baseline measure = 0. If arguments are left blank, the user is notified that the model has not changed in the run manager. A warning is issued if the motor efficiency >96% and an error is issued if efficiency is >100%.",
2458
+ "tags": [
2459
+ "HVAC.Distribution"
2460
+ ],
2461
+ "outputs": [
2462
+
2463
+ ],
2464
+ "attributes": [
2465
+ {
2466
+ "name": "Measure Type",
2467
+ "display_name": "Measure Type",
2468
+ "value": "ModelMeasure"
2469
+ },
2470
+ {
2471
+ "name": "Uses SketchUp API",
2472
+ "display_name": "Uses SketchUp API",
2473
+ "value": false
2474
+ }
2475
+ ],
2476
+ "arguments": [
2477
+ {
2478
+ "name": "object",
2479
+ "display_name": "Choose a Plant or Air Loop to Alter.",
2480
+ "description": "",
2481
+ "type": "Choice",
2482
+ "required": true,
2483
+ "model_dependent": false,
2484
+ "default_value": "*All Plant and Air Loops*",
2485
+ "choice_values": [
2486
+ "{9b5e94d7-944e-438a-944e-40050af68aa9}"
2487
+ ],
2488
+ "choice_display_names": [
2489
+ "*All Plant and Air Loops*"
2490
+ ],
2491
+ "visible": true
2492
+ },
2493
+ {
2494
+ "name": "motor_eff",
2495
+ "display_name": "Set Motor Efficiency(%).",
2496
+ "description": "",
2497
+ "type": "Double",
2498
+ "required": true,
2499
+ "model_dependent": false,
2500
+ "default_value": 96.0,
2501
+ "visible": true
2502
+ },
2503
+ {
2504
+ "name": "remove_costs",
2505
+ "display_name": "Remove Baseline Costs From Effected Fans and Pumps?",
2506
+ "description": "",
2507
+ "type": "Boolean",
2508
+ "required": true,
2509
+ "model_dependent": false,
2510
+ "default_value": false,
2511
+ "visible": true
2512
+ },
2513
+ {
2514
+ "name": "material_cost",
2515
+ "display_name": "Material and Installation Costs per Motor ($).",
2516
+ "description": "",
2517
+ "type": "Double",
2518
+ "required": true,
2519
+ "model_dependent": false,
2520
+ "default_value": 0.0,
2521
+ "visible": true
2522
+ },
2523
+ {
2524
+ "name": "demolition_cost",
2525
+ "display_name": "Demolition Costs per Motor ($).",
2526
+ "description": "",
2527
+ "type": "Double",
2528
+ "required": true,
2529
+ "model_dependent": false,
2530
+ "default_value": 0.0,
2531
+ "visible": true
2532
+ },
2533
+ {
2534
+ "name": "years_until_costs_start",
2535
+ "display_name": "Years Until Costs Start (whole years).",
2536
+ "description": "",
2537
+ "type": "Integer",
2538
+ "required": true,
2539
+ "model_dependent": false,
2540
+ "default_value": 0,
2541
+ "visible": true
2542
+ },
2543
+ {
2544
+ "name": "demo_cost_initial_const",
2545
+ "display_name": "Demolition Costs Occur During Initial Construction?",
2546
+ "description": "",
2547
+ "type": "Boolean",
2548
+ "required": true,
2549
+ "model_dependent": false,
2550
+ "default_value": false,
2551
+ "visible": true
2552
+ },
2553
+ {
2554
+ "name": "expected_life",
2555
+ "display_name": "Expected Life (whole years).",
2556
+ "description": "",
2557
+ "type": "Integer",
2558
+ "required": true,
2559
+ "model_dependent": false,
2560
+ "default_value": 20,
2561
+ "visible": true
2562
+ },
2563
+ {
2564
+ "name": "om_cost",
2565
+ "display_name": "O & M Costs per Motor ($).",
2566
+ "description": "",
2567
+ "type": "Double",
2568
+ "required": true,
2569
+ "model_dependent": false,
2570
+ "default_value": 0.0,
2571
+ "visible": true
2572
+ },
2573
+ {
2574
+ "name": "om_frequency",
2575
+ "display_name": "O & M Frequency (whole years).",
2576
+ "description": "",
2577
+ "type": "Integer",
2578
+ "required": true,
2579
+ "model_dependent": false,
2580
+ "default_value": 1,
2581
+ "visible": true
2582
+ }
2583
+ ],
2584
+ "visible": true
2585
+ }
2586
+ },
2587
+ {
2588
+ "name": "add_rooftop_pv",
2589
+ "measure_dir_name": "add_rooftop_pv",
2590
+ "arguments": {
2591
+ "__SKIP__": true
2592
+ },
2593
+ "measure_definition": {
2594
+ "name": "add_rooftop_pv",
2595
+ "uid": "34550614-0c87-44db-9252-0ca0915b1e64",
2596
+ "uuid": "{34550614-0c87-44db-9252-0ca0915b1e64}",
2597
+ "version_id": "bd3cee7c-c06a-4c4e-98bd-e58207d6f28c",
2598
+ "version_uuid": "{bd3cee7c-c06a-4c4e-98bd-e58207d6f28c}",
2599
+ "version_modified": "20170510T043327Z",
2600
+ "xml_checksum": "178163B6",
2601
+ "display_name": "Add Rooftop PV",
2602
+ "class_name": "AddRooftopPV",
2603
+ "description": "This measure will create new shading surface geometry above the roof for each thermal zone inyour model where the surface azmith falls within the user specified range. Arguments are exposed for panel efficiency, inverter efficiency, and the fraction of each roof surface that has PV",
2604
+ "modeler_description": "The fraction of surface containing PV will not only set the PV properties, but will also change the transmittance value for the shading surface. This allows the measure to avoid attempting to layout the panels. Simple PV will be used to model the PV.",
2605
+ "tags": [
2606
+ "Onsite Power Generation.Photovoltaic"
2607
+ ],
2608
+ "outputs": [
2609
+
2610
+ ],
2611
+ "attributes": [
2612
+ {
2613
+ "name": "Measure Type",
2614
+ "display_name": "Measure Type",
2615
+ "value": "ModelMeasure"
2616
+ },
2617
+ {
2618
+ "name": "Intended Software Tool",
2619
+ "display_name": "Intended Software Tool",
2620
+ "value": "Apply Measure Now"
2621
+ },
2622
+ {
2623
+ "name": "Intended Software Tool",
2624
+ "display_name": "Intended Software Tool",
2625
+ "value": "OpenStudio Application"
2626
+ },
2627
+ {
2628
+ "name": "Intended Software Tool",
2629
+ "display_name": "Intended Software Tool",
2630
+ "value": "Parametric Analysis Tool"
2631
+ },
2632
+ {
2633
+ "name": "Intended Software Tool",
2634
+ "display_name": "Intended Software Tool",
2635
+ "value": "Analysis Spreadsheet"
2636
+ },
2637
+ {
2638
+ "name": "Intended Use Case",
2639
+ "display_name": "Intended Use Case",
2640
+ "value": "Model Articulation"
2641
+ },
2642
+ {
2643
+ "name": "Intended Use Case",
2644
+ "display_name": "Intended Use Case",
2645
+ "value": "New Construction EE"
2646
+ },
2647
+ {
2648
+ "name": "Intended Use Case",
2649
+ "display_name": "Intended Use Case",
2650
+ "value": "Retrofit EE"
2651
+ }
2652
+ ],
2653
+ "arguments": [
2654
+ {
2655
+ "name": "fraction_of_surface",
2656
+ "display_name": "Fraction of Surface Area with Active Solar Cells",
2657
+ "description": "",
2658
+ "type": "Double",
2659
+ "required": true,
2660
+ "model_dependent": false,
2661
+ "units": "fraction",
2662
+ "default_value": 0.75,
2663
+ "visible": true
2664
+ },
2665
+ {
2666
+ "name": "cell_efficiency",
2667
+ "display_name": "Cell Efficiency",
2668
+ "description": "",
2669
+ "type": "Double",
2670
+ "required": true,
2671
+ "model_dependent": false,
2672
+ "units": "fraction",
2673
+ "default_value": 0.18,
2674
+ "visible": true
2675
+ },
2676
+ {
2677
+ "name": "inverter_efficiency",
2678
+ "display_name": "Inverter Efficiency",
2679
+ "description": "",
2680
+ "type": "Double",
2681
+ "required": true,
2682
+ "model_dependent": false,
2683
+ "units": "fraction",
2684
+ "default_value": 0.98,
2685
+ "visible": true
2686
+ }
2687
+ ],
2688
+ "visible": true
2689
+ }
2690
+ },
2691
+ {
2692
+ "name": "ViewModel",
2693
+ "measure_dir_name": "ViewModel",
2694
+ "arguments": {
2695
+ },
2696
+ "measure_definition": {
2697
+ "name": "view_model",
2698
+ "uid": "f4669f10-fda5-489d-8e1c-7ca3c2d40378",
2699
+ "uuid": "{f4669f10-fda5-489d-8e1c-7ca3c2d40378}",
2700
+ "version_id": "bd64b522-f949-4210-ac7d-73a75ee27763",
2701
+ "version_uuid": "{bd64b522-f949-4210-ac7d-73a75ee27763}",
2702
+ "version_modified": "20170428T221620Z",
2703
+ "xml_checksum": "1E1F8B97",
2704
+ "display_name": "ViewModel",
2705
+ "class_name": "ViewModel",
2706
+ "description": "Visualize an OpenStudio model in a web based viewer",
2707
+ "modeler_description": "Converts the OpenStudio model to vA3C JSON format and renders using Three.js",
2708
+ "tags": [
2709
+ "Reporting.QAQC"
2710
+ ],
2711
+ "outputs": [
2712
+
2713
+ ],
2714
+ "attributes": [
2715
+ {
2716
+ "name": "Measure Type",
2717
+ "display_name": "Measure Type",
2718
+ "value": "ModelMeasure"
2719
+ },
2720
+ {
2721
+ "name": "Uses SketchUp API",
2722
+ "display_name": "Uses SketchUp API",
2723
+ "value": false
2724
+ }
2725
+ ],
2726
+ "arguments": [
2727
+
2728
+ ],
2729
+ "visible": true
2730
+ }
2731
+ },
2732
+ {
2733
+ "name": "datapoint_reports",
2734
+ "measure_dir_name": "datapoint_reports",
2735
+ "arguments": {
2736
+ "city_db_url": null,
2737
+ "project_id": null,
2738
+ "datapoint_id": null
2739
+ },
2740
+ "measure_definition": {
2741
+ "name": "datapoint_reports",
2742
+ "uid": "635ed4fb-6d66-42df-8d2f-26f652f8fd01",
2743
+ "uuid": "{635ed4fb-6d66-42df-8d2f-26f652f8fd01}",
2744
+ "version_id": "33328acc-00e4-40cb-8dd9-235baf34fd2f",
2745
+ "version_uuid": "{33328acc-00e4-40cb-8dd9-235baf34fd2f}",
2746
+ "version_modified": "20170615T212726Z",
2747
+ "xml_checksum": "FB304155",
2748
+ "display_name": "DatapointReports",
2749
+ "class_name": "DatapointReports",
2750
+ "description": "Updates Datapoint in CityDB with simulation results",
2751
+ "modeler_description": "",
2752
+ "tags": [
2753
+ "Reporting.QAQC"
2754
+ ],
2755
+ "outputs": [
2756
+
2757
+ ],
2758
+ "attributes": [
2759
+ {
2760
+ "name": "Measure Type",
2761
+ "display_name": "Measure Type",
2762
+ "value": "ReportingMeasure"
2763
+ },
2764
+ {
2765
+ "name": "Intended Use Case",
2766
+ "display_name": "Intended Use Case",
2767
+ "value": "Automatic Report Generation"
2768
+ }
2769
+ ],
2770
+ "arguments": [
2771
+ {
2772
+ "name": "city_db_url",
2773
+ "display_name": "City Database Url",
2774
+ "description": "Url of the City Database",
2775
+ "type": "String",
2776
+ "required": true,
2777
+ "model_dependent": false,
2778
+ "default_value": "",
2779
+ "visible": true
2780
+ },
2781
+ {
2782
+ "name": "project_id",
2783
+ "display_name": "Project ID",
2784
+ "description": "Project ID to generate reports for.",
2785
+ "type": "String",
2786
+ "required": true,
2787
+ "model_dependent": false,
2788
+ "default_value": "0",
2789
+ "visible": true
2790
+ },
2791
+ {
2792
+ "name": "datapoint_id",
2793
+ "display_name": "Datapoint ID",
2794
+ "description": "Datapoint ID to generate reports for.",
2795
+ "type": "String",
2796
+ "required": true,
2797
+ "model_dependent": false,
2798
+ "default_value": "0",
2799
+ "visible": true
2800
+ }
2801
+ ],
2802
+ "visible": true
2803
+ }
2804
+ }
2805
+ ]
2806
+ }