honeybee-openstudio 2.10.4 → 2.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f6244a8a9d855497fd78c192ffbc9ede6cd337a9ed4ed1cbabdf654bb361056
4
- data.tar.gz: 5572eb94ca3afea26ea15449e58c762e57973fa763f65671b2855a291b79706f
3
+ metadata.gz: 4ea8287dc3fbd44cbc9ace3fa6253da4559280691e18ad33c746c4d0f3fde9c7
4
+ data.tar.gz: d77bac64d0434bcbf4b9b09b41acae037ed87d432590b4efff38b24eb4938be7
5
5
  SHA512:
6
- metadata.gz: 99de2b8728e7529d8046e5d5730c4edb66e159f93ab2776e60cab777d0de22fcc669034340a0d898fc8804f8007532f7df3caa5aaff845b08dce1fdb10f1a677
7
- data.tar.gz: d5ab7db18ff0b5f53431d898361314dc1650329da2471d63040590a7c119c4cd43b9b3e63de5bcb8ba7ffa2d83b6a255a9f44dfcf3b7cc41e8fed4f5ee3d217e
6
+ metadata.gz: d67be0f1946d78f1c5ef10bf20af4e320434854a323a4d5594a4922790b1b64bddd2ae53ab2d5043cc3c67fd305984f3689ce1fe3b12a18896134999800b0bcf
7
+ data.tar.gz: 7ddf3fadbb997e04af867c8c9618772492568175ab50537546e2f10a3efe1eded2436c8180553f3fd842da39c99da8efe4a31e14da05fd873e1cd067312ef4a8
data/.gitignore CHANGED
@@ -7,6 +7,7 @@
7
7
  /coverage/
8
8
  /doc/
9
9
  /pkg/
10
+ /spec/coverage/
10
11
  /spec/output/
11
12
  /spec/reports/
12
13
  /spec/test/
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'honeybee-openstudio'
7
- spec.version = '2.10.4'
7
+ spec.version = '2.12.0'
8
8
  spec.authors = ['Tanushree Charan', 'Dan Macumber', 'Chris Mackey', 'Mostapha Sadeghipour Roudsari']
9
9
  spec.email = ['tanushree.charan@nrel.gov', 'chris@ladybug.tools']
10
10
 
@@ -42,25 +42,34 @@ module URBANopt
42
42
  # class level variables
43
43
  @@instance_lock = Mutex.new
44
44
  @@osw = nil
45
+ @@mapper_measures = nil
45
46
  @@geometry = nil
46
47
 
47
48
  def initialize()
48
-
49
49
  # do initialization of class variables in thread safe way
50
50
  @@instance_lock.synchronize do
51
- if @@osw.nil?
51
+ # load the OSW for this class
52
+ if @@osw.nil?
53
+ osw_path = File.join(File.dirname(__FILE__), 'honeybee_workflow.osw')
54
+ File.open(osw_path, 'r') do |file|
55
+ @@osw = JSON.parse(file.read, symbolize_names: true)
56
+ end
57
+ # configure OSW with extension gem paths for measures and files
58
+ # all extension gems must be required before this line
59
+ @@osw = OpenStudio::Extension.configure_osw(@@osw)
60
+ end
52
61
 
53
- # load the OSW for this class
54
- osw_path = File.join(File.dirname(__FILE__), 'honeybee_workflow.osw')
55
- File.open(osw_path, 'r') do |file|
56
- @@osw = JSON.parse(file.read, symbolize_names: true)
62
+ # load the mapper measure variables if the file exists
63
+ if @@mapper_measures.nil?
64
+ map_meas_path = File.join(File.dirname(__FILE__), 'mapper_measures.json')
65
+ if File.file?(map_meas_path)
66
+ File.open(map_meas_path, 'r') do |file|
67
+ @@mapper_measures = JSON.parse(file.read)
57
68
  end
58
-
59
- # configure OSW with extension gem paths for measures and files
60
- # all extension gems must be required before this line
61
- @@osw = OpenStudio::Extension.configure_osw(@@osw)
62
69
  end
63
70
  end
71
+
72
+ end
64
73
  end
65
74
 
66
75
  def create_osw(scenario, features, feature_names)
@@ -76,7 +85,6 @@ module URBANopt
76
85
  # take the centroid of the vertices as the location of the building
77
86
  feature_vertices_coordinates = feature.feature_json[:geometry][:coordinates][0]
78
87
  feature_location = feature.find_feature_center(feature_vertices_coordinates).to_s
79
-
80
88
  if feature_names.size == 1
81
89
  feature_name = feature_names[0]
82
90
  end
@@ -93,12 +101,15 @@ module URBANopt
93
101
  OpenStudio::Extension.set_measure_argument(
94
102
  osw, 'from_honeybee_model', 'model_json', feature.detailed_model_filename)
95
103
 
96
- # check if there is a HVAC key in the feature JSON properties
97
- building_hash = feature.to_hash
98
- if building_hash.key?(:system_type)
99
- # assume the typical building measure is in the OSW and add the system type
100
- OpenStudio::Extension.set_measure_argument(
101
- osw, 'create_typical_building_from_model', 'system_type', system_type)
104
+ # add any of the mapper measure variables
105
+ if not @@mapper_measures.nil?
106
+ @@mapper_measures.each do |map_measure_param|
107
+ # get the attribute from the feature
108
+ feature_param = feature.send(map_measure_param[2])
109
+ # set the measure argument
110
+ OpenStudio::Extension.set_measure_argument(
111
+ osw, map_measure_param[0], map_measure_param[1], feature_param)
112
+ end
102
113
  end
103
114
 
104
115
  # add the feature id and name to the reporting measure
@@ -29,4 +29,4 @@ else
29
29
  end
30
30
 
31
31
  # include the honeybee-openstudio-gem
32
- gem 'honeybee-openstudio', '2.10.3'
32
+ gem 'honeybee-openstudio', '2.11.3'
data/lib/honeybee.rb CHANGED
@@ -77,6 +77,7 @@ require 'honeybee/load/infiltration'
77
77
  require 'honeybee/load/ventilation'
78
78
  require 'honeybee/load/setpoint_thermostat'
79
79
  require 'honeybee/load/setpoint_humidistat'
80
+ require 'honeybee/load/daylight'
80
81
 
81
82
  # import the schedule objects
82
83
  require 'honeybee/schedule/type_limit'
@@ -3,7 +3,7 @@
3
3
  "servers": [],
4
4
  "info": {
5
5
  "description": "Honeybee model schema.",
6
- "version": "1.39.12",
6
+ "version": "1.42.2",
7
7
  "title": "Honeybee Model Schema",
8
8
  "contact": {
9
9
  "name": "Ladybug Tools",
@@ -139,6 +139,11 @@
139
139
  "x-displayName": "ControlType",
140
140
  "description": "<SchemaDefinition schemaRef=\"#/components/schemas/ControlType\" />\n"
141
141
  },
142
+ {
143
+ "name": "daylightingcontrol_model",
144
+ "x-displayName": "DaylightingControl",
145
+ "description": "<SchemaDefinition schemaRef=\"#/components/schemas/DaylightingControl\" />\n"
146
+ },
142
147
  {
143
148
  "name": "door_model",
144
149
  "x-displayName": "Door",
@@ -907,6 +912,7 @@
907
912
  "constructionset_model",
908
913
  "constructionsetabridged_model",
909
914
  "controltype_model",
915
+ "daylightingcontrol_model",
910
916
  "door_model",
911
917
  "doorconstructionset_model",
912
918
  "doorconstructionsetabridged_model",
@@ -2276,7 +2282,7 @@
2276
2282
  },
2277
2283
  "radiant_fraction": {
2278
2284
  "title": "Radiant Fraction",
2279
- "description": "The radiant fraction of sensible heat released by people. The defaultvalue is 0.30.",
2285
+ "description": "The radiant fraction of sensible heat released by people. (Default: 0.3).",
2280
2286
  "default": 0.3,
2281
2287
  "minimum": 0,
2282
2288
  "maximum": 1,
@@ -2350,7 +2356,7 @@
2350
2356
  },
2351
2357
  "visible_fraction": {
2352
2358
  "title": "Visible Fraction",
2353
- "description": "The fraction of heat from lights that goes into the zone as visible (short-wave) radiation. The default value is `0.25`.",
2359
+ "description": "The fraction of heat from lights that goes into the zone as visible (short-wave) radiation. (Default: 0.25).",
2354
2360
  "default": 0.25,
2355
2361
  "minimum": 0,
2356
2362
  "maximum": 1,
@@ -2359,7 +2365,7 @@
2359
2365
  },
2360
2366
  "radiant_fraction": {
2361
2367
  "title": "Radiant Fraction",
2362
- "description": "The fraction of heat from lights that is long-wave radiation. Default value is `0.32`.",
2368
+ "description": "The fraction of heat from lights that is long-wave radiation. (Default: 0.32).",
2363
2369
  "default": 0.32,
2364
2370
  "minimum": 0,
2365
2371
  "maximum": 1,
@@ -2368,7 +2374,7 @@
2368
2374
  },
2369
2375
  "return_air_fraction": {
2370
2376
  "title": "Return Air Fraction",
2371
- "description": "The fraction of the heat from lights that goes into the zone return air. Default value is `0`.",
2377
+ "description": "The fraction of the heat from lights that goes into the zone return air. (Default: 0).",
2372
2378
  "default": 0.0,
2373
2379
  "minimum": 0,
2374
2380
  "maximum": 1,
@@ -2805,6 +2811,76 @@
2805
2811
  ],
2806
2812
  "additionalProperties": false
2807
2813
  },
2814
+ "DaylightingControl": {
2815
+ "title": "DaylightingControl",
2816
+ "description": "Base class for all objects that are not extensible with additional keys.\n\nThis effectively includes all objects except for the Properties classes\nthat are assigned to geometry objects.",
2817
+ "type": "object",
2818
+ "properties": {
2819
+ "sensor_position": {
2820
+ "title": "Sensor Position",
2821
+ "description": "A point as 3 (x, y, z) values for the position of the daylight sensor within the parent Room. This point should lie within the Room volume in order for the results to be meaningful.",
2822
+ "minItems": 3,
2823
+ "maxItems": 3,
2824
+ "type": "array",
2825
+ "items": {
2826
+ "type": "number",
2827
+ "format": "double"
2828
+ }
2829
+ },
2830
+ "type": {
2831
+ "title": "Type",
2832
+ "default": "DaylightingControl",
2833
+ "pattern": "^DaylightingControl$",
2834
+ "type": "string",
2835
+ "readOnly": true
2836
+ },
2837
+ "illuminance_setpoint": {
2838
+ "title": "Illuminance Setpoint",
2839
+ "description": "A number for the illuminance setpoint in lux beyond which electric lights are dimmed if there is sufficient daylight.",
2840
+ "default": 300,
2841
+ "exclusiveMinimum": 0,
2842
+ "type": "number",
2843
+ "format": "double"
2844
+ },
2845
+ "control_fraction": {
2846
+ "title": "Control Fraction",
2847
+ "description": "A number between 0 and 1 that represents the fraction of the Room lights that are dimmed when the illuminance at the sensor position is at the specified illuminance. 1 indicates that all lights are dim-able while 0 indicates that no lights are dim-able. Deeper rooms should have lower control fractions to account for the face that the lights in the back of the space do not dim in response to suitable daylight at the front of the room.",
2848
+ "default": 1,
2849
+ "minimum": 0,
2850
+ "maximum": 1,
2851
+ "type": "number",
2852
+ "format": "double"
2853
+ },
2854
+ "min_power_input": {
2855
+ "title": "Min Power Input",
2856
+ "description": "A number between 0 and 1 for the the lowest power the lighting system can dim down to, expressed as a fraction of maximum input power.",
2857
+ "default": 0.3,
2858
+ "minimum": 0,
2859
+ "maximum": 1,
2860
+ "type": "number",
2861
+ "format": "double"
2862
+ },
2863
+ "min_light_output": {
2864
+ "title": "Min Light Output",
2865
+ "description": "A number between 0 and 1 the lowest lighting output the lighting system can dim down to, expressed as a fraction of maximum light output.",
2866
+ "default": 0.2,
2867
+ "minimum": 0,
2868
+ "maximum": 1,
2869
+ "type": "number",
2870
+ "format": "double"
2871
+ },
2872
+ "off_at_minimum": {
2873
+ "title": "Off At Minimum",
2874
+ "description": "Boolean to note whether lights should switch off completely when they get to the minimum power input.",
2875
+ "default": false,
2876
+ "type": "boolean"
2877
+ }
2878
+ },
2879
+ "required": [
2880
+ "sensor_position"
2881
+ ],
2882
+ "additionalProperties": false
2883
+ },
2808
2884
  "VentilationControlAbridged": {
2809
2885
  "title": "VentilationControlAbridged",
2810
2886
  "description": "Base class for all objects that are not extensible with additional keys.\n\nThis effectively includes all objects except for the Properties classes\nthat are assigned to geometry objects.",
@@ -2977,6 +3053,15 @@
2977
3053
  }
2978
3054
  ]
2979
3055
  },
3056
+ "daylighting_control": {
3057
+ "title": "Daylighting Control",
3058
+ "description": "An optional DaylightingControl object to dictate the dimming of lights. If None, the lighting will respond only to the schedule and not the daylight conditions within the room.",
3059
+ "allOf": [
3060
+ {
3061
+ "$ref": "#/components/schemas/DaylightingControl"
3062
+ }
3063
+ ]
3064
+ },
2980
3065
  "window_vent_control": {
2981
3066
  "title": "Window Vent Control",
2982
3067
  "description": "An optional VentilationControl object to dictate the opening of windows. If None, the windows will never open.",
@@ -3628,7 +3713,7 @@
3628
3713
  },
3629
3714
  "materials": {
3630
3715
  "title": "Materials",
3631
- "description": "List of opaque materials. The order of the materials is from outside to inside.",
3716
+ "description": "List of opaque material definitions that are referenced in the layers. Note that the order of materials does not matter and there is no need to specify duplicated materials in this list.",
3632
3717
  "minItems": 1,
3633
3718
  "maxItems": 10,
3634
3719
  "type": "array",
@@ -4245,7 +4330,7 @@
4245
4330
  },
4246
4331
  "materials": {
4247
4332
  "title": "Materials",
4248
- "description": "List of glazing and gas materials. The order of the materials is from outside to inside. If a SimpleGlazSys material is used, it must be the only material in the construction. For multi-layered constructions, adjacent glass layers must be separated by one and only one gas layer.",
4333
+ "description": "List of glazing and gas material definitions that are referenced in the layers. Note that the order of materials does not matter and there is no need to specify duplicated materials in this list.",
4249
4334
  "minItems": 1,
4250
4335
  "maxItems": 8,
4251
4336
  "type": "array",
@@ -5971,12 +6056,12 @@
5971
6056
  "title": "Vintages",
5972
6057
  "description": "An enumeration.",
5973
6058
  "enum": [
5974
- "90.1-2013",
5975
- "90.1-2010",
5976
- "90.1-2007",
5977
- "90.1-2004",
5978
- "DOE Ref 1980-2004",
5979
- "DOE Ref Pre-1980"
6059
+ "ASHRAE_2013",
6060
+ "ASHRAE_2010",
6061
+ "ASHRAE_2007",
6062
+ "ASHRAE_2004",
6063
+ "DOE_Ref_1980_2004",
6064
+ "DOE_Ref_Pre_1980"
5980
6065
  ],
5981
6066
  "type": "string"
5982
6067
  },
@@ -5995,21 +6080,21 @@
5995
6080
  "title": "VAVEquipmentType",
5996
6081
  "description": "An enumeration.",
5997
6082
  "enum": [
5998
- "VAV chiller with gas boiler reheat",
5999
- "VAV chiller with central air source heat pump reheat",
6000
- "VAV chiller with district hot water reheat",
6001
- "VAV chiller with PFP boxes",
6002
- "VAV chiller with gas coil reheat",
6003
- "VAV air-cooled chiller with gas boiler reheat",
6004
- "VAV air-cooled chiller with central air source heat pump reheat",
6005
- "VAV air-cooled chiller with district hot water reheat",
6006
- "VAV air-cooled chiller with PFP boxes",
6007
- "VAV air-cooled chiller with gas coil reheat",
6008
- "VAV district chilled water with gas boiler reheat",
6009
- "VAV district chilled water with central air source heat pump reheat",
6010
- "VAV district chilled water with district hot water reheat",
6011
- "VAV district chilled water with PFP boxes",
6012
- "VAV district chilled water with gas coil reheat"
6083
+ "VAV_Chiller_Boiler",
6084
+ "VAV_Chiller_ASHP",
6085
+ "VAV_Chiller_DHW",
6086
+ "VAV_Chiller_PFP",
6087
+ "VAV_Chiller_GasCoil",
6088
+ "VAV_ACChiller_Boiler",
6089
+ "VAV_ACChiller_ASHP",
6090
+ "VAV_ACChiller_DHW",
6091
+ "VAV_ACChiller_PFP",
6092
+ "VAV_ACChiller_GasCoil",
6093
+ "VAV_DCW_Boiler",
6094
+ "VAV_DCW_ASHP",
6095
+ "VAV_DCW_DHW",
6096
+ "VAV_DCW_PFP",
6097
+ "VAV_DCW_GasCoil"
6013
6098
  ],
6014
6099
  "type": "string"
6015
6100
  },
@@ -6032,7 +6117,7 @@
6032
6117
  },
6033
6118
  "vintage": {
6034
6119
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6035
- "default": "90.1-2013",
6120
+ "default": "ASHRAE_2013",
6036
6121
  "allOf": [
6037
6122
  {
6038
6123
  "$ref": "#/components/schemas/Vintages"
@@ -6093,7 +6178,7 @@
6093
6178
  },
6094
6179
  "equipment_type": {
6095
6180
  "description": "Text for the specific type of system equipment from the VAVEquipmentType enumeration.",
6096
- "default": "VAV chiller with gas boiler reheat",
6181
+ "default": "VAV_Chiller_Boiler",
6097
6182
  "allOf": [
6098
6183
  {
6099
6184
  "$ref": "#/components/schemas/VAVEquipmentType"
@@ -6110,11 +6195,11 @@
6110
6195
  "title": "PVAVEquipmentType",
6111
6196
  "description": "An enumeration.",
6112
6197
  "enum": [
6113
- "PVAV with gas boiler reheat",
6114
- "PVAV with central air source heat pump reheat",
6115
- "PVAV with district hot water reheat",
6116
- "PVAV with PFP boxes",
6117
- "PVAV with gas heat with electric reheat"
6198
+ "PVAV_Boiler",
6199
+ "PVAV_ASHP",
6200
+ "PVAV_DHW",
6201
+ "PVAV_PFP",
6202
+ "PVAV_BoilerElectricReheat"
6118
6203
  ],
6119
6204
  "type": "string"
6120
6205
  },
@@ -6137,7 +6222,7 @@
6137
6222
  },
6138
6223
  "vintage": {
6139
6224
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6140
- "default": "90.1-2013",
6225
+ "default": "ASHRAE_2013",
6141
6226
  "allOf": [
6142
6227
  {
6143
6228
  "$ref": "#/components/schemas/Vintages"
@@ -6198,7 +6283,7 @@
6198
6283
  },
6199
6284
  "equipment_type": {
6200
6285
  "description": "Text for the specific type of system equipment from the VAVEquipmentType enumeration.",
6201
- "default": "PVAV with gas boiler reheat",
6286
+ "default": "PVAV_Boiler",
6202
6287
  "allOf": [
6203
6288
  {
6204
6289
  "$ref": "#/components/schemas/PVAVEquipmentType"
@@ -6215,26 +6300,26 @@
6215
6300
  "title": "PSZEquipmentType",
6216
6301
  "description": "An enumeration.",
6217
6302
  "enum": [
6218
- "PSZ-AC with baseboard electric",
6219
- "PSZ-AC with baseboard gas boiler",
6220
- "PSZ-AC with baseboard district hot water",
6221
- "PSZ-AC with gas unit heaters",
6222
- "PSZ-AC with electric coil",
6223
- "PSZ-AC with gas coil",
6224
- "PSZ-AC with gas boiler",
6225
- "PSZ-AC with central air source heat pump",
6226
- "PSZ-AC with district hot water",
6227
- "PSZ-AC with no heat",
6228
- "PSZ-AC district chilled water with baseboard electric",
6229
- "PSZ-AC district chilled water with baseboard gas boiler",
6230
- "PSZ-AC district chilled water with gas unit heaters",
6231
- "PSZ-AC district chilled water with electric coil",
6232
- "PSZ-AC district chilled water with gas coil",
6233
- "PSZ-AC district chilled water with gas boiler",
6234
- "PSZ-AC district chilled water with central air source heat pump",
6235
- "PSZ-AC district chilled water with district hot water",
6236
- "PSZ-AC district chilled water with no heat",
6237
- "PSZ-HP"
6303
+ "PSZAC_ElectricBaseboard",
6304
+ "PSZAC_BoilerBaseboard",
6305
+ "PSZAC_DHWBaseboard",
6306
+ "PSZAC_GasHeaters",
6307
+ "PSZAC_ElectricCoil",
6308
+ "PSZAC_GasCoil",
6309
+ "PSZAC_Boiler",
6310
+ "PSZAC_ASHP",
6311
+ "PSZAC_DHW",
6312
+ "PSZAC",
6313
+ "PSZAC_DCW_ElectricBaseboard",
6314
+ "PSZAC_DCW_BoilerBaseboard",
6315
+ "PSZAC_DCW_GasHeaters",
6316
+ "PSZAC_DCW_ElectricCoil",
6317
+ "PSZAC_DCW_GasCoil",
6318
+ "PSZAC_DCW_Boiler",
6319
+ "PSZAC_DCW_ASHP",
6320
+ "PSZAC_DCW_DHW",
6321
+ "PSZAC_DCW",
6322
+ "PSZHP"
6238
6323
  ],
6239
6324
  "type": "string"
6240
6325
  },
@@ -6257,7 +6342,7 @@
6257
6342
  },
6258
6343
  "vintage": {
6259
6344
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6260
- "default": "90.1-2013",
6345
+ "default": "ASHRAE_2013",
6261
6346
  "allOf": [
6262
6347
  {
6263
6348
  "$ref": "#/components/schemas/Vintages"
@@ -6318,7 +6403,7 @@
6318
6403
  },
6319
6404
  "equipment_type": {
6320
6405
  "description": "Text for the specific type of system equipment from the PVAVEquipmentType enumeration.",
6321
- "default": "PSZ-AC with baseboard electric",
6406
+ "default": "PSZAC_ElectricBaseboard",
6322
6407
  "allOf": [
6323
6408
  {
6324
6409
  "$ref": "#/components/schemas/PSZEquipmentType"
@@ -6335,16 +6420,16 @@
6335
6420
  "title": "PTACEquipmentType",
6336
6421
  "description": "An enumeration.",
6337
6422
  "enum": [
6338
- "PTAC with baseboard electric",
6339
- "PTAC with baseboard gas boiler",
6340
- "PTAC with baseboard district hot water",
6341
- "PTAC with gas unit heaters",
6342
- "PTAC with electric coil",
6343
- "PTAC with gas coil",
6344
- "PTAC with gas boiler",
6345
- "PTAC with central air source heat pump",
6346
- "PTAC with district hot water",
6347
- "PTAC with no heat",
6423
+ "PTAC_ElectricBaseboard",
6424
+ "PTAC_BoilerBaseboard",
6425
+ "PTAC_DHWBaseboard",
6426
+ "PTAC_GasHeaters",
6427
+ "PTAC_ElectricCoil",
6428
+ "PTAC_GasCoil",
6429
+ "PTAC_Boiler",
6430
+ "PTAC_ASHP",
6431
+ "PTAC_DHW",
6432
+ "PTAC",
6348
6433
  "PTHP"
6349
6434
  ],
6350
6435
  "type": "string"
@@ -6368,7 +6453,7 @@
6368
6453
  },
6369
6454
  "vintage": {
6370
6455
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6371
- "default": "90.1-2013",
6456
+ "default": "ASHRAE_2013",
6372
6457
  "allOf": [
6373
6458
  {
6374
6459
  "$ref": "#/components/schemas/Vintages"
@@ -6429,7 +6514,7 @@
6429
6514
  },
6430
6515
  "equipment_type": {
6431
6516
  "description": "Text for the specific type of system equipment from the PTACEquipmentType enumeration.",
6432
- "default": "PTAC with baseboard electric",
6517
+ "default": "PTAC_ElectricBaseboard",
6433
6518
  "allOf": [
6434
6519
  {
6435
6520
  "$ref": "#/components/schemas/PTACEquipmentType"
@@ -6446,7 +6531,7 @@
6446
6531
  "title": "FurnaceEquipmentType",
6447
6532
  "description": "An enumeration.",
6448
6533
  "enum": [
6449
- "Forced air furnace"
6534
+ "Furnace"
6450
6535
  ],
6451
6536
  "type": "string"
6452
6537
  },
@@ -6469,7 +6554,7 @@
6469
6554
  },
6470
6555
  "vintage": {
6471
6556
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6472
- "default": "90.1-2013",
6557
+ "default": "ASHRAE_2013",
6473
6558
  "allOf": [
6474
6559
  {
6475
6560
  "$ref": "#/components/schemas/Vintages"
@@ -6530,7 +6615,7 @@
6530
6615
  },
6531
6616
  "equipment_type": {
6532
6617
  "description": "Text for the specific type of system equipment from the FurnaceEquipmentType enumeration.",
6533
- "default": "Forced air furnace",
6618
+ "default": "Furnace",
6534
6619
  "allOf": [
6535
6620
  {
6536
6621
  "$ref": "#/components/schemas/FurnaceEquipmentType"
@@ -6547,24 +6632,24 @@
6547
6632
  "title": "FCUwithDOASEquipmentType",
6548
6633
  "description": "An enumeration.",
6549
6634
  "enum": [
6550
- "DOAS with fan coil chiller with boiler",
6551
- "DOAS with fan coil chiller with central air source heat pump",
6552
- "DOAS with fan coil chiller with district hot water",
6553
- "DOAS with fan coil chiller with baseboard electric",
6554
- "DOAS with fan coil chiller with gas unit heaters",
6555
- "DOAS with fan coil chiller with no heat",
6556
- "DOAS with fan coil air-cooled chiller with boiler",
6557
- "DOAS with fan coil air-cooled chiller with central air source heat pump",
6558
- "DOAS with fan coil air-cooled chiller with district hot water",
6559
- "DOAS with fan coil air-cooled chiller with baseboard electric",
6560
- "DOAS with fan coil air-cooled chiller with gas unit heaters",
6561
- "DOAS with fan coil air-cooled chiller with no heat",
6562
- "DOAS with fan coil district chilled water with boiler",
6563
- "DOAS with fan coil district chilled water with central air source heat pump",
6564
- "DOAS with fan coil district chilled water with district hot water",
6565
- "DOAS with fan coil district chilled water with baseboard electric",
6566
- "DOAS with fan coil district chilled water with gas unit heaters",
6567
- "DOAS with fan coil district chilled water with no heat"
6635
+ "DOAS_FCU_Chiller_Boiler",
6636
+ "DOAS_FCU_Chiller_ASHP",
6637
+ "DOAS_FCU_Chiller_DHW",
6638
+ "DOAS_FCU_Chiller_ElectricBaseboard",
6639
+ "DOAS_FCU_Chiller_GasHeaters",
6640
+ "DOAS_FCU_Chiller",
6641
+ "DOAS_FCU_ACChiller_Boiler",
6642
+ "DOAS_FCU_ACChiller_ASHP",
6643
+ "DOAS_FCU_ACChiller_DHW",
6644
+ "DOAS_FCU_ACChiller_ElectricBaseboard",
6645
+ "DOAS_FCU_ACChiller_GasHeaters",
6646
+ "DOAS_FCU_ACChiller",
6647
+ "DOAS_FCU_DCW_Boiler",
6648
+ "DOAS_FCU_DCW_ASHP",
6649
+ "DOAS_FCU_DCW_DHW",
6650
+ "DOAS_FCU_DCW_ElectricBaseboard",
6651
+ "DOAS_FCU_DCW_GasHeaters",
6652
+ "DOAS_FCU_DCW"
6568
6653
  ],
6569
6654
  "type": "string"
6570
6655
  },
@@ -6587,7 +6672,7 @@
6587
6672
  },
6588
6673
  "vintage": {
6589
6674
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6590
- "default": "90.1-2013",
6675
+ "default": "ASHRAE_2013",
6591
6676
  "allOf": [
6592
6677
  {
6593
6678
  "$ref": "#/components/schemas/Vintages"
@@ -6639,7 +6724,7 @@
6639
6724
  },
6640
6725
  "equipment_type": {
6641
6726
  "description": "Text for the specific type of system equipment from the FCUwithDOASEquipmentType enumeration.",
6642
- "default": "DOAS with fan coil chiller with boiler",
6727
+ "default": "DOAS_FCU_Chiller_Boiler",
6643
6728
  "allOf": [
6644
6729
  {
6645
6730
  "$ref": "#/components/schemas/FCUwithDOASEquipmentType"
@@ -6656,10 +6741,10 @@
6656
6741
  "title": "WSHPwithDOASEquipmentType",
6657
6742
  "description": "An enumeration.",
6658
6743
  "enum": [
6659
- "DOAS with water source heat pumps fluid cooler with boiler",
6660
- "DOAS with water source heat pumps cooling tower with boiler",
6661
- "DOAS with water source heat pumps with ground source heat pump",
6662
- "DOAS with water source heat pumps district chilled water with district hot water"
6744
+ "DOAS_WSHP_FluidCooler_Boiler",
6745
+ "DOAS_WSHP_CoolingTower_Boiler",
6746
+ "DOAS_WSHP_GSHP",
6747
+ "DOAS_WSHP_DCW_DHW"
6663
6748
  ],
6664
6749
  "type": "string"
6665
6750
  },
@@ -6682,7 +6767,7 @@
6682
6767
  },
6683
6768
  "vintage": {
6684
6769
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6685
- "default": "90.1-2013",
6770
+ "default": "ASHRAE_2013",
6686
6771
  "allOf": [
6687
6772
  {
6688
6773
  "$ref": "#/components/schemas/Vintages"
@@ -6734,7 +6819,7 @@
6734
6819
  },
6735
6820
  "equipment_type": {
6736
6821
  "description": "Text for the specific type of system equipment from the WSHPwithDOASEquipmentType enumeration.",
6737
- "default": "DOAS with water source heat pumps fluid cooler with boiler",
6822
+ "default": "DOAS_WSHP_FluidCooler_Boiler",
6738
6823
  "allOf": [
6739
6824
  {
6740
6825
  "$ref": "#/components/schemas/WSHPwithDOASEquipmentType"
@@ -6751,7 +6836,7 @@
6751
6836
  "title": "VRFwithDOASEquipmentType",
6752
6837
  "description": "An enumeration.",
6753
6838
  "enum": [
6754
- "DOAS with VRF"
6839
+ "DOAS_VRF"
6755
6840
  ],
6756
6841
  "type": "string"
6757
6842
  },
@@ -6774,7 +6859,7 @@
6774
6859
  },
6775
6860
  "vintage": {
6776
6861
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6777
- "default": "90.1-2013",
6862
+ "default": "ASHRAE_2013",
6778
6863
  "allOf": [
6779
6864
  {
6780
6865
  "$ref": "#/components/schemas/Vintages"
@@ -6826,7 +6911,7 @@
6826
6911
  },
6827
6912
  "equipment_type": {
6828
6913
  "description": "Text for the specific type of system equipment from the VRFwithDOASEquipmentType enumeration.",
6829
- "default": "DOAS with VRF",
6914
+ "default": "DOAS_VRF",
6830
6915
  "allOf": [
6831
6916
  {
6832
6917
  "$ref": "#/components/schemas/VRFwithDOASEquipmentType"
@@ -6843,24 +6928,24 @@
6843
6928
  "title": "FCUEquipmentType",
6844
6929
  "description": "An enumeration.",
6845
6930
  "enum": [
6846
- "Fan coil chiller with boiler",
6847
- "Fan coil chiller with central air source heat pump",
6848
- "Fan coil chiller with district hot water",
6849
- "Fan coil chiller with baseboard electric",
6850
- "Fan coil chiller with gas unit heaters",
6851
- "Fan coil chiller with no heat",
6852
- "Fan coil air-cooled chiller with boiler",
6853
- "Fan coil air-cooled chiller with central air source heat pump",
6854
- "Fan coil air-cooled chiller with district hot water",
6855
- "Fan coil air-cooled chiller with baseboard electric",
6856
- "Fan coil air-cooled chiller with gas unit heaters",
6857
- "Fan coil air-cooled chiller with no heat",
6858
- "Fan coil district chilled water with boiler",
6859
- "Fan coil district chilled water with central air source heat pump",
6860
- "Fan coil district chilled water with district hot water",
6861
- "Fan coil district chilled water with baseboard electric",
6862
- "Fan coil district chilled water with gas unit heaters",
6863
- "Fan coil district chilled water with no heat"
6931
+ "FCU_Chiller_Boiler",
6932
+ "FCU_Chiller_ASHP",
6933
+ "FCU_Chiller_DHW",
6934
+ "FCU_Chiller_ElectricBaseboard",
6935
+ "FCU_Chiller_GasHeaters",
6936
+ "FCU_Chiller",
6937
+ "FCU_ACChiller_Boiler",
6938
+ "FCU_ACChiller_ASHP",
6939
+ "FCU_ACChiller_DHW",
6940
+ "FCU_ACChiller_ElectricBaseboard",
6941
+ "FCU_ACChiller_GasHeaters",
6942
+ "FCU_ACChiller",
6943
+ "FCU_DCW_Boiler",
6944
+ "FCU_DCW_ASHP",
6945
+ "FCU_DCW_DHW",
6946
+ "FCU_DCW_ElectricBaseboard",
6947
+ "FCU_DCW_GasHeaters",
6948
+ "FCU_DCW"
6864
6949
  ],
6865
6950
  "type": "string"
6866
6951
  },
@@ -6883,7 +6968,7 @@
6883
6968
  },
6884
6969
  "vintage": {
6885
6970
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6886
- "default": "90.1-2013",
6971
+ "default": "ASHRAE_2013",
6887
6972
  "allOf": [
6888
6973
  {
6889
6974
  "$ref": "#/components/schemas/Vintages"
@@ -6899,7 +6984,7 @@
6899
6984
  },
6900
6985
  "equipment_type": {
6901
6986
  "description": "Text for the specific type of system equipment from the FCUEquipmentType enumeration.",
6902
- "default": "Fan coil chiller with boiler",
6987
+ "default": "FCU_Chiller_Boiler",
6903
6988
  "allOf": [
6904
6989
  {
6905
6990
  "$ref": "#/components/schemas/FCUEquipmentType"
@@ -6916,10 +7001,10 @@
6916
7001
  "title": "WSHPEquipmentType",
6917
7002
  "description": "An enumeration.",
6918
7003
  "enum": [
6919
- "Water source heat pumps fluid cooler with boiler",
6920
- "Water source heat pumps cooling tower with boiler",
6921
- "Water source heat pumps with ground source heat pump",
6922
- "Water source heat pumps district chilled water with district hot water"
7004
+ "WSHP_FluidCooler_Boiler",
7005
+ "WSHP_CoolingTower_Boiler",
7006
+ "WSHP_GSHP",
7007
+ "WSHP_DCW_DHW"
6923
7008
  ],
6924
7009
  "type": "string"
6925
7010
  },
@@ -6942,7 +7027,7 @@
6942
7027
  },
6943
7028
  "vintage": {
6944
7029
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
6945
- "default": "90.1-2013",
7030
+ "default": "ASHRAE_2013",
6946
7031
  "allOf": [
6947
7032
  {
6948
7033
  "$ref": "#/components/schemas/Vintages"
@@ -6958,7 +7043,7 @@
6958
7043
  },
6959
7044
  "equipment_type": {
6960
7045
  "description": "Text for the specific type of system equipment from the WSHPEquipmentType enumeration.",
6961
- "default": "Water source heat pumps fluid cooler with boiler",
7046
+ "default": "WSHP_FluidCooler_Boiler",
6962
7047
  "allOf": [
6963
7048
  {
6964
7049
  "$ref": "#/components/schemas/WSHPEquipmentType"
@@ -6998,7 +7083,7 @@
6998
7083
  },
6999
7084
  "vintage": {
7000
7085
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
7001
- "default": "90.1-2013",
7086
+ "default": "ASHRAE_2013",
7002
7087
  "allOf": [
7003
7088
  {
7004
7089
  "$ref": "#/components/schemas/Vintages"
@@ -7031,10 +7116,10 @@
7031
7116
  "title": "BaseboardEquipmentType",
7032
7117
  "description": "An enumeration.",
7033
7118
  "enum": [
7034
- "Baseboard electric",
7035
- "Baseboard gas boiler",
7036
- "Baseboard central air source heat pump",
7037
- "Baseboard district hot water"
7119
+ "ElectricBaseboard",
7120
+ "BoilerBaseboard",
7121
+ "ASHPBaseboard",
7122
+ "DHWBaseboard"
7038
7123
  ],
7039
7124
  "type": "string"
7040
7125
  },
@@ -7057,7 +7142,7 @@
7057
7142
  },
7058
7143
  "vintage": {
7059
7144
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
7060
- "default": "90.1-2013",
7145
+ "default": "ASHRAE_2013",
7061
7146
  "allOf": [
7062
7147
  {
7063
7148
  "$ref": "#/components/schemas/Vintages"
@@ -7073,7 +7158,7 @@
7073
7158
  },
7074
7159
  "equipment_type": {
7075
7160
  "description": "Text for the specific type of system equipment from the BaseboardEquipmentType enumeration.",
7076
- "default": "Baseboard electric",
7161
+ "default": "ElectricBaseboard",
7077
7162
  "allOf": [
7078
7163
  {
7079
7164
  "$ref": "#/components/schemas/BaseboardEquipmentType"
@@ -7090,13 +7175,13 @@
7090
7175
  "title": "EvaporativeCoolerEquipmentType",
7091
7176
  "description": "An enumeration.",
7092
7177
  "enum": [
7093
- "Direct evap coolers with baseboard electric",
7094
- "Direct evap coolers with baseboard gas boiler",
7095
- "Direct evap coolers with baseboard central air source heat pump",
7096
- "Direct evap coolers with baseboard district hot water",
7097
- "Direct evap coolers with forced air furnace",
7098
- "Direct evap coolers with gas unit heaters",
7099
- "Direct evap coolers with no heat"
7178
+ "EvapCoolers_ElectricBaseboard",
7179
+ "EvapCoolers_BoilerBaseboard",
7180
+ "EvapCoolers_ASHPBaseboard",
7181
+ "EvapCoolers_DHWBaseboard",
7182
+ "EvapCoolers_Furnace",
7183
+ "EvapCoolers_UnitHeaters",
7184
+ "EvapCoolers"
7100
7185
  ],
7101
7186
  "type": "string"
7102
7187
  },
@@ -7119,7 +7204,7 @@
7119
7204
  },
7120
7205
  "vintage": {
7121
7206
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
7122
- "default": "90.1-2013",
7207
+ "default": "ASHRAE_2013",
7123
7208
  "allOf": [
7124
7209
  {
7125
7210
  "$ref": "#/components/schemas/Vintages"
@@ -7135,7 +7220,7 @@
7135
7220
  },
7136
7221
  "equipment_type": {
7137
7222
  "description": "Text for the specific type of system equipment from the EvaporativeCoolerEquipmentType enumeration.",
7138
- "default": "Direct evap coolers with baseboard electric",
7223
+ "default": "EvapCoolers_ElectricBaseboard",
7139
7224
  "allOf": [
7140
7225
  {
7141
7226
  "$ref": "#/components/schemas/EvaporativeCoolerEquipmentType"
@@ -7152,15 +7237,15 @@
7152
7237
  "title": "ResidentialEquipmentType",
7153
7238
  "description": "An enumeration.",
7154
7239
  "enum": [
7155
- "Residential AC with baseboard electric",
7156
- "Residential AC with baseboard gas boiler",
7157
- "Residential AC with baseboard central air source heat pump",
7158
- "Residential AC with baseboard district hot water",
7159
- "Residential AC with residential forced air furnace",
7160
- "Residential AC with no heat",
7161
- "Residential heat pump",
7162
- "Residential heat pump with no cooling",
7163
- "Residential forced air furnace"
7240
+ "ResidentialAC_ElectricBaseboard",
7241
+ "ResidentialAC_BoilerBaseboard",
7242
+ "ResidentialAC_ASHPBaseboard",
7243
+ "ResidentialAC_DHWBaseboard",
7244
+ "ResidentialAC_ResidentialFurnace",
7245
+ "ResidentialAC",
7246
+ "ResidentialHP",
7247
+ "ResidentialHPNoCool",
7248
+ "ResidentialFurnace"
7164
7249
  ],
7165
7250
  "type": "string"
7166
7251
  },
@@ -7183,7 +7268,7 @@
7183
7268
  },
7184
7269
  "vintage": {
7185
7270
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
7186
- "default": "90.1-2013",
7271
+ "default": "ASHRAE_2013",
7187
7272
  "allOf": [
7188
7273
  {
7189
7274
  "$ref": "#/components/schemas/Vintages"
@@ -7199,7 +7284,7 @@
7199
7284
  },
7200
7285
  "equipment_type": {
7201
7286
  "description": "Text for the specific type of system equipment from the ResidentialEquipmentType enumeration.",
7202
- "default": "Residential AC with baseboard electric",
7287
+ "default": "ResidentialAC_ElectricBaseboard",
7203
7288
  "allOf": [
7204
7289
  {
7205
7290
  "$ref": "#/components/schemas/ResidentialEquipmentType"
@@ -7216,13 +7301,13 @@
7216
7301
  "title": "WindowACEquipmentType",
7217
7302
  "description": "An enumeration.",
7218
7303
  "enum": [
7219
- "Window AC with baseboard electric",
7220
- "Window AC with baseboard gas boiler",
7221
- "Window AC with baseboard central air source heat pump",
7222
- "Window AC with baseboard district hot water",
7223
- "Window AC with forced air furnace",
7224
- "Window AC with unit heaters",
7225
- "Window AC with no heat"
7304
+ "WindowAC_ElectricBaseboard",
7305
+ "WindowAC_BoilerBaseboard",
7306
+ "WindowAC_ASHPBaseboard",
7307
+ "WindowAC_DHWBaseboard",
7308
+ "WindowAC_Furnace",
7309
+ "WindowAC_GasHeaters",
7310
+ "WindowAC"
7226
7311
  ],
7227
7312
  "type": "string"
7228
7313
  },
@@ -7245,7 +7330,7 @@
7245
7330
  },
7246
7331
  "vintage": {
7247
7332
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
7248
- "default": "90.1-2013",
7333
+ "default": "ASHRAE_2013",
7249
7334
  "allOf": [
7250
7335
  {
7251
7336
  "$ref": "#/components/schemas/Vintages"
@@ -7261,7 +7346,7 @@
7261
7346
  },
7262
7347
  "equipment_type": {
7263
7348
  "description": "Text for the specific type of system equipment from the WindowACEquipmentType enumeration.",
7264
- "default": "Window AC with baseboard electric",
7349
+ "default": "WindowAC_ElectricBaseboard",
7265
7350
  "allOf": [
7266
7351
  {
7267
7352
  "$ref": "#/components/schemas/WindowACEquipmentType"
@@ -7278,7 +7363,7 @@
7278
7363
  "title": "GasUnitHeaterEquipmentType",
7279
7364
  "description": "An enumeration.",
7280
7365
  "enum": [
7281
- "Gas unit heaters"
7366
+ "GasHeaters"
7282
7367
  ],
7283
7368
  "type": "string"
7284
7369
  },
@@ -7301,7 +7386,7 @@
7301
7386
  },
7302
7387
  "vintage": {
7303
7388
  "description": "Text for the vintage of the template system. This will be used to set efficiencies for various pieces of equipment within the system. Further information about these defaults can be found in the version of ASHRAE 90.1 corresponding to the selected vintage. Read-only versions of the standard can be found at: https://www.ashrae.org/technical-resources/standards-and-guidelines/read-only-versions-of-ashrae-standards",
7304
- "default": "90.1-2013",
7389
+ "default": "ASHRAE_2013",
7305
7390
  "allOf": [
7306
7391
  {
7307
7392
  "$ref": "#/components/schemas/Vintages"
@@ -7317,7 +7402,7 @@
7317
7402
  },
7318
7403
  "equipment_type": {
7319
7404
  "description": "Text for the specific type of system equipment from the GasUnitHeaterEquipmentType enumeration.",
7320
- "default": "Gas unit heaters",
7405
+ "default": "GasHeaters",
7321
7406
  "allOf": [
7322
7407
  {
7323
7408
  "$ref": "#/components/schemas/GasUnitHeaterEquipmentType"
@@ -7489,7 +7574,7 @@
7489
7574
  },
7490
7575
  "radiant_fraction": {
7491
7576
  "title": "Radiant Fraction",
7492
- "description": "The radiant fraction of sensible heat released by people. The defaultvalue is 0.30.",
7577
+ "description": "The radiant fraction of sensible heat released by people. (Default: 0.3).",
7493
7578
  "default": 0.3,
7494
7579
  "minimum": 0,
7495
7580
  "maximum": 1,
@@ -7568,7 +7653,7 @@
7568
7653
  },
7569
7654
  "visible_fraction": {
7570
7655
  "title": "Visible Fraction",
7571
- "description": "The fraction of heat from lights that goes into the zone as visible (short-wave) radiation. The default value is `0.25`.",
7656
+ "description": "The fraction of heat from lights that goes into the zone as visible (short-wave) radiation. (Default: 0.25).",
7572
7657
  "default": 0.25,
7573
7658
  "minimum": 0,
7574
7659
  "maximum": 1,
@@ -7577,7 +7662,7 @@
7577
7662
  },
7578
7663
  "radiant_fraction": {
7579
7664
  "title": "Radiant Fraction",
7580
- "description": "The fraction of heat from lights that is long-wave radiation. Default value is `0.32`.",
7665
+ "description": "The fraction of heat from lights that is long-wave radiation. (Default: 0.32).",
7581
7666
  "default": 0.32,
7582
7667
  "minimum": 0,
7583
7668
  "maximum": 1,
@@ -7586,7 +7671,7 @@
7586
7671
  },
7587
7672
  "return_air_fraction": {
7588
7673
  "title": "Return Air Fraction",
7589
- "description": "The fraction of the heat from lights that goes into the zone return air. Default value is `0`.",
7674
+ "description": "The fraction of the heat from lights that goes into the zone return air. (Default: 0).",
7590
7675
  "default": 0.0,
7591
7676
  "minimum": 0,
7592
7677
  "maximum": 1,
@@ -11037,7 +11122,7 @@
11037
11122
  },
11038
11123
  "display_name": {
11039
11124
  "title": "Display Name",
11040
- "description": "Text string for a unique display name, used to set the default file name that the radiance asset is written to within a radiance folder. Must not contain spaces or special characters.",
11125
+ "description": "Display name of the object with no character restrictions.",
11041
11126
  "type": "string"
11042
11127
  },
11043
11128
  "room_identifier": {
@@ -11074,6 +11159,19 @@
11074
11159
  "$ref": "#/components/schemas/Mesh3D"
11075
11160
  }
11076
11161
  ]
11162
+ },
11163
+ "base_geometry": {
11164
+ "title": "Base Geometry",
11165
+ "description": "An optional array of Face3D used to represent the grid. There are no restrictions on how this property relates to the sensors and it is provided only to assist with the display of the grid when the number of sensors or the mesh is too large to be practically visualized.",
11166
+ "type": "array",
11167
+ "items": {
11168
+ "$ref": "#/components/schemas/Face3D"
11169
+ }
11170
+ },
11171
+ "group_identifier": {
11172
+ "title": "Group Identifier",
11173
+ "description": "An optional string to note the sensor grid group ' 'to which the sensor is a part of. Grids sharing the same ' 'group_identifier will be written to the same subfolder in Radiance ' 'folder (default: None).",
11174
+ "type": "string"
11077
11175
  }
11078
11176
  },
11079
11177
  "required": [
@@ -11140,7 +11238,7 @@
11140
11238
  },
11141
11239
  "display_name": {
11142
11240
  "title": "Display Name",
11143
- "description": "Text string for a unique display name, used to set the default file name that the radiance asset is written to within a radiance folder. Must not contain spaces or special characters.",
11241
+ "description": "Display name of the object with no character restrictions.",
11144
11242
  "type": "string"
11145
11243
  },
11146
11244
  "room_identifier": {
@@ -11214,6 +11312,11 @@
11214
11312
  "description": "View aft clip (-va) at a distance from the view point.Like the view fore plane, it will be perpendicular to the view direction for perspective and parallel view types. For fisheye view types, the clipping plane is actually a clipping sphere, centered on the view point with radius val.",
11215
11313
  "type": "number",
11216
11314
  "format": "double"
11315
+ },
11316
+ "group_identifier": {
11317
+ "title": "Group Identifier",
11318
+ "description": "An optional string to note the view group ' 'to which the sensor is a part of. Views sharing the same ' 'group_identifier will be written to the same subfolder in Radiance ' 'folder (default: None).",
11319
+ "type": "string"
11217
11320
  }
11218
11321
  },
11219
11322
  "required": [
@@ -11367,7 +11470,7 @@
11367
11470
  "version": {
11368
11471
  "title": "Version",
11369
11472
  "description": "Text string for the current version of the schema.",
11370
- "default": "1.39.12",
11473
+ "default": "1.42.2",
11371
11474
  "pattern": "([0-9]+)\\.([0-9]+)\\.([0-9]+)",
11372
11475
  "type": "string",
11373
11476
  "readOnly": true