openstudio-extension 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +9 -0
  3. data/.rubocop.yml +9 -0
  4. data/Gemfile +3 -1
  5. data/Jenkinsfile +10 -0
  6. data/README.md +230 -12
  7. data/Rakefile +88 -3
  8. data/bin/console +3 -3
  9. data/doc_templates/LICENSE.md +27 -0
  10. data/doc_templates/README.md.erb +42 -0
  11. data/doc_templates/copyright_erb.txt +36 -0
  12. data/doc_templates/copyright_js.txt +4 -0
  13. data/doc_templates/copyright_ruby.txt +34 -0
  14. data/init_templates/README.md +37 -0
  15. data/init_templates/gemspec.txt +32 -0
  16. data/init_templates/openstudio_module.rb +50 -0
  17. data/init_templates/spec.rb +47 -0
  18. data/init_templates/spec_helper.rb +49 -0
  19. data/init_templates/template_gemfile.txt +17 -0
  20. data/init_templates/template_rakefile.txt +15 -0
  21. data/init_templates/version.rb +40 -0
  22. data/lib/files/openstudio-extension-gem-test.ddy +536 -0
  23. data/lib/files/openstudio-extension-gem-test.epw +8768 -0
  24. data/lib/files/openstudio-extension-gem-test.stat +554 -0
  25. data/lib/measures/openstudio_extension_test_measure/LICENSE.md +27 -0
  26. data/lib/measures/openstudio_extension_test_measure/README.md +26 -0
  27. data/lib/measures/openstudio_extension_test_measure/README.md.erb +42 -0
  28. data/lib/measures/openstudio_extension_test_measure/measure.rb +72 -0
  29. data/lib/measures/openstudio_extension_test_measure/measure.xml +83 -0
  30. data/lib/measures/openstudio_extension_test_measure/resources/os_lib_helper_methods.rb +399 -0
  31. data/lib/measures/openstudio_extension_test_measure/tests/OpenStudioExtensionTestMeasure_Test.rb +75 -0
  32. data/lib/openstudio/extension.rb +220 -0
  33. data/lib/openstudio/extension/core/CreateResults.rb +879 -0
  34. data/lib/openstudio/extension/core/check_air_sys_temps.rb +190 -0
  35. data/lib/openstudio/extension/core/check_calibration.rb +155 -0
  36. data/lib/openstudio/extension/core/check_cond_zns.rb +84 -0
  37. data/lib/openstudio/extension/core/check_domestic_hot_water.rb +334 -0
  38. data/lib/openstudio/extension/core/check_envelope_conductance.rb +453 -0
  39. data/lib/openstudio/extension/core/check_eui_by_end_use.rb +162 -0
  40. data/lib/openstudio/extension/core/check_eui_reasonableness.rb +135 -0
  41. data/lib/openstudio/extension/core/check_fan_pwr.rb +98 -0
  42. data/lib/openstudio/extension/core/check_internal_loads.rb +393 -0
  43. data/lib/openstudio/extension/core/check_mech_sys_capacity.rb +226 -0
  44. data/lib/openstudio/extension/core/check_mech_sys_efficiency.rb +326 -0
  45. data/lib/openstudio/extension/core/check_mech_sys_part_load_eff.rb +464 -0
  46. data/lib/openstudio/extension/core/check_mech_sys_type.rb +139 -0
  47. data/lib/openstudio/extension/core/check_part_loads.rb +451 -0
  48. data/lib/openstudio/extension/core/check_placeholder.rb +75 -0
  49. data/lib/openstudio/extension/core/check_plant_cap.rb +123 -0
  50. data/lib/openstudio/extension/core/check_plant_temps.rb +159 -0
  51. data/lib/openstudio/extension/core/check_plenum_loads.rb +87 -0
  52. data/lib/openstudio/extension/core/check_pump_pwr.rb +108 -0
  53. data/lib/openstudio/extension/core/check_sch_coord.rb +241 -0
  54. data/lib/openstudio/extension/core/check_schedules.rb +311 -0
  55. data/lib/openstudio/extension/core/check_simultaneous_heating_and_cooling.rb +158 -0
  56. data/lib/openstudio/extension/core/check_supply_air_and_thermostat_temp_difference.rb +148 -0
  57. data/lib/openstudio/extension/core/check_weather_files.rb +132 -0
  58. data/lib/openstudio/extension/core/deer_vintages.rb +311 -0
  59. data/lib/openstudio/extension/core/os_lib_aedg_measures.rb +491 -0
  60. data/lib/openstudio/extension/core/os_lib_cofee.rb +259 -0
  61. data/lib/openstudio/extension/core/os_lib_constructions.rb +378 -0
  62. data/lib/openstudio/extension/core/os_lib_geometry.rb +1022 -0
  63. data/lib/openstudio/extension/core/os_lib_helper_methods.rb +399 -0
  64. data/lib/openstudio/extension/core/os_lib_hvac.rb +2171 -0
  65. data/lib/openstudio/extension/core/os_lib_lighting_and_equipment.rb +214 -0
  66. data/lib/openstudio/extension/core/os_lib_model_generation.rb +817 -0
  67. data/lib/openstudio/extension/core/os_lib_model_simplification.rb +1049 -0
  68. data/lib/openstudio/extension/core/os_lib_outdoorair_and_infiltration.rb +165 -0
  69. data/lib/openstudio/extension/core/os_lib_reporting.rb +4652 -0
  70. data/lib/openstudio/extension/core/os_lib_reporting_qaqc.rb +200 -0
  71. data/lib/openstudio/extension/core/os_lib_schedules.rb +963 -0
  72. data/lib/openstudio/extension/rake_task.rb +149 -0
  73. data/lib/openstudio/extension/runner.rb +644 -0
  74. data/lib/openstudio/extension/version.rb +40 -0
  75. data/openstudio-extension.gemspec +20 -15
  76. metadata +150 -14
  77. data/.travis.yml +0 -7
  78. data/lib/OpenStudio/Extension/rake_task.rb +0 -84
  79. data/lib/OpenStudio/Extension/version.rb +0 -33
  80. data/lib/OpenStudio/extension.rb +0 -65
@@ -0,0 +1,42 @@
1
+ <%#= README.md.erb is used to auto-generate README.md. %>
2
+ <%#= To manually maintain README.md throw away README.md.erb and manually edit README.md %>
3
+ ###### (Automatically generated documentation)
4
+
5
+ # <%= name %>
6
+
7
+ ## Description
8
+ <%= description %>
9
+
10
+ ## Modeler Description
11
+ <%= modelerDescription %>
12
+
13
+ ## Measure Type
14
+ <%= measureType %>
15
+
16
+ ## Taxonomy
17
+ <%= taxonomy %>
18
+
19
+ ## Arguments
20
+
21
+ <% arguments.each do |argument| %>
22
+ ### <%= argument[:display_name] %>
23
+ <%= argument[:description] %>
24
+ **Name:** <%= argument[:name] %>,
25
+ **Type:** <%= argument[:type] %>,
26
+ **Units:** <%= argument[:units] %>,
27
+ **Required:** <%= argument[:required] %>,
28
+ **Model Dependent:** <%= argument[:model_dependent] %>
29
+ <% end %>
30
+
31
+ <% if arguments.size == 0 %>
32
+ <%= "This measure does not have any user arguments" %>
33
+ <% end %>
34
+
35
+ <% if outputs.size > 0 %>
36
+ ## Outputs
37
+ <% output_names = [] %>
38
+ <% outputs.each do |output| %>
39
+ <% output_names << output[:display_name] %>
40
+ <% end %>
41
+ <%= output_names.join(", ") %>
42
+ <% end %>
@@ -0,0 +1,36 @@
1
+ <%
2
+ # *******************************************************************************
3
+ # OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC.
4
+ # All rights reserved.
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
+ # (4) Other than as required in clauses (1) and (2), distributions in any form
20
+ # of modifications or other derivative works may not use the "OpenStudio"
21
+ # trademark, "OS", "os", or any other confusingly similar designation without
22
+ # specific prior written permission from Alliance for Sustainable Energy, LLC.
23
+ #
24
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
25
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
26
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
28
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
29
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
31
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
33
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35
+ # *******************************************************************************
36
+ %>
@@ -0,0 +1,4 @@
1
+ /* @preserve
2
+ * OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. All rights reserved.
3
+ * Use of this source code is governed by a BSD-style license that can be found at openstudio.net/license.
4
+ */
@@ -0,0 +1,34 @@
1
+ # *******************************************************************************
2
+ # OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC.
3
+ # All rights reserved.
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # (1) Redistributions of source code must retain the above copyright notice,
8
+ # this list of conditions and the following disclaimer.
9
+ #
10
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # (3) Neither the name of the copyright holder nor the names of any contributors
15
+ # may be used to endorse or promote products derived from this software without
16
+ # specific prior written permission from the respective party.
17
+ #
18
+ # (4) Other than as required in clauses (1) and (2), distributions in any form
19
+ # of modifications or other derivative works may not use the "OpenStudio"
20
+ # trademark, "OS", "os", or any other confusingly similar designation without
21
+ # specific prior written permission from Alliance for Sustainable Energy, LLC.
22
+ #
23
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
24
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
27
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
28
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
30
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ # *******************************************************************************
@@ -0,0 +1,37 @@
1
+ # GEM_NAME_SPACES
2
+
3
+ TODO: Add a description of this gem
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'GEM_NAME_BARE'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install 'GEM_NAME_BARE'
20
+
21
+ ## Usage
22
+
23
+ To be filled out later.
24
+
25
+ ## TODO
26
+
27
+ - [ ] Remove measures from OpenStudio-Measures to standardize on this location
28
+ - [ ] Update measures to code standards
29
+ - [ ] Review and fill out the gemspec file with author and gem description
30
+
31
+ # Releasing
32
+
33
+ * Update change log
34
+ * Update version in `/lib/openstudio/GEM_NAME_BARE/version.rb`
35
+ * Merge down to master
36
+ * Release via github
37
+ * run `rake release` from master
@@ -0,0 +1,32 @@
1
+
2
+ lib = File.expand_path('lib', __dir__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'openstudio/GEM_NAME_UNDERSCORES/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'GEM_NAME_BARE'
8
+ spec.version = OpenStudio::GEM_CLASS_NAME::VERSION
9
+ spec.authors = ['']
10
+ spec.email = ['']
11
+
12
+ spec.summary = 'library and measures for OpenStudio'
13
+ spec.description = 'library and measures for OpenStudio'
14
+ spec.homepage = 'https://openstudio.net'
15
+
16
+ # Specify which files should be added to the gem when it is released.
17
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
19
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
+ end
21
+ spec.bindir = 'exe'
22
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ['lib']
24
+
25
+ spec.add_development_dependency 'bundler', '~> 1.14'
26
+ spec.add_development_dependency 'rake', '12.3.1'
27
+ spec.add_development_dependency 'rspec', '3.7.0'
28
+ spec.add_development_dependency 'rubocop', '~> 0.54.0'
29
+
30
+ spec.add_dependency 'openstudio-extension', '~> 0.1.0'
31
+ spec.add_dependency 'openstudio-standards', '~> 0.2.7'
32
+ end
@@ -0,0 +1,50 @@
1
+ # *******************************************************************************
2
+ # OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC.
3
+ # All rights reserved.
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # (1) Redistributions of source code must retain the above copyright notice,
8
+ # this list of conditions and the following disclaimer.
9
+ #
10
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # (3) Neither the name of the copyright holder nor the names of any contributors
15
+ # may be used to endorse or promote products derived from this software without
16
+ # specific prior written permission from the respective party.
17
+ #
18
+ # (4) Other than as required in clauses (1) and (2), distributions in any form
19
+ # of modifications or other derivative works may not use the "OpenStudio"
20
+ # trademark, "OS", "os", or any other confusingly similar designation without
21
+ # specific prior written permission from Alliance for Sustainable Energy, LLC.
22
+ #
23
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
24
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
27
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
28
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
30
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ # *******************************************************************************
35
+
36
+ require 'openstudio/GEM_NAME_UNDERSCORES/version'
37
+ require 'openstudio/extension'
38
+
39
+ module OpenStudio
40
+ module GEM_CLASS_NAME
41
+ class GEM_CLASS_NAME < OpenStudio::Extension::Extension
42
+ # Override parent class
43
+ def initialize
44
+ super
45
+
46
+ @root_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..'))
47
+ end
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,47 @@
1
+ # *******************************************************************************
2
+ # OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC.
3
+ # All rights reserved.
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # (1) Redistributions of source code must retain the above copyright notice,
8
+ # this list of conditions and the following disclaimer.
9
+ #
10
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # (3) Neither the name of the copyright holder nor the names of any contributors
15
+ # may be used to endorse or promote products derived from this software without
16
+ # specific prior written permission from the respective party.
17
+ #
18
+ # (4) Other than as required in clauses (1) and (2), distributions in any form
19
+ # of modifications or other derivative works may not use the "OpenStudio"
20
+ # trademark, "OS", "os", or any other confusingly similar designation without
21
+ # specific prior written permission from Alliance for Sustainable Energy, LLC.
22
+ #
23
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
24
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
27
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
28
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
30
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ # *******************************************************************************
35
+
36
+ require_relative '../spec_helper'
37
+
38
+ RSpec.describe OpenStudio::GEM_CLASS_NAME do
39
+ it 'has a version number' do
40
+ expect(OpenStudio::GEM_CLASS_NAME::VERSION).not_to be nil
41
+ end
42
+
43
+ it 'has a measures directory' do
44
+ instance = OpenStudio::GEM_CLASS_NAME::GEM_CLASS_NAME.new
45
+ expect(File.exist?(instance.measures_dir)).to be true
46
+ end
47
+ end
@@ -0,0 +1,49 @@
1
+ # *******************************************************************************
2
+ # OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC.
3
+ # All rights reserved.
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # (1) Redistributions of source code must retain the above copyright notice,
8
+ # this list of conditions and the following disclaimer.
9
+ #
10
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # (3) Neither the name of the copyright holder nor the names of any contributors
15
+ # may be used to endorse or promote products derived from this software without
16
+ # specific prior written permission from the respective party.
17
+ #
18
+ # (4) Other than as required in clauses (1) and (2), distributions in any form
19
+ # of modifications or other derivative works may not use the "OpenStudio"
20
+ # trademark, "OS", "os", or any other confusingly similar designation without
21
+ # specific prior written permission from Alliance for Sustainable Energy, LLC.
22
+ #
23
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
24
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
27
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
28
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
30
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ # *******************************************************************************
35
+
36
+ require 'bundler/setup'
37
+ require 'openstudio/GEM_NAME_UNDERSCORES'
38
+
39
+ RSpec.configure do |config|
40
+ # Enable flags like --only-failures and --next-failure
41
+ config.example_status_persistence_file_path = '.rspec_status'
42
+
43
+ # Disable RSpec exposing methods globally on `Module` and `main`
44
+ config.disable_monkey_patching!
45
+
46
+ config.expect_with :rspec do |c|
47
+ c.syntax = :expect
48
+ end
49
+ end
@@ -0,0 +1,17 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies
4
+ gemspec
5
+
6
+ if File.exists?('../OpenStudio-extension-gem')
7
+ # gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
8
+ gem 'openstudio-extension', path: '../OpenStudio-extension-gem'
9
+ else
10
+ gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
11
+ end
12
+
13
+ gem 'openstudio_measure_tester', '= 0.1.7' # This includes the dependencies for running unit tests, coverage, and rubocop
14
+ #gem 'openstudio_measure_tester', :github => 'NREL/OpenStudio-measure-tester-gem', :ref => '273d1f1a5c739312688ea605ef4a5b6e7325332c'
15
+
16
+ # simplecov has an unneccesary dependency on native json gem, use fork that does not require this
17
+ gem 'simplecov', github: 'NREL/simplecov'
@@ -0,0 +1,15 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ require 'rubocop/rake_task'
7
+ RuboCop::RakeTask.new
8
+
9
+ # Load in the rake tasks from the base openstudio-extension gem
10
+ require 'openstudio/extension/rake_task'
11
+ require 'openstudio/GEM_NAME_UNDERSCORES'
12
+ os_extension = OpenStudio::Extension::RakeTask.new
13
+ os_extension.set_extension_class(OpenStudio::GEM_CLASS_NAME::GEM_CLASS_NAME)
14
+
15
+ task default: :spec
@@ -0,0 +1,40 @@
1
+ # *******************************************************************************
2
+ # OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC.
3
+ # All rights reserved.
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # (1) Redistributions of source code must retain the above copyright notice,
8
+ # this list of conditions and the following disclaimer.
9
+ #
10
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # (3) Neither the name of the copyright holder nor the names of any contributors
15
+ # may be used to endorse or promote products derived from this software without
16
+ # specific prior written permission from the respective party.
17
+ #
18
+ # (4) Other than as required in clauses (1) and (2), distributions in any form
19
+ # of modifications or other derivative works may not use the "OpenStudio"
20
+ # trademark, "OS", "os", or any other confusingly similar designation without
21
+ # specific prior written permission from Alliance for Sustainable Energy, LLC.
22
+ #
23
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
24
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
27
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
28
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
30
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ # *******************************************************************************
35
+
36
+ module OpenStudio
37
+ module GEM_CLASS_NAME
38
+ VERSION = '0.0.1'.freeze
39
+ end
40
+ end
@@ -0,0 +1,536 @@
1
+ ! The following Location and Design Day data are produced as possible from the indicated data source.
2
+ ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling)
3
+ ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction)
4
+ ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire.
5
+
6
+ Site:Location,
7
+ Aurora Buckley Field Angb_CO_USA Design_Conditions, !- Location Name
8
+ 39.72, !- Latitude {N+ S-}
9
+ -104.75, !- Longitude {W- E+}
10
+ -7.00, !- Time Zone Relative to GMT {GMT+/-}
11
+ 1726.00; !- Elevation {m}
12
+
13
+ ! WMO=724695 Time Zone=NAM: (GMT-07:00) Mountain Time (US & Canada)
14
+ ! Data Source=ASHRAE 2009 Annual Design Conditions
15
+ RunPeriodControl:DaylightSavingTime,
16
+ 2nd Sunday in March, !- StartDate
17
+ 2nd Sunday in November; !- EndDate
18
+
19
+ ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook"
20
+ ! Aurora Buckley Field Angb_CO_USA Extreme Annual Wind Speeds, 1%=10.5m/s, 2.5%=8.7m/s, 5%=7.5m/s
21
+ ! Aurora Buckley Field Angb_CO_USA Extreme Annual Temperatures, Max Drybulb=-22.3�C Min Drybulb=36.9�C
22
+
23
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating Design Conditions Wind Speed=2.5m/s Wind Dir=180
24
+ ! Coldest Month=DEC
25
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating 99.6%, MaxDB=-17.9�C
26
+ SizingPeriod:DesignDay,
27
+ Aurora Buckley Field Angb Ann Htg 99.6% Condns DB, !- Name
28
+ 12, !- Month
29
+ 21, !- Day of Month
30
+ WinterDesignDay,!- Day Type
31
+ -17.9, !- Maximum Dry-Bulb Temperature {C}
32
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
33
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
34
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
35
+ Wetbulb, !- Humidity Condition Type
36
+ -17.9, !- Wetbulb at Maximum Dry-Bulb {C}
37
+ , !- Humidity Indicating Day Schedule Name
38
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
39
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
40
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
41
+ 82237., !- Barometric Pressure {Pa}
42
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
43
+ 180, !- Wind Direction {Degrees; N=0, S=180}
44
+ No, !- Rain {Yes/No}
45
+ No, !- Snow on ground {Yes/No}
46
+ No, !- Daylight Savings Time Indicator
47
+ ASHRAEClearSky, !- Solar Model Indicator
48
+ , !- Beam Solar Day Schedule Name
49
+ , !- Diffuse Solar Day Schedule Name
50
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
51
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
52
+ 0.00; !- Clearness {0.0 to 1.1}
53
+
54
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating 99%, MaxDB=-14.1�C
55
+ SizingPeriod:DesignDay,
56
+ Aurora Buckley Field Angb Ann Htg 99% Condns DB, !- Name
57
+ 12, !- Month
58
+ 21, !- Day of Month
59
+ WinterDesignDay,!- Day Type
60
+ -14.1, !- Maximum Dry-Bulb Temperature {C}
61
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
62
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
63
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
64
+ Wetbulb, !- Humidity Condition Type
65
+ -14.1, !- Wetbulb at Maximum Dry-Bulb {C}
66
+ , !- Humidity Indicating Day Schedule Name
67
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
68
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
69
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
70
+ 82237., !- Barometric Pressure {Pa}
71
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
72
+ 180, !- Wind Direction {Degrees; N=0, S=180}
73
+ No, !- Rain {Yes/No}
74
+ No, !- Snow on ground {Yes/No}
75
+ No, !- Daylight Savings Time Indicator
76
+ ASHRAEClearSky, !- Solar Model Indicator
77
+ , !- Beam Solar Day Schedule Name
78
+ , !- Diffuse Solar Day Schedule Name
79
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
80
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
81
+ 0.00; !- Clearness {0.0 to 1.1}
82
+
83
+ ! Aurora Buckley Field Angb_CO_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-22.6�C
84
+ SizingPeriod:DesignDay,
85
+ Aurora Buckley Field Angb Ann Hum_n 99.6% Condns DP=>MCDB, !- Name
86
+ 12, !- Month
87
+ 21, !- Day of Month
88
+ WinterDesignDay,!- Day Type
89
+ -14.5, !- Maximum Dry-Bulb Temperature {C}
90
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
91
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
92
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
93
+ Dewpoint, !- Humidity Condition Type
94
+ -22.6, !- Dewpoint at Maximum Dry-Bulb {C}
95
+ , !- Humidity Indicating Day Schedule Name
96
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
97
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
98
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
99
+ 82237., !- Barometric Pressure {Pa}
100
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
101
+ 180, !- Wind Direction {Degrees; N=0, S=180}
102
+ No, !- Rain {Yes/No}
103
+ No, !- Snow on ground {Yes/No}
104
+ No, !- Daylight Savings Time Indicator
105
+ ASHRAEClearSky, !- Solar Model Indicator
106
+ , !- Beam Solar Day Schedule Name
107
+ , !- Diffuse Solar Day Schedule Name
108
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
109
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
110
+ 0.00; !- Clearness {0.0 to 1.1}
111
+
112
+ ! Aurora Buckley Field Angb_CO_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-19�C
113
+ SizingPeriod:DesignDay,
114
+ Aurora Buckley Field Angb Ann Hum_n 99% Condns DP=>MCDB, !- Name
115
+ 12, !- Month
116
+ 21, !- Day of Month
117
+ WinterDesignDay,!- Day Type
118
+ -8.8, !- Maximum Dry-Bulb Temperature {C}
119
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
120
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
121
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
122
+ Dewpoint, !- Humidity Condition Type
123
+ -19, !- Dewpoint at Maximum Dry-Bulb {C}
124
+ , !- Humidity Indicating Day Schedule Name
125
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
126
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
127
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
128
+ 82237., !- Barometric Pressure {Pa}
129
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
130
+ 180, !- Wind Direction {Degrees; N=0, S=180}
131
+ No, !- Rain {Yes/No}
132
+ No, !- Snow on ground {Yes/No}
133
+ No, !- Daylight Savings Time Indicator
134
+ ASHRAEClearSky, !- Solar Model Indicator
135
+ , !- Beam Solar Day Schedule Name
136
+ , !- Diffuse Solar Day Schedule Name
137
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
138
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
139
+ 0.00; !- Clearness {0.0 to 1.1}
140
+
141
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=11.9m/s
142
+ SizingPeriod:DesignDay,
143
+ Aurora Buckley Field Angb Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name
144
+ 12, !- Month
145
+ 21, !- Day of Month
146
+ WinterDesignDay,!- Day Type
147
+ 2, !- Maximum Dry-Bulb Temperature {C}
148
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
149
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
150
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
151
+ Wetbulb, !- Humidity Condition Type
152
+ 2, !- Wetbulb at Maximum Dry-Bulb {C}
153
+ , !- Humidity Indicating Day Schedule Name
154
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
155
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
156
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
157
+ 82237., !- Barometric Pressure {Pa}
158
+ 11.9, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
159
+ 180, !- Wind Direction {Degrees; N=0, S=180}
160
+ No, !- Rain {Yes/No}
161
+ No, !- Snow on ground {Yes/No}
162
+ No, !- Daylight Savings Time Indicator
163
+ ASHRAEClearSky, !- Solar Model Indicator
164
+ , !- Beam Solar Day Schedule Name
165
+ , !- Diffuse Solar Day Schedule Name
166
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
167
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
168
+ 0.00; !- Clearness {0.0 to 1.1}
169
+
170
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=10.3m/s
171
+ SizingPeriod:DesignDay,
172
+ Aurora Buckley Field Angb Ann Htg Wind 99% Condns WS=>MCDB, !- Name
173
+ 12, !- Month
174
+ 21, !- Day of Month
175
+ WinterDesignDay,!- Day Type
176
+ 2.7, !- Maximum Dry-Bulb Temperature {C}
177
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
178
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
179
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
180
+ Wetbulb, !- Humidity Condition Type
181
+ 2.7, !- Wetbulb at Maximum Dry-Bulb {C}
182
+ , !- Humidity Indicating Day Schedule Name
183
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
184
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
185
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
186
+ 82237., !- Barometric Pressure {Pa}
187
+ 10.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
188
+ 180, !- Wind Direction {Degrees; N=0, S=180}
189
+ No, !- Rain {Yes/No}
190
+ No, !- Snow on ground {Yes/No}
191
+ No, !- Daylight Savings Time Indicator
192
+ ASHRAEClearSky, !- Solar Model Indicator
193
+ , !- Beam Solar Day Schedule Name
194
+ , !- Diffuse Solar Day Schedule Name
195
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
196
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
197
+ 0.00; !- Clearness {0.0 to 1.1}
198
+
199
+ ! Aurora Buckley Field Angb Annual Cooling Design Conditions Wind Speed=3.6m/s Wind Dir=30
200
+ ! Hottest Month=JUL
201
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) .4%, MaxDB=33.9�C MWB=15�C
202
+ SizingPeriod:DesignDay,
203
+ Aurora Buckley Field Angb Ann Clg .4% Condns DB=>MWB, !- Name
204
+ 7, !- Month
205
+ 21, !- Day of Month
206
+ SummerDesignDay,!- Day Type
207
+ 33.9, !- Maximum Dry-Bulb Temperature {C}
208
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
209
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
210
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
211
+ Wetbulb, !- Humidity Condition Type
212
+ 15, !- Wetbulb at Maximum Dry-Bulb {C}
213
+ , !- Humidity Indicating Day Schedule Name
214
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
215
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
216
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
217
+ 82237., !- Barometric Pressure {Pa}
218
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
219
+ 30, !- Wind Direction {Degrees; N=0, S=180}
220
+ No, !- Rain {Yes/No}
221
+ No, !- Snow on ground {Yes/No}
222
+ No, !- Daylight Savings Time Indicator
223
+ ASHRAETau, !- Solar Model Indicator
224
+ , !- Beam Solar Day Schedule Name
225
+ , !- Diffuse Solar Day Schedule Name
226
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
227
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
228
+
229
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) 1%, MaxDB=32.4�C MWB=14.9�C
230
+ SizingPeriod:DesignDay,
231
+ Aurora Buckley Field Angb Ann Clg 1% Condns DB=>MWB, !- Name
232
+ 7, !- Month
233
+ 21, !- Day of Month
234
+ SummerDesignDay,!- Day Type
235
+ 32.4, !- Maximum Dry-Bulb Temperature {C}
236
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
237
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
238
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
239
+ Wetbulb, !- Humidity Condition Type
240
+ 14.9, !- Wetbulb at Maximum Dry-Bulb {C}
241
+ , !- Humidity Indicating Day Schedule Name
242
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
243
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
244
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
245
+ 82237., !- Barometric Pressure {Pa}
246
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
247
+ 30, !- Wind Direction {Degrees; N=0, S=180}
248
+ No, !- Rain {Yes/No}
249
+ No, !- Snow on ground {Yes/No}
250
+ No, !- Daylight Savings Time Indicator
251
+ ASHRAETau, !- Solar Model Indicator
252
+ , !- Beam Solar Day Schedule Name
253
+ , !- Diffuse Solar Day Schedule Name
254
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
255
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
256
+
257
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) 2%, MaxDB=31�C MWB=14.8�C
258
+ SizingPeriod:DesignDay,
259
+ Aurora Buckley Field Angb Ann Clg 2% Condns DB=>MWB, !- Name
260
+ 7, !- Month
261
+ 21, !- Day of Month
262
+ SummerDesignDay,!- Day Type
263
+ 31, !- Maximum Dry-Bulb Temperature {C}
264
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
265
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
266
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
267
+ Wetbulb, !- Humidity Condition Type
268
+ 14.8, !- Wetbulb at Maximum Dry-Bulb {C}
269
+ , !- Humidity Indicating Day Schedule Name
270
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
271
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
272
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
273
+ 82237., !- Barometric Pressure {Pa}
274
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
275
+ 30, !- Wind Direction {Degrees; N=0, S=180}
276
+ No, !- Rain {Yes/No}
277
+ No, !- Snow on ground {Yes/No}
278
+ No, !- Daylight Savings Time Indicator
279
+ ASHRAETau, !- Solar Model Indicator
280
+ , !- Beam Solar Day Schedule Name
281
+ , !- Diffuse Solar Day Schedule Name
282
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
283
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
284
+
285
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) .4%, MDB=26.3�C WB=17.9�C
286
+ SizingPeriod:DesignDay,
287
+ Aurora Buckley Field Angb Ann Clg .4% Condns WB=>MDB, !- Name
288
+ 7, !- Month
289
+ 21, !- Day of Month
290
+ SummerDesignDay,!- Day Type
291
+ 26.3, !- Maximum Dry-Bulb Temperature {C}
292
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
293
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
294
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
295
+ Wetbulb, !- Humidity Condition Type
296
+ 17.9, !- Wetbulb at Maximum Dry-Bulb {C}
297
+ , !- Humidity Indicating Day Schedule Name
298
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
299
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
300
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
301
+ 82237., !- Barometric Pressure {Pa}
302
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
303
+ 30, !- Wind Direction {Degrees; N=0, S=180}
304
+ No, !- Rain {Yes/No}
305
+ No, !- Snow on ground {Yes/No}
306
+ No, !- Daylight Savings Time Indicator
307
+ ASHRAETau, !- Solar Model Indicator
308
+ , !- Beam Solar Day Schedule Name
309
+ , !- Diffuse Solar Day Schedule Name
310
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
311
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
312
+
313
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) 1%, MDB=25.8�C WB=17.1�C
314
+ SizingPeriod:DesignDay,
315
+ Aurora Buckley Field Angb Ann Clg 1% Condns WB=>MDB, !- Name
316
+ 7, !- Month
317
+ 21, !- Day of Month
318
+ SummerDesignDay,!- Day Type
319
+ 25.8, !- Maximum Dry-Bulb Temperature {C}
320
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
321
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
322
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
323
+ Wetbulb, !- Humidity Condition Type
324
+ 17.1, !- Wetbulb at Maximum Dry-Bulb {C}
325
+ , !- Humidity Indicating Day Schedule Name
326
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
327
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
328
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
329
+ 82237., !- Barometric Pressure {Pa}
330
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
331
+ 30, !- Wind Direction {Degrees; N=0, S=180}
332
+ No, !- Rain {Yes/No}
333
+ No, !- Snow on ground {Yes/No}
334
+ No, !- Daylight Savings Time Indicator
335
+ ASHRAETau, !- Solar Model Indicator
336
+ , !- Beam Solar Day Schedule Name
337
+ , !- Diffuse Solar Day Schedule Name
338
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
339
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
340
+
341
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) 2%, MDB=25.3�C WB=16.5�C
342
+ SizingPeriod:DesignDay,
343
+ Aurora Buckley Field Angb Ann Clg 2% Condns WB=>MDB, !- Name
344
+ 7, !- Month
345
+ 21, !- Day of Month
346
+ SummerDesignDay,!- Day Type
347
+ 25.3, !- Maximum Dry-Bulb Temperature {C}
348
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
349
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
350
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
351
+ Wetbulb, !- Humidity Condition Type
352
+ 16.5, !- Wetbulb at Maximum Dry-Bulb {C}
353
+ , !- Humidity Indicating Day Schedule Name
354
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
355
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
356
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
357
+ 82237., !- Barometric Pressure {Pa}
358
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
359
+ 30, !- Wind Direction {Degrees; N=0, S=180}
360
+ No, !- Rain {Yes/No}
361
+ No, !- Snow on ground {Yes/No}
362
+ No, !- Daylight Savings Time Indicator
363
+ ASHRAETau, !- Solar Model Indicator
364
+ , !- Beam Solar Day Schedule Name
365
+ , !- Diffuse Solar Day Schedule Name
366
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
367
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
368
+
369
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) .4%, MDB=19.3�C DP=15.9�C HR=0.0139
370
+ SizingPeriod:DesignDay,
371
+ Aurora Buckley Field Angb Ann Clg .4% Condns DP=>MDB, !- Name
372
+ 7, !- Month
373
+ 21, !- Day of Month
374
+ SummerDesignDay,!- Day Type
375
+ 19.3, !- Maximum Dry-Bulb Temperature {C}
376
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
377
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
378
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
379
+ Dewpoint, !- Humidity Condition Type
380
+ 15.9, !- Dewpoint at Maximum Dry-Bulb {C}
381
+ , !- Humidity Indicating Day Schedule Name
382
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
383
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
384
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
385
+ 82237., !- Barometric Pressure {Pa}
386
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
387
+ 30, !- Wind Direction {Degrees; N=0, S=180}
388
+ No, !- Rain {Yes/No}
389
+ No, !- Snow on ground {Yes/No}
390
+ No, !- Daylight Savings Time Indicator
391
+ ASHRAETau, !- Solar Model Indicator
392
+ , !- Beam Solar Day Schedule Name
393
+ , !- Diffuse Solar Day Schedule Name
394
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
395
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
396
+
397
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) 1%, MDB=19.1�C DP=14.7�C HR=0.0129
398
+ SizingPeriod:DesignDay,
399
+ Aurora Buckley Field Angb Ann Clg 1% Condns DP=>MDB, !- Name
400
+ 7, !- Month
401
+ 21, !- Day of Month
402
+ SummerDesignDay,!- Day Type
403
+ 19.1, !- Maximum Dry-Bulb Temperature {C}
404
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
405
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
406
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
407
+ Dewpoint, !- Humidity Condition Type
408
+ 14.7, !- Dewpoint at Maximum Dry-Bulb {C}
409
+ , !- Humidity Indicating Day Schedule Name
410
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
411
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
412
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
413
+ 82237., !- Barometric Pressure {Pa}
414
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
415
+ 30, !- Wind Direction {Degrees; N=0, S=180}
416
+ No, !- Rain {Yes/No}
417
+ No, !- Snow on ground {Yes/No}
418
+ No, !- Daylight Savings Time Indicator
419
+ ASHRAETau, !- Solar Model Indicator
420
+ , !- Beam Solar Day Schedule Name
421
+ , !- Diffuse Solar Day Schedule Name
422
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
423
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
424
+
425
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) 2%, MDB=19.1�C DP=13.7�C HR=0.0121
426
+ SizingPeriod:DesignDay,
427
+ Aurora Buckley Field Angb Ann Clg 2% Condns DP=>MDB, !- Name
428
+ 7, !- Month
429
+ 21, !- Day of Month
430
+ SummerDesignDay,!- Day Type
431
+ 19.1, !- Maximum Dry-Bulb Temperature {C}
432
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
433
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
434
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
435
+ Dewpoint, !- Humidity Condition Type
436
+ 13.7, !- Dewpoint at Maximum Dry-Bulb {C}
437
+ , !- Humidity Indicating Day Schedule Name
438
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
439
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
440
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
441
+ 82237., !- Barometric Pressure {Pa}
442
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
443
+ 30, !- Wind Direction {Degrees; N=0, S=180}
444
+ No, !- Rain {Yes/No}
445
+ No, !- Snow on ground {Yes/No}
446
+ No, !- Daylight Savings Time Indicator
447
+ ASHRAETau, !- Solar Model Indicator
448
+ , !- Beam Solar Day Schedule Name
449
+ , !- Diffuse Solar Day Schedule Name
450
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
451
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
452
+
453
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=26�C Enthalpy=57000.0J/kg
454
+ SizingPeriod:DesignDay,
455
+ Aurora Buckley Field Angb Ann Clg .4% Condns Enth=>MDB, !- Name
456
+ 7, !- Month
457
+ 21, !- Day of Month
458
+ SummerDesignDay,!- Day Type
459
+ 26, !- Maximum Dry-Bulb Temperature {C}
460
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
461
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
462
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
463
+ Enthalpy, !- Humidity Condition Type
464
+ , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
465
+ , !- Humidity Indicating Day Schedule Name
466
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
467
+ 57000.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
468
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
469
+ 82237., !- Barometric Pressure {Pa}
470
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
471
+ 30, !- Wind Direction {Degrees; N=0, S=180}
472
+ No, !- Rain {Yes/No}
473
+ No, !- Snow on ground {Yes/No}
474
+ No, !- Daylight Savings Time Indicator
475
+ ASHRAETau, !- Solar Model Indicator
476
+ , !- Beam Solar Day Schedule Name
477
+ , !- Diffuse Solar Day Schedule Name
478
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
479
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
480
+
481
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=25.7�C Enthalpy=54500.0J/kg
482
+ SizingPeriod:DesignDay,
483
+ Aurora Buckley Field Angb Ann Clg 1% Condns Enth=>MDB, !- Name
484
+ 7, !- Month
485
+ 21, !- Day of Month
486
+ SummerDesignDay,!- Day Type
487
+ 25.7, !- Maximum Dry-Bulb Temperature {C}
488
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
489
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
490
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
491
+ Enthalpy, !- Humidity Condition Type
492
+ , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
493
+ , !- Humidity Indicating Day Schedule Name
494
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
495
+ 54500.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
496
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
497
+ 82237., !- Barometric Pressure {Pa}
498
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
499
+ 30, !- Wind Direction {Degrees; N=0, S=180}
500
+ No, !- Rain {Yes/No}
501
+ No, !- Snow on ground {Yes/No}
502
+ No, !- Daylight Savings Time Indicator
503
+ ASHRAETau, !- Solar Model Indicator
504
+ , !- Beam Solar Day Schedule Name
505
+ , !- Diffuse Solar Day Schedule Name
506
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
507
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
508
+
509
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=25.3�C Enthalpy=52300.0J/kg
510
+ SizingPeriod:DesignDay,
511
+ Aurora Buckley Field Angb Ann Clg 2% Condns Enth=>MDB, !- Name
512
+ 7, !- Month
513
+ 21, !- Day of Month
514
+ SummerDesignDay,!- Day Type
515
+ 25.3, !- Maximum Dry-Bulb Temperature {C}
516
+ 14.8, !- Daily Dry-Bulb Temperature Range {C}
517
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
518
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
519
+ Enthalpy, !- Humidity Condition Type
520
+ , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
521
+ , !- Humidity Indicating Day Schedule Name
522
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
523
+ 52300.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
524
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
525
+ 82237., !- Barometric Pressure {Pa}
526
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
527
+ 30, !- Wind Direction {Degrees; N=0, S=180}
528
+ No, !- Rain {Yes/No}
529
+ No, !- Snow on ground {Yes/No}
530
+ No, !- Daylight Savings Time Indicator
531
+ ASHRAETau, !- Solar Model Indicator
532
+ , !- Beam Solar Day Schedule Name
533
+ , !- Diffuse Solar Day Schedule Name
534
+ 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
535
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
536
+