honeybee-openstudio 0 → 1.8.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +5 -5
  2. data/.coveralls.yml +1 -0
  3. data/.gitignore +32 -33
  4. data/.releaserc.json +7 -7
  5. data/.travis.yml +41 -0
  6. data/Gemfile +18 -14
  7. data/LICENSE.md +23 -23
  8. data/README.md +95 -95
  9. data/Rakefile +21 -16
  10. data/doc_templates/LICENSE.md +23 -23
  11. data/doc_templates/copyright_erb.txt +31 -31
  12. data/doc_templates/copyright_js.txt +4 -4
  13. data/doc_templates/copyright_ruby.txt +29 -29
  14. data/honeybee-openstudio.gemspec +35 -38
  15. data/lib/files/Honeybee.rb +112 -112
  16. data/lib/files/honeybee_workflow.osw +47 -47
  17. data/lib/files/urbanopt_Gemfile +32 -32
  18. data/lib/{honeybee/_defaults → from_honeybee/_openapi}/model.json +8126 -11310
  19. data/lib/{honeybee/_defaults → from_honeybee/_openapi}/simulation-parameter.json +842 -972
  20. data/lib/{to_openstudio → from_honeybee}/construction/air.rb +65 -56
  21. data/lib/{to_openstudio → from_honeybee}/construction/opaque.rb +77 -67
  22. data/lib/{to_openstudio → from_honeybee}/construction/shade.rb +108 -99
  23. data/lib/{to_openstudio → from_honeybee}/construction/window.rb +80 -70
  24. data/lib/{to_openstudio → from_honeybee}/construction_set.rb +278 -266
  25. data/lib/{honeybee → from_honeybee}/extension.rb +109 -129
  26. data/lib/{to_openstudio → from_honeybee}/geometry/aperture.rb +167 -157
  27. data/lib/{to_openstudio → from_honeybee}/geometry/door.rb +160 -150
  28. data/lib/{to_openstudio → from_honeybee}/geometry/face.rb +163 -178
  29. data/lib/{to_openstudio → from_honeybee}/geometry/room.rb +392 -442
  30. data/lib/{to_openstudio → from_honeybee}/geometry/shade.rb +89 -79
  31. data/lib/{to_openstudio → from_honeybee}/hvac/ideal_air.rb +150 -141
  32. data/lib/{to_openstudio → from_honeybee}/load/electric_equipment.rb +96 -87
  33. data/lib/{to_openstudio → from_honeybee}/load/gas_equipment.rb +97 -88
  34. data/lib/{to_openstudio → from_honeybee}/load/infiltration.rb +94 -85
  35. data/lib/{to_openstudio → from_honeybee}/load/lighting.rb +98 -89
  36. data/lib/{to_openstudio → from_honeybee}/load/people.rb +100 -91
  37. data/lib/{to_openstudio → from_honeybee}/load/setpoint_humidistat.rb +75 -66
  38. data/lib/{to_openstudio → from_honeybee}/load/setpoint_thermostat.rb +71 -62
  39. data/lib/{to_openstudio → from_honeybee}/load/ventilation.rb +96 -87
  40. data/lib/{to_openstudio → from_honeybee}/material/opaque.rb +94 -85
  41. data/lib/{to_openstudio → from_honeybee}/material/opaque_no_mass.rb +94 -85
  42. data/lib/{to_openstudio → from_honeybee}/material/window_blind.rb +238 -229
  43. data/lib/{to_openstudio → from_honeybee}/material/window_gas.rb +76 -67
  44. data/lib/{to_openstudio → from_honeybee}/material/window_gas_custom.rb +118 -108
  45. data/lib/{to_openstudio → from_honeybee}/material/window_gas_mixture.rb +79 -70
  46. data/lib/{to_openstudio → from_honeybee}/material/window_glazing.rb +166 -157
  47. data/lib/{to_openstudio → from_honeybee}/material/window_shade.rb +160 -151
  48. data/lib/{to_openstudio → from_honeybee}/material/window_simpleglazsys.rb +73 -64
  49. data/lib/from_honeybee/model.rb +434 -0
  50. data/lib/{honeybee → from_honeybee}/model_object.rb +110 -108
  51. data/lib/{to_openstudio → from_honeybee}/program_type.rb +124 -104
  52. data/lib/{to_openstudio → from_honeybee}/schedule/fixed_interval.rb +115 -105
  53. data/lib/{to_openstudio → from_honeybee}/schedule/ruleset.rb +164 -164
  54. data/lib/{to_openstudio → from_honeybee}/schedule/type_limit.rb +88 -76
  55. data/lib/{to_openstudio/simulation/design_day.rb → from_honeybee/simulation/designday.rb} +105 -96
  56. data/lib/{honeybee/load/lighting.rb → from_honeybee/simulation/extension.rb} +46 -43
  57. data/lib/{to_openstudio/simulation/parameter_model.rb → from_honeybee/simulation/parameter.rb} +277 -243
  58. data/lib/{honeybee/simulation/design_day.rb → from_honeybee/version.rb} +34 -42
  59. data/lib/{honeybee.rb → from_honeybee.rb} +86 -93
  60. data/lib/measures/from_honeybee_model/LICENSE.md +27 -23
  61. data/lib/measures/from_honeybee_model/README.md +32 -32
  62. data/lib/measures/from_honeybee_model/measure.rb +91 -91
  63. data/lib/measures/from_honeybee_model/measure.xml +103 -80
  64. data/lib/measures/from_honeybee_model/tests/from_honeybee_model_test.rb +126 -126
  65. data/lib/measures/from_honeybee_simulation_parameter/LICENSE.md +27 -23
  66. data/lib/measures/from_honeybee_simulation_parameter/README.md +32 -32
  67. data/lib/measures/from_honeybee_simulation_parameter/measure.rb +95 -95
  68. data/lib/measures/from_honeybee_simulation_parameter/measure.xml +91 -86
  69. data/lib/measures/from_honeybee_simulation_parameter/tests/from_honeybee_simulation_parameter_test.rb +109 -109
  70. metadata +89 -147
  71. data/.github/workflows/ci.yaml +0 -88
  72. data/doc_templates/README.md.erb +0 -42
  73. data/lib/from_openstudio/geometry/aperture.rb +0 -136
  74. data/lib/from_openstudio/geometry/door.rb +0 -136
  75. data/lib/from_openstudio/geometry/face.rb +0 -174
  76. data/lib/from_openstudio/geometry/room.rb +0 -121
  77. data/lib/from_openstudio/geometry/shade.rb +0 -87
  78. data/lib/from_openstudio/model.rb +0 -123
  79. data/lib/from_openstudio/model_object.rb +0 -43
  80. data/lib/from_openstudio/simulation/design_day.rb +0 -123
  81. data/lib/from_openstudio/simulation/parameter_model.rb +0 -93
  82. data/lib/from_openstudio/simulation/simulation_output.rb +0 -67
  83. data/lib/from_openstudio.rb +0 -49
  84. data/lib/honeybee/_defaults/energy_default.json +0 -1682
  85. data/lib/honeybee/construction/air.rb +0 -42
  86. data/lib/honeybee/construction/opaque.rb +0 -42
  87. data/lib/honeybee/construction/shade.rb +0 -42
  88. data/lib/honeybee/construction/window.rb +0 -51
  89. data/lib/honeybee/construction/windowshade.rb +0 -43
  90. data/lib/honeybee/construction_set.rb +0 -42
  91. data/lib/honeybee/geometry/aperture.rb +0 -42
  92. data/lib/honeybee/geometry/door.rb +0 -42
  93. data/lib/honeybee/geometry/face.rb +0 -48
  94. data/lib/honeybee/geometry/room.rb +0 -56
  95. data/lib/honeybee/geometry/shade.rb +0 -42
  96. data/lib/honeybee/hvac/ideal_air.rb +0 -42
  97. data/lib/honeybee/hvac/template.rb +0 -73
  98. data/lib/honeybee/load/electric_equipment.rb +0 -42
  99. data/lib/honeybee/load/gas_equipment.rb +0 -42
  100. data/lib/honeybee/load/infiltration.rb +0 -42
  101. data/lib/honeybee/load/people.rb +0 -42
  102. data/lib/honeybee/load/setpoint_humidistat.rb +0 -46
  103. data/lib/honeybee/load/setpoint_thermostat.rb +0 -46
  104. data/lib/honeybee/load/ventilation.rb +0 -42
  105. data/lib/honeybee/material/opaque.rb +0 -42
  106. data/lib/honeybee/material/opaque_no_mass.rb +0 -42
  107. data/lib/honeybee/material/window_blind.rb +0 -42
  108. data/lib/honeybee/material/window_gas.rb +0 -42
  109. data/lib/honeybee/material/window_gas_custom.rb +0 -42
  110. data/lib/honeybee/material/window_gas_mixture.rb +0 -42
  111. data/lib/honeybee/material/window_glazing.rb +0 -42
  112. data/lib/honeybee/material/window_shade.rb +0 -42
  113. data/lib/honeybee/material/window_simpleglazsys.rb +0 -42
  114. data/lib/honeybee/model.rb +0 -87
  115. data/lib/honeybee/program_type.rb +0 -56
  116. data/lib/honeybee/schedule/fixed_interval.rb +0 -42
  117. data/lib/honeybee/schedule/ruleset.rb +0 -42
  118. data/lib/honeybee/schedule/type_limit.rb +0 -42
  119. data/lib/honeybee/simulation/parameter_model.rb +0 -86
  120. data/lib/honeybee/simulation/simulation_output.rb +0 -42
  121. data/lib/honeybee/ventcool/control.rb +0 -42
  122. data/lib/honeybee/ventcool/opening.rb +0 -46
  123. data/lib/honeybee/ventcool/simulation.rb +0 -42
  124. data/lib/to_openstudio/construction/windowshade.rb +0 -196
  125. data/lib/to_openstudio/hvac/Model.hvac.rb +0 -641
  126. data/lib/to_openstudio/hvac/template.rb +0 -169
  127. data/lib/to_openstudio/model.rb +0 -497
  128. data/lib/to_openstudio/model_object.rb +0 -52
  129. data/lib/to_openstudio/ventcool/control.rb +0 -185
  130. data/lib/to_openstudio/ventcool/opening.rb +0 -189
  131. data/lib/to_openstudio/ventcool/simulation.rb +0 -101
  132. data/lib/to_openstudio.rb +0 -92
@@ -1,64 +1,73 @@
1
- # *******************************************************************************
2
- # Honeybee OpenStudio Gem, Copyright (c) 2020, Alliance for Sustainable
3
- # Energy, LLC, Ladybug Tools LLC and other contributors. All rights reserved.
4
- #
5
- # Redistribution and use in source and binary forms, with or without
6
- # modification, are permitted provided that the following conditions are met:
7
- #
8
- # (1) Redistributions of source code must retain the above copyright notice,
9
- # this list of conditions and the following disclaimer.
10
- #
11
- # (2) Redistributions in binary form must reproduce the above copyright notice,
12
- # this list of conditions and the following disclaimer in the documentation
13
- # and/or other materials provided with the distribution.
14
- #
15
- # (3) Neither the name of the copyright holder nor the names of any contributors
16
- # may be used to endorse or promote products derived from this software without
17
- # specific prior written permission from the respective party.
18
- #
19
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
20
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21
- # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
- # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
23
- # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
24
- # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25
- # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
26
- # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
- # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
- # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
- # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
- # *******************************************************************************
31
-
32
- require 'honeybee/material/window_simpleglazsys'
33
-
34
- require 'to_openstudio/model_object'
35
-
36
- module Honeybee
37
- class EnergyWindowMaterialSimpleGlazSys
38
-
39
- def find_existing_openstudio_object(openstudio_model)
40
- object = openstudio_model.getSimpleGlazingByName(@hash[:identifier])
41
- return object.get if object.is_initialized
42
- nil
43
- end
44
-
45
- def to_openstudio(openstudio_model)
46
- # create simple glazing openstudio object
47
- os_simple_glazing = OpenStudio::Model::SimpleGlazing.new(openstudio_model)
48
- os_simple_glazing.setName(@hash[:identifier])
49
- os_simple_glazing.setUFactor(@hash[:u_factor])
50
- os_simple_glazing.setSolarHeatGainCoefficient(@hash[:shgc])
51
-
52
- # assign visible transmittance
53
- if @hash[:vt]
54
- os_simple_glazing.setVisibleTransmittance(@hash[:vt])
55
- else
56
- os_simple_glazing.setVisibleTransmittance(defaults[:vt][:default])
57
- end
58
-
59
- os_simple_glazing
60
- end
61
-
62
-
63
- end # EnergyWindowMaterialSimpleGlazSys
64
- end # Honeybee
1
+ # *******************************************************************************
2
+ # Honeybee OpenStudio Gem, Copyright (c) 2020, Alliance for Sustainable
3
+ # Energy, LLC, Ladybug Tools LLC and other contributors. All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without
6
+ # modification, are permitted provided that the following conditions are met:
7
+ #
8
+ # (1) Redistributions of source code must retain the above copyright notice,
9
+ # this list of conditions and the following disclaimer.
10
+ #
11
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
12
+ # this list of conditions and the following disclaimer in the documentation
13
+ # and/or other materials provided with the distribution.
14
+ #
15
+ # (3) Neither the name of the copyright holder nor the names of any contributors
16
+ # may be used to endorse or promote products derived from this software without
17
+ # specific prior written permission from the respective party.
18
+ #
19
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
20
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
23
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
24
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
26
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+ # *******************************************************************************
31
+
32
+ require 'from_honeybee/model_object'
33
+
34
+ require 'openstudio'
35
+
36
+ module FromHoneybee
37
+ class EnergyWindowMaterialSimpleGlazSys < ModelObject
38
+ attr_reader :errors, :warnings
39
+
40
+ def initialize(hash = {})
41
+ super(hash)
42
+ end
43
+
44
+ def defaults
45
+ @@schema[:components][:schemas][:EnergyWindowMaterialSimpleGlazSys][:properties]
46
+ end
47
+
48
+ def find_existing_openstudio_object(openstudio_model)
49
+ object = openstudio_model.getSimpleGlazingByName(@hash[:identifier])
50
+ return object.get if object.is_initialized
51
+ nil
52
+ end
53
+
54
+ def to_openstudio(openstudio_model)
55
+ # create simple glazing openstudio object
56
+ os_simple_glazing = OpenStudio::Model::SimpleGlazing.new(openstudio_model)
57
+ os_simple_glazing.setName(@hash[:identifier])
58
+ os_simple_glazing.setUFactor(@hash[:u_factor])
59
+ os_simple_glazing.setSolarHeatGainCoefficient(@hash[:shgc])
60
+
61
+ # assign visible transmittance
62
+ if @hash[:vt]
63
+ os_simple_glazing.setVisibleTransmittance(@hash[:vt])
64
+ else
65
+ os_simple_glazing.setVisibleTransmittance(defaults[:vt][:default])
66
+ end
67
+
68
+ os_simple_glazing
69
+ end
70
+
71
+
72
+ end # EnergyWindowMaterialSimpleGlazSys
73
+ end # FromHoneybee
@@ -0,0 +1,434 @@
1
+ # *******************************************************************************
2
+ # Honeybee OpenStudio Gem, Copyright (c) 2020, Alliance for Sustainable
3
+ # Energy, LLC, Ladybug Tools LLC and other contributors. All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without
6
+ # modification, are permitted provided that the following conditions are met:
7
+ #
8
+ # (1) Redistributions of source code must retain the above copyright notice,
9
+ # this list of conditions and the following disclaimer.
10
+ #
11
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
12
+ # this list of conditions and the following disclaimer in the documentation
13
+ # and/or other materials provided with the distribution.
14
+ #
15
+ # (3) Neither the name of the copyright holder nor the names of any contributors
16
+ # may be used to endorse or promote products derived from this software without
17
+ # specific prior written permission from the respective party.
18
+ #
19
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
20
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
23
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
24
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
26
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
+ # *******************************************************************************
31
+
32
+ # import the core objects from which everything inherits
33
+ require 'from_honeybee/extension'
34
+ require 'from_honeybee/model_object'
35
+
36
+ # import the compound objects that house the other objects
37
+ require 'from_honeybee/construction_set'
38
+ require 'from_honeybee/program_type'
39
+
40
+ # import the geometry objects
41
+ require 'from_honeybee/geometry/shade'
42
+ require 'from_honeybee/geometry/door'
43
+ require 'from_honeybee/geometry/aperture'
44
+ require 'from_honeybee/geometry/face'
45
+ require 'from_honeybee/geometry/room'
46
+
47
+ # import the HVAC objects
48
+ require 'from_honeybee/hvac/ideal_air'
49
+
50
+ # import the construction objects
51
+ require 'from_honeybee/construction/opaque'
52
+ require 'from_honeybee/construction/window'
53
+ require 'from_honeybee/construction/shade'
54
+ require 'from_honeybee/construction/air'
55
+
56
+ # import the material objects
57
+ require 'from_honeybee/material/opaque'
58
+ require 'from_honeybee/material/opaque_no_mass'
59
+ require 'from_honeybee/material/window_gas'
60
+ require 'from_honeybee/material/window_gas_mixture'
61
+ require 'from_honeybee/material/window_gas_custom'
62
+ require 'from_honeybee/material/window_blind'
63
+ require 'from_honeybee/material/window_glazing'
64
+ require 'from_honeybee/material/window_shade'
65
+ require 'from_honeybee/material/window_simpleglazsys'
66
+
67
+ # import the schedule objects
68
+ require 'from_honeybee/schedule/type_limit'
69
+ require 'from_honeybee/schedule/fixed_interval'
70
+ require 'from_honeybee/schedule/ruleset'
71
+
72
+ # import the load objects
73
+ require 'from_honeybee/load/setpoint_thermostat'
74
+ require 'from_honeybee/load/setpoint_humidistat'
75
+
76
+ require 'openstudio'
77
+
78
+
79
+ module FromHoneybee
80
+ class Model
81
+ attr_reader :errors, :warnings
82
+
83
+ # Read Ladybug Energy Model JSON from disk
84
+ def self.read_from_disk(file)
85
+ hash = nil
86
+ File.open(File.join(file), 'r') do |f|
87
+ hash = JSON.parse(f.read, symbolize_names: true)
88
+ end
89
+ Model.new(hash)
90
+ end
91
+
92
+ # Load ModelObject from symbolized hash
93
+ def initialize(hash)
94
+ # initialize class variable @@extension only once
95
+ @@extension ||= Extension.new
96
+ @@schema ||= @@extension.schema
97
+
98
+ @hash = hash
99
+ @type = @hash[:type]
100
+ raise 'Unknown model type' if @type.nil?
101
+ raise "Incorrect model type '#{@type}'" unless @type == 'Model'
102
+
103
+ end
104
+
105
+ # check if the model is valid
106
+ def valid?
107
+ if Gem.loaded_specs.has_key?("json-schema")
108
+ return validation_errors.empty?
109
+ else
110
+ return true
111
+ end
112
+ end
113
+
114
+ # return detailed model validation errors
115
+ def validation_errors
116
+ if Gem.loaded_specs.has_key?("json-schema")
117
+ require 'json-schema'
118
+ JSON::Validator.fully_validate(@@schema, @hash)
119
+ end
120
+ end
121
+
122
+ def defaults
123
+ @@schema[:components][:schemas][:ModelEnergyProperties][:properties]
124
+ end
125
+
126
+ # convert to openstudio model, clears errors and warnings
127
+ def to_openstudio_model(openstudio_model=nil, log_report=true)
128
+ @errors = []
129
+ @warnings = []
130
+
131
+ if log_report
132
+ puts 'Starting Model translation from Honeybee to OpenStudio'
133
+ end
134
+
135
+ @openstudio_model = if openstudio_model
136
+ openstudio_model
137
+ else
138
+ OpenStudio::Model::Model.new
139
+ end
140
+
141
+ # create all openstudio objects in the model
142
+ create_openstudio_objects(log_report)
143
+
144
+ if log_report
145
+ puts 'Done with Model translation!'
146
+ end
147
+
148
+ @openstudio_model
149
+ end
150
+
151
+ private
152
+
153
+ # create OpenStudio objects in the OpenStudio model
154
+ def create_openstudio_objects(log_report=true)
155
+ # assign a standards building type so that David's measures can run
156
+ building = @openstudio_model.getBuilding
157
+ building.setStandardsBuildingType('MediumOffice')
158
+
159
+ # create all of the non-geometric model elements
160
+ if log_report
161
+ puts 'Translating Materials'
162
+ end
163
+ create_materials
164
+
165
+ if log_report
166
+ puts 'Translating Constructions'
167
+ end
168
+ create_constructions
169
+
170
+ if log_report
171
+ puts 'Translating ConstructionSets'
172
+ end
173
+ create_construction_set
174
+ create_global_construction_set
175
+
176
+ if log_report
177
+ puts 'Translating Schedules'
178
+ end
179
+ create_schedule_type_limits
180
+ create_schedules
181
+
182
+ if log_report
183
+ puts 'Translating ProgramTypes'
184
+ end
185
+ create_program_types
186
+
187
+ # create all of the model geometry
188
+ if log_report
189
+ puts 'Translating Room Geometry'
190
+ end
191
+ create_rooms
192
+
193
+ if log_report
194
+ puts 'Translating Context Shade Geometry'
195
+ end
196
+ create_orphaned_shades
197
+ create_orphaned_faces
198
+ create_orphaned_apertures
199
+ create_orphaned_doors
200
+
201
+ # create the hvac systems
202
+ if log_report
203
+ puts 'Translating HVAC Systems'
204
+ end
205
+ create_hvacs
206
+ end
207
+
208
+ def create_materials
209
+ @hash[:properties][:energy][:materials].each do |material|
210
+ material_type = material[:type]
211
+
212
+ case material_type
213
+ when 'EnergyMaterial'
214
+ material_object = EnergyMaterial.new(material)
215
+ when 'EnergyMaterialNoMass'
216
+ material_object = EnergyMaterialNoMass.new(material)
217
+ when 'EnergyWindowMaterialGas'
218
+ material_object = EnergyWindowMaterialGas.new(material)
219
+ when 'EnergyWindowMaterialGasCustom'
220
+ material_object = EnergyWindowMaterialGasCustom.new(material)
221
+ when 'EnergyWindowMaterialSimpleGlazSys'
222
+ material_object = EnergyWindowMaterialSimpleGlazSys.new(material)
223
+ when 'EnergyWindowMaterialBlind'
224
+ material_object = EnergyWindowMaterialBlind.new(material)
225
+ when 'EnergyWindowMaterialGlazing'
226
+ material_object = EnergyWindowMaterialGlazing.new(material)
227
+ when 'EnergyWindowMaterialShade'
228
+ material_object = EnergyWindowMaterialShade.new(material)
229
+ else
230
+ raise "Unknown material type #{material_type}"
231
+ end
232
+ material_object.to_openstudio(@openstudio_model)
233
+ end
234
+ end
235
+
236
+ def create_constructions
237
+ $air_boundary_hash = Hash.new # hash to track any air boundary constructions
238
+
239
+ @hash[:properties][:energy][:constructions].each do |construction|
240
+ identifier = construction[:identifier]
241
+ construction_type = construction[:type]
242
+
243
+ case construction_type
244
+ when 'OpaqueConstructionAbridged'
245
+ construction_object = OpaqueConstructionAbridged.new(construction)
246
+ when 'WindowConstructionAbridged'
247
+ construction_object = WindowConstructionAbridged.new(construction)
248
+ when 'ShadeConstruction'
249
+ construction_object = ShadeConstruction.new(construction)
250
+ when 'AirBoundaryConstructionAbridged'
251
+ construction_object = AirBoundaryConstructionAbridged.new(construction)
252
+ $air_boundary_hash[construction[:identifier]] = construction
253
+ else
254
+ raise "Unknown construction type #{construction_type}."
255
+ end
256
+ construction_object.to_openstudio(@openstudio_model)
257
+ end
258
+ end
259
+
260
+ def create_construction_set
261
+ if @hash[:properties][:energy][:construction_sets]
262
+ @hash[:properties][:energy][:construction_sets].each do |construction_set|
263
+ construction_set_object = ConstructionSetAbridged.new(construction_set)
264
+ construction_set_object.to_openstudio(@openstudio_model)
265
+ end
266
+ end
267
+ end
268
+
269
+ def create_global_construction_set
270
+ if @hash[:properties][:energy][:global_construction_set]
271
+ construction_id = @hash[:properties][:energy][:global_construction_set]
272
+ construction = @openstudio_model.getDefaultConstructionSetByName(construction_id)
273
+ unless construction.empty?
274
+ openstudio_construction = construction.get
275
+ end
276
+ @openstudio_model.getBuilding.setDefaultConstructionSet(openstudio_construction)
277
+ end
278
+ end
279
+
280
+ def create_schedule_type_limits
281
+ if @hash[:properties][:energy][:schedule_type_limits]
282
+ @hash[:properties][:energy][:schedule_type_limits].each do |schedule_type_limit|
283
+ schedule_type_limit_object = ScheduleTypeLimit.new(schedule_type_limit)
284
+ schedule_type_limit_object.to_openstudio(@openstudio_model)
285
+ end
286
+ end
287
+ end
288
+
289
+ def create_schedules
290
+ if @hash[:properties][:energy][:schedules]
291
+ @hash[:properties][:energy][:schedules].each do |schedule|
292
+ schedule_type = schedule[:type]
293
+
294
+ case schedule_type
295
+ when 'ScheduleRulesetAbridged'
296
+ schedule_object = ScheduleRulesetAbridged.new(schedule)
297
+ when 'ScheduleFixedIntervalAbridged'
298
+ schedule_object = ScheduleFixedIntervalAbridged.new(schedule)
299
+ else
300
+ raise("Unknown schedule type #{schedule_type}.")
301
+ end
302
+ schedule_object.to_openstudio(@openstudio_model)
303
+
304
+ end
305
+ end
306
+ end
307
+
308
+ def create_program_types
309
+ if @hash[:properties][:energy][:program_types]
310
+ $programtype_setpoint_hash = Hash.new # hash to track Setpoint objects
311
+ @hash[:properties][:energy][:program_types].each do |space_type|
312
+ space_type_object = ProgramTypeAbridged.new(space_type)
313
+ space_type_object.to_openstudio(@openstudio_model)
314
+ end
315
+ end
316
+ end
317
+
318
+ def create_rooms
319
+ if @hash[:rooms]
320
+ $air_mxing_array = [] # list to track any air mixing between Rooms
321
+
322
+ @hash[:rooms].each do |room|
323
+ room_object = Room.new(room)
324
+ openstudio_room = room_object.to_openstudio(@openstudio_model)
325
+
326
+ # for rooms with setpoint objects definied in the ProgramType, make a new thermostat
327
+ if room[:properties][:energy][:program_type] && !room[:properties][:energy][:setpoint]
328
+ thermal_zone = openstudio_room.thermalZone()
329
+ unless thermal_zone.empty?
330
+ thermal_zone_object = thermal_zone.get
331
+ program_type_id = room[:properties][:energy][:program_type]
332
+ setpoint_hash = $programtype_setpoint_hash[program_type_id]
333
+ if not setpoint_hash.nil? # program type has no setpoint
334
+ thermostat_object = SetpointThermostat.new(setpoint_hash)
335
+ openstudio_thermostat = thermostat_object.to_openstudio(@openstudio_model)
336
+ thermal_zone_object.setThermostatSetpointDualSetpoint(openstudio_thermostat)
337
+ if setpoint_hash[:humidifying_schedule] or setpoint_hash[:dehumidifying_schedule]
338
+ humidistat_object = ZoneControlHumidistat.new(setpoint_hash)
339
+ openstudio_humidistat = humidistat_object.to_openstudio(@openstudio_model)
340
+ thermal_zone_object.setZoneControlHumidistat(openstudio_humidistat)
341
+ end
342
+ end
343
+ end
344
+ end
345
+ end
346
+
347
+ # Create mixing objects between Rooms
348
+ $air_mxing_array.each do |air_mix_props|
349
+ zone_mixing = OpenStudio::Model::ZoneMixing.new(air_mix_props[0])
350
+ zone_mixing.setDesignFlowRate(air_mix_props[1])
351
+ flow_sch_ref = @openstudio_model.getScheduleByName(air_mix_props[2])
352
+ unless flow_sch_ref.empty?
353
+ flow_sched = flow_sch_ref.get
354
+ zone_mixing.setSchedule(flow_sched)
355
+ end
356
+ source_zone_ref = @openstudio_model.getThermalZoneByName(air_mix_props[3])
357
+ unless source_zone_ref.empty?
358
+ source_zone = source_zone_ref.get
359
+ zone_mixing.setSourceZone(source_zone)
360
+ end
361
+ end
362
+ end
363
+ end
364
+
365
+
366
+ def create_orphaned_shades
367
+ if @hash[:orphaned_shades]
368
+ shading_surface_group = OpenStudio::Model::ShadingSurfaceGroup.new(@openstudio_model)
369
+ shading_surface_group.setShadingSurfaceType('Building')
370
+ @hash[:orphaned_shades].each do |shade|
371
+ shade_object = Shade.new(shade)
372
+ openstudio_shade = shade_object.to_openstudio(@openstudio_model)
373
+ openstudio_shade.setShadingSurfaceGroup(shading_surface_group)
374
+ end
375
+ end
376
+ end
377
+
378
+ def create_orphaned_faces
379
+ if @hash[:orphaned_faces]
380
+ raise "Orphaned Faces are not translatable to OpenStudio."
381
+ end
382
+ end
383
+
384
+ def create_orphaned_apertures
385
+ if @hash[:orphaned_apertures]
386
+ raise "Orphaned Apertures are not translatable to OpenStudio."
387
+ end
388
+ end
389
+
390
+ def create_orphaned_doors
391
+ if @hash[:orphaned_doors]
392
+ raise "Orphaned Doors are not translatable to OpenStudio."
393
+ end
394
+ end
395
+
396
+ def create_hvacs
397
+ if @hash[:properties][:energy][:hvacs]
398
+ # gather all of the hashes of the HVACs
399
+ hvac_hashes = Hash.new
400
+ @hash[:properties][:energy][:hvacs].each do |hvac|
401
+ hvac_hashes[hvac[:identifier]] = hvac
402
+ hvac_hashes[hvac[:identifier]]['rooms'] = []
403
+ end
404
+ # loop through the rooms and trach which are assigned to each HVAC
405
+ if @hash[:rooms]
406
+ @hash[:rooms].each do |room|
407
+ if room[:properties][:energy][:hvac]
408
+ hvac_hashes[room[:properties][:energy][:hvac]]['rooms'] << room[:identifier]
409
+ end
410
+ end
411
+ end
412
+
413
+ hvac_hashes.each_value do |hvac|
414
+ system_type = hvac[:type]
415
+ case system_type
416
+ when 'IdealAirSystemAbridged'
417
+ ideal_air_system = IdealAirSystemAbridged.new(hvac)
418
+ os_ideal_air_system = ideal_air_system.to_openstudio(@openstudio_model)
419
+ hvac['rooms'].each do |room_id|
420
+ zone_get = @openstudio_model.getThermalZoneByName(room_id)
421
+ unless zone_get.empty?
422
+ os_thermal_zone = zone_get.get
423
+ os_ideal_air_system.addToThermalZone(os_thermal_zone)
424
+ end
425
+ end
426
+ end
427
+ end
428
+ end
429
+ end
430
+
431
+ #TODO: create runlog for errors.
432
+
433
+ end # Model
434
+ end # FromHoneybee