buildingsync 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/continuous_integration.yml +146 -0
  3. data/.gitignore +33 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +10 -0
  6. data/CHANGELOG.md +50 -0
  7. data/Gemfile +31 -0
  8. data/Jenkinsfile +10 -0
  9. data/LICENSE.md +29 -0
  10. data/README.md +105 -0
  11. data/Rakefile +77 -0
  12. data/bin/console +15 -0
  13. data/bin/setup +8 -0
  14. data/buildingsync.gemspec +37 -0
  15. data/config.rb.in +26 -0
  16. data/doc_templates/LICENSE.md +29 -0
  17. data/doc_templates/README.md.erb +42 -0
  18. data/doc_templates/copyright_erb.txt +38 -0
  19. data/doc_templates/copyright_js.txt +5 -0
  20. data/doc_templates/copyright_ruby.txt +36 -0
  21. data/lib/buildingsync.rb +43 -0
  22. data/lib/buildingsync/all_resource_total.rb +54 -0
  23. data/lib/buildingsync/audit_date.rb +54 -0
  24. data/lib/buildingsync/constants.rb +49 -0
  25. data/lib/buildingsync/contact.rb +54 -0
  26. data/lib/buildingsync/extension.rb +57 -0
  27. data/lib/buildingsync/generator.rb +584 -0
  28. data/lib/buildingsync/get_bcl_weather_file.rb +326 -0
  29. data/lib/buildingsync/helpers/Model.hvac.rb +216 -0
  30. data/lib/buildingsync/helpers/helper.rb +494 -0
  31. data/lib/buildingsync/helpers/xml_get_set.rb +215 -0
  32. data/lib/buildingsync/makers/phase_zero_base.osw +178 -0
  33. data/lib/buildingsync/makers/workflow_maker.json +811 -0
  34. data/lib/buildingsync/makers/workflow_maker.rb +581 -0
  35. data/lib/buildingsync/makers/workflow_maker_base.rb +167 -0
  36. data/lib/buildingsync/model_articulation/building.rb +1119 -0
  37. data/lib/buildingsync/model_articulation/building_and_system_types.json +121 -0
  38. data/lib/buildingsync/model_articulation/building_section.rb +190 -0
  39. data/lib/buildingsync/model_articulation/building_system.rb +49 -0
  40. data/lib/buildingsync/model_articulation/envelope_system.rb +102 -0
  41. data/lib/buildingsync/model_articulation/exterior_floor_system_type.rb +64 -0
  42. data/lib/buildingsync/model_articulation/facility.rb +439 -0
  43. data/lib/buildingsync/model_articulation/foundation_system_type.rb +64 -0
  44. data/lib/buildingsync/model_articulation/hvac_system.rb +395 -0
  45. data/lib/buildingsync/model_articulation/lighting_system.rb +102 -0
  46. data/lib/buildingsync/model_articulation/loads_system.rb +287 -0
  47. data/lib/buildingsync/model_articulation/location_element.rb +129 -0
  48. data/lib/buildingsync/model_articulation/measure.rb +57 -0
  49. data/lib/buildingsync/model_articulation/roof_system_type.rb +64 -0
  50. data/lib/buildingsync/model_articulation/service_hot_water_system.rb +87 -0
  51. data/lib/buildingsync/model_articulation/site.rb +242 -0
  52. data/lib/buildingsync/model_articulation/spatial_element.rb +343 -0
  53. data/lib/buildingsync/model_articulation/wall_system_type.rb +64 -0
  54. data/lib/buildingsync/report.rb +217 -0
  55. data/lib/buildingsync/resource_use.rb +55 -0
  56. data/lib/buildingsync/scenario.rb +622 -0
  57. data/lib/buildingsync/selection_tool.rb +98 -0
  58. data/lib/buildingsync/time_series.rb +85 -0
  59. data/lib/buildingsync/translator.rb +167 -0
  60. data/lib/buildingsync/utility.rb +67 -0
  61. data/lib/buildingsync/version.rb +45 -0
  62. metadata +223 -0
metadata ADDED
@@ -0,0 +1,223 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: buildingsync
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Nicholas Long
8
+ - Dan Macumber
9
+ - Katherine Fleming
10
+ autorequire:
11
+ bindir: exe
12
+ cert_chain: []
13
+ date: 2021-01-28 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bundler
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - "~>"
20
+ - !ruby/object:Gem::Version
21
+ version: '2.1'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '2.1'
29
+ - !ruby/object:Gem::Dependency
30
+ name: openstudio-common-measures
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - "~>"
34
+ - !ruby/object:Gem::Version
35
+ version: 0.2.1
36
+ type: :runtime
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: 0.2.1
43
+ - !ruby/object:Gem::Dependency
44
+ name: openstudio-ee
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: 0.2.1
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - "~>"
55
+ - !ruby/object:Gem::Version
56
+ version: 0.2.1
57
+ - !ruby/object:Gem::Dependency
58
+ name: openstudio-extension
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: 0.2.6
64
+ type: :runtime
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: 0.2.6
71
+ - !ruby/object:Gem::Dependency
72
+ name: openstudio-model-articulation
73
+ requirement: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - "~>"
76
+ - !ruby/object:Gem::Version
77
+ version: 0.2.1
78
+ type: :runtime
79
+ prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - "~>"
83
+ - !ruby/object:Gem::Version
84
+ version: 0.2.1
85
+ - !ruby/object:Gem::Dependency
86
+ name: openstudio-standards
87
+ requirement: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - "~>"
90
+ - !ruby/object:Gem::Version
91
+ version: 0.2.11
92
+ type: :runtime
93
+ prerelease: false
94
+ version_requirements: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - "~>"
97
+ - !ruby/object:Gem::Version
98
+ version: 0.2.11
99
+ - !ruby/object:Gem::Dependency
100
+ name: rake
101
+ requirement: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - "~>"
104
+ - !ruby/object:Gem::Version
105
+ version: '13.0'
106
+ type: :development
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - "~>"
111
+ - !ruby/object:Gem::Version
112
+ version: '13.0'
113
+ - !ruby/object:Gem::Dependency
114
+ name: rspec
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: '3.9'
120
+ type: :development
121
+ prerelease: false
122
+ version_requirements: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - "~>"
125
+ - !ruby/object:Gem::Version
126
+ version: '3.9'
127
+ description: BuildingSync library for reading, writing, and exporting BuildingSync
128
+ to OpenStudio
129
+ email:
130
+ - nicholas.long@nrel.gov
131
+ - daniel.macumber@nrel.gov
132
+ - katherine.fleming@nrel.gov
133
+ executables: []
134
+ extensions: []
135
+ extra_rdoc_files: []
136
+ files:
137
+ - ".github/workflows/continuous_integration.yml"
138
+ - ".gitignore"
139
+ - ".rspec"
140
+ - ".rubocop.yml"
141
+ - CHANGELOG.md
142
+ - Gemfile
143
+ - Jenkinsfile
144
+ - LICENSE.md
145
+ - README.md
146
+ - Rakefile
147
+ - bin/console
148
+ - bin/setup
149
+ - buildingsync.gemspec
150
+ - config.rb.in
151
+ - doc_templates/LICENSE.md
152
+ - doc_templates/README.md.erb
153
+ - doc_templates/copyright_erb.txt
154
+ - doc_templates/copyright_js.txt
155
+ - doc_templates/copyright_ruby.txt
156
+ - lib/buildingsync.rb
157
+ - lib/buildingsync/all_resource_total.rb
158
+ - lib/buildingsync/audit_date.rb
159
+ - lib/buildingsync/constants.rb
160
+ - lib/buildingsync/contact.rb
161
+ - lib/buildingsync/extension.rb
162
+ - lib/buildingsync/generator.rb
163
+ - lib/buildingsync/get_bcl_weather_file.rb
164
+ - lib/buildingsync/helpers/Model.hvac.rb
165
+ - lib/buildingsync/helpers/helper.rb
166
+ - lib/buildingsync/helpers/xml_get_set.rb
167
+ - lib/buildingsync/makers/phase_zero_base.osw
168
+ - lib/buildingsync/makers/workflow_maker.json
169
+ - lib/buildingsync/makers/workflow_maker.rb
170
+ - lib/buildingsync/makers/workflow_maker_base.rb
171
+ - lib/buildingsync/model_articulation/building.rb
172
+ - lib/buildingsync/model_articulation/building_and_system_types.json
173
+ - lib/buildingsync/model_articulation/building_section.rb
174
+ - lib/buildingsync/model_articulation/building_system.rb
175
+ - lib/buildingsync/model_articulation/envelope_system.rb
176
+ - lib/buildingsync/model_articulation/exterior_floor_system_type.rb
177
+ - lib/buildingsync/model_articulation/facility.rb
178
+ - lib/buildingsync/model_articulation/foundation_system_type.rb
179
+ - lib/buildingsync/model_articulation/hvac_system.rb
180
+ - lib/buildingsync/model_articulation/lighting_system.rb
181
+ - lib/buildingsync/model_articulation/loads_system.rb
182
+ - lib/buildingsync/model_articulation/location_element.rb
183
+ - lib/buildingsync/model_articulation/measure.rb
184
+ - lib/buildingsync/model_articulation/roof_system_type.rb
185
+ - lib/buildingsync/model_articulation/service_hot_water_system.rb
186
+ - lib/buildingsync/model_articulation/site.rb
187
+ - lib/buildingsync/model_articulation/spatial_element.rb
188
+ - lib/buildingsync/model_articulation/wall_system_type.rb
189
+ - lib/buildingsync/report.rb
190
+ - lib/buildingsync/resource_use.rb
191
+ - lib/buildingsync/scenario.rb
192
+ - lib/buildingsync/selection_tool.rb
193
+ - lib/buildingsync/time_series.rb
194
+ - lib/buildingsync/translator.rb
195
+ - lib/buildingsync/utility.rb
196
+ - lib/buildingsync/version.rb
197
+ - lib/measures/.rubocop-http---s3-amazonaws-com-openstudio-resources-styles-rubocop-yml
198
+ - lib/measures/.rubocop.yml
199
+ homepage: https://buildingsync.net
200
+ licenses: []
201
+ metadata: {}
202
+ post_install_message:
203
+ rdoc_options: []
204
+ require_paths:
205
+ - lib
206
+ required_ruby_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - "~>"
209
+ - !ruby/object:Gem::Version
210
+ version: 2.5.0
211
+ required_rubygems_version: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ requirements: []
217
+ rubyforge_project:
218
+ rubygems_version: 2.7.6.2
219
+ signing_key:
220
+ specification_version: 4
221
+ summary: BuildingSync library for reading, writing, and exporting BuildingSync to
222
+ OpenStudio
223
+ test_files: []