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.
- checksums.yaml +4 -4
- data/.gitignore +9 -0
- data/.rubocop.yml +9 -0
- data/Gemfile +3 -1
- data/Jenkinsfile +10 -0
- data/README.md +230 -12
- data/Rakefile +88 -3
- data/bin/console +3 -3
- data/doc_templates/LICENSE.md +27 -0
- data/doc_templates/README.md.erb +42 -0
- data/doc_templates/copyright_erb.txt +36 -0
- data/doc_templates/copyright_js.txt +4 -0
- data/doc_templates/copyright_ruby.txt +34 -0
- data/init_templates/README.md +37 -0
- data/init_templates/gemspec.txt +32 -0
- data/init_templates/openstudio_module.rb +50 -0
- data/init_templates/spec.rb +47 -0
- data/init_templates/spec_helper.rb +49 -0
- data/init_templates/template_gemfile.txt +17 -0
- data/init_templates/template_rakefile.txt +15 -0
- data/init_templates/version.rb +40 -0
- data/lib/files/openstudio-extension-gem-test.ddy +536 -0
- data/lib/files/openstudio-extension-gem-test.epw +8768 -0
- data/lib/files/openstudio-extension-gem-test.stat +554 -0
- data/lib/measures/openstudio_extension_test_measure/LICENSE.md +27 -0
- data/lib/measures/openstudio_extension_test_measure/README.md +26 -0
- data/lib/measures/openstudio_extension_test_measure/README.md.erb +42 -0
- data/lib/measures/openstudio_extension_test_measure/measure.rb +72 -0
- data/lib/measures/openstudio_extension_test_measure/measure.xml +83 -0
- data/lib/measures/openstudio_extension_test_measure/resources/os_lib_helper_methods.rb +399 -0
- data/lib/measures/openstudio_extension_test_measure/tests/OpenStudioExtensionTestMeasure_Test.rb +75 -0
- data/lib/openstudio/extension.rb +220 -0
- data/lib/openstudio/extension/core/CreateResults.rb +879 -0
- data/lib/openstudio/extension/core/check_air_sys_temps.rb +190 -0
- data/lib/openstudio/extension/core/check_calibration.rb +155 -0
- data/lib/openstudio/extension/core/check_cond_zns.rb +84 -0
- data/lib/openstudio/extension/core/check_domestic_hot_water.rb +334 -0
- data/lib/openstudio/extension/core/check_envelope_conductance.rb +453 -0
- data/lib/openstudio/extension/core/check_eui_by_end_use.rb +162 -0
- data/lib/openstudio/extension/core/check_eui_reasonableness.rb +135 -0
- data/lib/openstudio/extension/core/check_fan_pwr.rb +98 -0
- data/lib/openstudio/extension/core/check_internal_loads.rb +393 -0
- data/lib/openstudio/extension/core/check_mech_sys_capacity.rb +226 -0
- data/lib/openstudio/extension/core/check_mech_sys_efficiency.rb +326 -0
- data/lib/openstudio/extension/core/check_mech_sys_part_load_eff.rb +464 -0
- data/lib/openstudio/extension/core/check_mech_sys_type.rb +139 -0
- data/lib/openstudio/extension/core/check_part_loads.rb +451 -0
- data/lib/openstudio/extension/core/check_placeholder.rb +75 -0
- data/lib/openstudio/extension/core/check_plant_cap.rb +123 -0
- data/lib/openstudio/extension/core/check_plant_temps.rb +159 -0
- data/lib/openstudio/extension/core/check_plenum_loads.rb +87 -0
- data/lib/openstudio/extension/core/check_pump_pwr.rb +108 -0
- data/lib/openstudio/extension/core/check_sch_coord.rb +241 -0
- data/lib/openstudio/extension/core/check_schedules.rb +311 -0
- data/lib/openstudio/extension/core/check_simultaneous_heating_and_cooling.rb +158 -0
- data/lib/openstudio/extension/core/check_supply_air_and_thermostat_temp_difference.rb +148 -0
- data/lib/openstudio/extension/core/check_weather_files.rb +132 -0
- data/lib/openstudio/extension/core/deer_vintages.rb +311 -0
- data/lib/openstudio/extension/core/os_lib_aedg_measures.rb +491 -0
- data/lib/openstudio/extension/core/os_lib_cofee.rb +259 -0
- data/lib/openstudio/extension/core/os_lib_constructions.rb +378 -0
- data/lib/openstudio/extension/core/os_lib_geometry.rb +1022 -0
- data/lib/openstudio/extension/core/os_lib_helper_methods.rb +399 -0
- data/lib/openstudio/extension/core/os_lib_hvac.rb +2171 -0
- data/lib/openstudio/extension/core/os_lib_lighting_and_equipment.rb +214 -0
- data/lib/openstudio/extension/core/os_lib_model_generation.rb +817 -0
- data/lib/openstudio/extension/core/os_lib_model_simplification.rb +1049 -0
- data/lib/openstudio/extension/core/os_lib_outdoorair_and_infiltration.rb +165 -0
- data/lib/openstudio/extension/core/os_lib_reporting.rb +4652 -0
- data/lib/openstudio/extension/core/os_lib_reporting_qaqc.rb +200 -0
- data/lib/openstudio/extension/core/os_lib_schedules.rb +963 -0
- data/lib/openstudio/extension/rake_task.rb +149 -0
- data/lib/openstudio/extension/runner.rb +644 -0
- data/lib/openstudio/extension/version.rb +40 -0
- data/openstudio-extension.gemspec +20 -15
- metadata +150 -14
- data/.travis.yml +0 -7
- data/lib/OpenStudio/Extension/rake_task.rb +0 -84
- data/lib/OpenStudio/Extension/version.rb +0 -33
- data/lib/OpenStudio/extension.rb +0 -65
@@ -0,0 +1,27 @@
|
|
1
|
+
OpenStudio(R), Copyright (c) 2008-2018, Alliance for Sustainable Energy, LLC. All rights reserved.
|
2
|
+
|
3
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted
|
4
|
+
provided that the following conditions are met:
|
5
|
+
|
6
|
+
(1) Redistributions of source code must retain the above copyright notice, this list of conditions
|
7
|
+
and the following disclaimer.
|
8
|
+
|
9
|
+
(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions
|
10
|
+
and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
11
|
+
|
12
|
+
(3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse
|
13
|
+
or promote products derived from this software without specific prior written permission from the
|
14
|
+
respective party.
|
15
|
+
|
16
|
+
(4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other
|
17
|
+
derivative works may not use the "OpenStudio" trademark, "OS", "os", or any other confusingly similar
|
18
|
+
designation without specific prior written permission from Alliance for Sustainable Energy, LLC.
|
19
|
+
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
|
21
|
+
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
22
|
+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, THE UNITED STATES GOVERNMENT,
|
23
|
+
OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
25
|
+
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
26
|
+
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
27
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1,26 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
###### (Automatically generated documentation)
|
4
|
+
|
5
|
+
# OpenStudio Extension Test Measure
|
6
|
+
|
7
|
+
## Description
|
8
|
+
|
9
|
+
|
10
|
+
## Modeler Description
|
11
|
+
|
12
|
+
|
13
|
+
## Measure Type
|
14
|
+
ModelMeasure
|
15
|
+
|
16
|
+
## Taxonomy
|
17
|
+
|
18
|
+
|
19
|
+
## Arguments
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
This measure does not have any user arguments
|
25
|
+
|
26
|
+
|
@@ -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,72 @@
|
|
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
|
+
begin
|
37
|
+
#load OpenStudio measure libraries from common location
|
38
|
+
require 'openstudio/extension/core/os_lib_helper_methods'
|
39
|
+
rescue LoadError
|
40
|
+
# common location unavailable, load from local resources
|
41
|
+
require_relative 'resources/os_lib_helper_methods'
|
42
|
+
end
|
43
|
+
|
44
|
+
# start the measure
|
45
|
+
class OpenStudioExtensionTestMeasure < OpenStudio::Measure::ModelMeasure
|
46
|
+
# define the name that a user will see
|
47
|
+
def name
|
48
|
+
return 'OpenStudio Extension Test Measure'
|
49
|
+
end
|
50
|
+
|
51
|
+
# define the arguments that the user will input
|
52
|
+
def arguments(model)
|
53
|
+
args = OpenStudio::Measure::OSArgumentVector.new
|
54
|
+
|
55
|
+
return args
|
56
|
+
end
|
57
|
+
|
58
|
+
# define what happens when the measure is run
|
59
|
+
def run(model, runner, user_arguments)
|
60
|
+
super(model, runner, user_arguments)
|
61
|
+
|
62
|
+
# use the built-in error checking
|
63
|
+
if !runner.validateUserArguments(arguments(model), user_arguments)
|
64
|
+
return false
|
65
|
+
end
|
66
|
+
|
67
|
+
return true
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
# this allows the measure to be used by the application
|
72
|
+
OpenStudioExtensionTestMeasure.new.registerWithApplication
|
@@ -0,0 +1,83 @@
|
|
1
|
+
<measure>
|
2
|
+
<schema_version>3.0</schema_version>
|
3
|
+
<name>openstudio_extension_test_measure</name>
|
4
|
+
<uid>36b99a29-41e1-4d85-9272-85d43b966e5a</uid>
|
5
|
+
<version_id>e9fedf04-7619-4c93-a865-0e54adfe3507</version_id>
|
6
|
+
<version_modified>20190430T155209Z</version_modified>
|
7
|
+
<xml_checksum>49BEF039</xml_checksum>
|
8
|
+
<class_name>OpenStudioExtensionTestMeasure</class_name>
|
9
|
+
<display_name>OpenStudio Extension Test Measure</display_name>
|
10
|
+
<description>Rotate your building relative to its current orientation. This will not rotate site shading objects.</description>
|
11
|
+
<modeler_description>Get the North Axis field for the OS:Building object and adjusted it based on the user specified value. If the starting value is 20 degrees and the user value is 5 degrees, then the resulting value is 25 degrees.</modeler_description>
|
12
|
+
<arguments/>
|
13
|
+
<outputs/>
|
14
|
+
<provenances/>
|
15
|
+
<tags>
|
16
|
+
<tag>Envelope.Form</tag>
|
17
|
+
</tags>
|
18
|
+
<attributes>
|
19
|
+
<attribute>
|
20
|
+
<name>Measure Type</name>
|
21
|
+
<value>ModelMeasure</value>
|
22
|
+
<datatype>string</datatype>
|
23
|
+
</attribute>
|
24
|
+
<attribute>
|
25
|
+
<name>Measure Function</name>
|
26
|
+
<value>Measure</value>
|
27
|
+
<datatype>string</datatype>
|
28
|
+
</attribute>
|
29
|
+
<attribute>
|
30
|
+
<name>Requires EnergyPlus Results</name>
|
31
|
+
<value>false</value>
|
32
|
+
<datatype>boolean</datatype>
|
33
|
+
</attribute>
|
34
|
+
<attribute>
|
35
|
+
<name>Uses SketchUp API</name>
|
36
|
+
<value>false</value>
|
37
|
+
<datatype>boolean</datatype>
|
38
|
+
</attribute>
|
39
|
+
</attributes>
|
40
|
+
<files>
|
41
|
+
<file>
|
42
|
+
<filename>LICENSE.md</filename>
|
43
|
+
<filetype>md</filetype>
|
44
|
+
<usage_type>license</usage_type>
|
45
|
+
<checksum>9640B6CB</checksum>
|
46
|
+
</file>
|
47
|
+
<file>
|
48
|
+
<filename>README.md.erb</filename>
|
49
|
+
<filetype>erb</filetype>
|
50
|
+
<usage_type>readmeerb</usage_type>
|
51
|
+
<checksum>703C9964</checksum>
|
52
|
+
</file>
|
53
|
+
<file>
|
54
|
+
<filename>README.md</filename>
|
55
|
+
<filetype>md</filetype>
|
56
|
+
<usage_type>readme</usage_type>
|
57
|
+
<checksum>7258830F</checksum>
|
58
|
+
</file>
|
59
|
+
<file>
|
60
|
+
<filename>OpenStudioExtensionTestMeasure_Test.rb</filename>
|
61
|
+
<filetype>rb</filetype>
|
62
|
+
<usage_type>test</usage_type>
|
63
|
+
<checksum>8452EA9A</checksum>
|
64
|
+
</file>
|
65
|
+
<file>
|
66
|
+
<version>
|
67
|
+
<software_program>OpenStudio</software_program>
|
68
|
+
<identifier>2.0.0</identifier>
|
69
|
+
<min_compatible>2.0.0</min_compatible>
|
70
|
+
</version>
|
71
|
+
<filename>measure.rb</filename>
|
72
|
+
<filetype>rb</filetype>
|
73
|
+
<usage_type>script</usage_type>
|
74
|
+
<checksum>E5793A49</checksum>
|
75
|
+
</file>
|
76
|
+
<file>
|
77
|
+
<filename>os_lib_helper_methods.rb</filename>
|
78
|
+
<filetype>rb</filetype>
|
79
|
+
<usage_type>resource</usage_type>
|
80
|
+
<checksum>22515A49</checksum>
|
81
|
+
</file>
|
82
|
+
</files>
|
83
|
+
</measure>
|
@@ -0,0 +1,399 @@
|
|
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 OsLib_HelperMethods
|
37
|
+
# populate choice argument from model objects
|
38
|
+
def self.populateChoiceArgFromModelObjects(model, modelObject_args_hash, includeBuilding = nil)
|
39
|
+
# populate choice argument for constructions that are applied to surfaces in the model
|
40
|
+
modelObject_handles = OpenStudio::StringVector.new
|
41
|
+
modelObject_display_names = OpenStudio::StringVector.new
|
42
|
+
|
43
|
+
# looping through sorted hash of constructions
|
44
|
+
modelObject_args_hash.sort.map do |key, value|
|
45
|
+
modelObject_handles << value.handle.to_s
|
46
|
+
modelObject_display_names << key
|
47
|
+
end
|
48
|
+
|
49
|
+
unless includeBuilding.nil?
|
50
|
+
# add building to string vector with space type
|
51
|
+
building = model.getBuilding
|
52
|
+
modelObject_handles << building.handle.to_s
|
53
|
+
modelObject_display_names << includeBuilding
|
54
|
+
end
|
55
|
+
|
56
|
+
result = { 'modelObject_handles' => modelObject_handles, 'modelObject_display_names' => modelObject_display_names }
|
57
|
+
return result
|
58
|
+
end
|
59
|
+
|
60
|
+
# create variables in run from user arguments
|
61
|
+
def self.createRunVariables(runner, model, user_arguments, arguments)
|
62
|
+
result = {}
|
63
|
+
|
64
|
+
error = false
|
65
|
+
# use the built-in error checking
|
66
|
+
unless runner.validateUserArguments(arguments, user_arguments)
|
67
|
+
error = true
|
68
|
+
runner.registerError('Invalid argument values.')
|
69
|
+
end
|
70
|
+
|
71
|
+
user_arguments.each do |argument|
|
72
|
+
# get argument info
|
73
|
+
arg = user_arguments[argument]
|
74
|
+
arg_type = arg.print.lines($/)[1]
|
75
|
+
|
76
|
+
# create argument variable
|
77
|
+
if arg_type.include? 'Double, Required'
|
78
|
+
eval("result[\"#{arg.name}\"] = runner.getDoubleArgumentValue(\"#{arg.name}\", user_arguments)")
|
79
|
+
elsif arg_type.include? 'Integer, Required'
|
80
|
+
eval("result[\"#{arg.name}\"] = runner.getIntegerArgumentValue(\"#{arg.name}\", user_arguments)")
|
81
|
+
elsif arg_type.include? 'String, Required'
|
82
|
+
eval("result[\"#{arg.name}\"] = runner.getStringArgumentValue(\"#{arg.name}\", user_arguments)")
|
83
|
+
elsif arg_type.include? 'Boolean, Required'
|
84
|
+
eval("result[\"#{arg.name}\"] = runner.getBoolArgumentValue(\"#{arg.name}\", user_arguments)")
|
85
|
+
elsif arg_type.include? 'Choice, Required'
|
86
|
+
eval("result[\"#{arg.name}\"] = runner.getStringArgumentValue(\"#{arg.name}\", user_arguments)")
|
87
|
+
else
|
88
|
+
puts 'not setup to handle all argument types yet, or any optional arguments'
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
if error
|
93
|
+
return false
|
94
|
+
else
|
95
|
+
return result
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
# check choice argument made from model objects
|
100
|
+
def self.checkChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments)
|
101
|
+
apply_to_building = false
|
102
|
+
modelObject = nil
|
103
|
+
if object.empty?
|
104
|
+
handle = runner.getStringArgumentValue(variableName, user_arguments)
|
105
|
+
if handle.empty?
|
106
|
+
runner.registerError("No #{variableName} was chosen.") # this logic makes this not work on an optional model object argument
|
107
|
+
else
|
108
|
+
runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.")
|
109
|
+
end
|
110
|
+
return false
|
111
|
+
else
|
112
|
+
if !eval("object.get.#{to_ObjectType}").empty?
|
113
|
+
modelObject = eval("object.get.#{to_ObjectType}").get
|
114
|
+
elsif !object.get.to_Building.empty?
|
115
|
+
apply_to_building = true
|
116
|
+
else
|
117
|
+
runner.registerError("Script Error - argument not showing up as #{variableName}.")
|
118
|
+
return false
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building }
|
123
|
+
end
|
124
|
+
|
125
|
+
# check choice argument made from model objects
|
126
|
+
def self.checkOptionalChoiceArgFromModelObjects(object, variableName, to_ObjectType, runner, user_arguments)
|
127
|
+
apply_to_building = false
|
128
|
+
modelObject = nil
|
129
|
+
if object.empty?
|
130
|
+
handle = runner.getOptionalStringArgumentValue(variableName, user_arguments)
|
131
|
+
if handle.empty?
|
132
|
+
# do nothing, this is a valid option
|
133
|
+
puts 'hello'
|
134
|
+
modelObject = nil
|
135
|
+
apply_to_building = false
|
136
|
+
else
|
137
|
+
runner.registerError("The selected #{variableName} with handle '#{handle}' was not found in the model. It may have been removed by another measure.")
|
138
|
+
return false
|
139
|
+
end
|
140
|
+
else
|
141
|
+
if !eval("object.get.#{to_ObjectType}").empty?
|
142
|
+
modelObject = eval("object.get.#{to_ObjectType}").get
|
143
|
+
elsif !object.get.to_Building.empty?
|
144
|
+
apply_to_building = true
|
145
|
+
else
|
146
|
+
runner.registerError("Script Error - argument not showing up as #{variableName}.")
|
147
|
+
return false
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
result = { 'modelObject' => modelObject, 'apply_to_building' => apply_to_building }
|
152
|
+
end
|
153
|
+
|
154
|
+
# check value of double arguments
|
155
|
+
def self.checkDoubleAndIntegerArguments(runner, user_arguments, arg_check_hash)
|
156
|
+
error = false
|
157
|
+
|
158
|
+
# get hash values
|
159
|
+
min = arg_check_hash['min']
|
160
|
+
max = arg_check_hash['max']
|
161
|
+
min_eq_bool = arg_check_hash['min_eq_bool']
|
162
|
+
max_eq_bool = arg_check_hash['max_eq_bool']
|
163
|
+
|
164
|
+
arg_check_hash['arg_array'].each do |argument|
|
165
|
+
argument = user_arguments[argument]
|
166
|
+
|
167
|
+
# get arg values
|
168
|
+
arg_value = nil
|
169
|
+
if argument.hasValue
|
170
|
+
arg_value = argument.valueDisplayName.to_f # instead of valueAsDouble so it allows integer arguments as well
|
171
|
+
elsif argument.hasDefaultValue
|
172
|
+
arg_value = argument.defaultValueDisplayName.to_f
|
173
|
+
end
|
174
|
+
arg_display = argument.displayName
|
175
|
+
|
176
|
+
unless min.nil?
|
177
|
+
if min_eq_bool
|
178
|
+
if arg_value < min
|
179
|
+
runner.registerError("Please enter value greater than or equal to #{min} for #{arg_display}.") # add in argument display name
|
180
|
+
error = true
|
181
|
+
end
|
182
|
+
else
|
183
|
+
if arg_value <= min
|
184
|
+
runner.registerError("Please enter value greater than #{min} for #{arg_display}.") # add in argument display name
|
185
|
+
error = true
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
189
|
+
unless max.nil?
|
190
|
+
if max_eq_bool
|
191
|
+
if arg_value > max
|
192
|
+
runner.registerError("Please enter value less than or equal to #{max} for #{arg_display}.") # add in argument display name
|
193
|
+
error = true
|
194
|
+
end
|
195
|
+
else
|
196
|
+
if arg_value >= max
|
197
|
+
runner.registerError("Please enter value less than #{max} for #{arg_display}.") # add in argument display name
|
198
|
+
error = true
|
199
|
+
end
|
200
|
+
end
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
204
|
+
# check for any errors
|
205
|
+
if error
|
206
|
+
return false
|
207
|
+
else
|
208
|
+
return true
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
# open channel to log info/warning/error messages
|
213
|
+
def self.setup_log_msgs(runner, debug = false)
|
214
|
+
# Open a channel to log info/warning/error messages
|
215
|
+
@msg_log = OpenStudio::StringStreamLogSink.new
|
216
|
+
if debug
|
217
|
+
@msg_log.setLogLevel(OpenStudio::Debug)
|
218
|
+
else
|
219
|
+
@msg_log.setLogLevel(OpenStudio::Info)
|
220
|
+
end
|
221
|
+
@start_time = Time.new
|
222
|
+
@runner = runner
|
223
|
+
end
|
224
|
+
|
225
|
+
# Get all the log messages and put into output
|
226
|
+
# for users to see.
|
227
|
+
def self.log_msgs
|
228
|
+
@msg_log.logMessages.each do |msg|
|
229
|
+
# DLM: you can filter on log channel here for now
|
230
|
+
if /openstudio.*/.match(msg.logChannel) # /openstudio\.model\..*/
|
231
|
+
# Skip certain messages that are irrelevant/misleading
|
232
|
+
next if msg.logMessage.include?('Skipping layer') || # Annoying/bogus "Skipping layer" warnings
|
233
|
+
msg.logChannel.include?('runmanager') || # RunManager messages
|
234
|
+
msg.logChannel.include?('setFileExtension') || # .ddy extension unexpected
|
235
|
+
msg.logChannel.include?('Translator') || # Forward translator and geometry translator
|
236
|
+
msg.logMessage.include?('UseWeatherFile') # 'UseWeatherFile' is not yet a supported option for YearDescription
|
237
|
+
|
238
|
+
# Report the message in the correct way
|
239
|
+
if msg.logLevel == OpenStudio::Info
|
240
|
+
@runner.registerInfo(msg.logMessage)
|
241
|
+
elsif msg.logLevel == OpenStudio::Warn
|
242
|
+
@runner.registerWarning("[#{msg.logChannel}] #{msg.logMessage}")
|
243
|
+
elsif msg.logLevel == OpenStudio::Error
|
244
|
+
@runner.registerError("[#{msg.logChannel}] #{msg.logMessage}")
|
245
|
+
elsif msg.logLevel == OpenStudio::Debug && @debug
|
246
|
+
@runner.registerInfo("DEBUG - #{msg.logMessage}")
|
247
|
+
end
|
248
|
+
end
|
249
|
+
end
|
250
|
+
@runner.registerInfo("Total Time = #{(Time.new - @start_time).round}sec.")
|
251
|
+
end
|
252
|
+
|
253
|
+
def self.check_upstream_measure_for_arg(runner, arg_name)
|
254
|
+
# 2.x methods (currently setup for measure display name but snake_case arg names)
|
255
|
+
arg_name_value = {}
|
256
|
+
runner.workflow.workflowSteps.each do |step|
|
257
|
+
if step.to_MeasureStep.is_initialized
|
258
|
+
measure_step = step.to_MeasureStep.get
|
259
|
+
|
260
|
+
measure_name = measure_step.measureDirName
|
261
|
+
if measure_step.name.is_initialized
|
262
|
+
measure_name = measure_step.name.get # this is instance name in PAT
|
263
|
+
end
|
264
|
+
if measure_step.result.is_initialized
|
265
|
+
result = measure_step.result.get
|
266
|
+
result.stepValues.each do |arg|
|
267
|
+
name = arg.name
|
268
|
+
value = arg.valueAsVariant.to_s
|
269
|
+
if name == arg_name
|
270
|
+
arg_name_value[:value] = value
|
271
|
+
arg_name_value[:measure_name] = measure_name
|
272
|
+
return arg_name_value # stop after find first one
|
273
|
+
end
|
274
|
+
end
|
275
|
+
else
|
276
|
+
# puts "No result for #{measure_name}"
|
277
|
+
end
|
278
|
+
else
|
279
|
+
# puts "This step is not a measure"
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
return arg_name_value
|
284
|
+
end
|
285
|
+
|
286
|
+
# populate choice argument from model objects. areaType should be string like "floorArea" or "exteriorArea"
|
287
|
+
# note: it seems like spaceType.floorArea does account for multiplier, so I don't have to call this method unless I have a custom collection of spaces.
|
288
|
+
def self.getAreaOfSpacesInArray(model, spaceArray, areaType = 'floorArea')
|
289
|
+
# find selected floor spaces, make array and get floor area.
|
290
|
+
totalArea = 0
|
291
|
+
spaceAreaHash = {}
|
292
|
+
spaceArray.each do |space|
|
293
|
+
spaceArea = eval("space.#{areaType}*space.multiplier")
|
294
|
+
spaceAreaHash[space] = spaceArea
|
295
|
+
totalArea += spaceArea
|
296
|
+
end
|
297
|
+
|
298
|
+
result = { 'totalArea' => totalArea, 'spaceAreaHash' => spaceAreaHash }
|
299
|
+
return result
|
300
|
+
end
|
301
|
+
|
302
|
+
# runs conversion and neat string, and returns value with units in string, optionally before or after the value
|
303
|
+
def self.neatConvertWithUnitDisplay(double, fromString, toString, digits, unitBefore = false, unitAfter = true, space = true, parentheses = true)
|
304
|
+
# convert units
|
305
|
+
doubleConverted = OpenStudio.convert(double, fromString, toString)
|
306
|
+
if !doubleConverted.nil?
|
307
|
+
doubleConverted = doubleConverted.get
|
308
|
+
else
|
309
|
+
puts "Couldn't convert values, check string choices passed in. From: #{fromString}, To: #{toString}"
|
310
|
+
end
|
311
|
+
|
312
|
+
# get neat version of converted
|
313
|
+
neatConverted = OpenStudio.toNeatString(doubleConverted, digits, true)
|
314
|
+
|
315
|
+
# add prefix
|
316
|
+
if unitBefore
|
317
|
+
if space == true && parentheses == true
|
318
|
+
prefix = "(#{toString}) "
|
319
|
+
elsif space == true && parentheses == false
|
320
|
+
prefix = "(#{toString})"
|
321
|
+
elsif space == false && parentheses == true
|
322
|
+
prefix = "#{toString} "
|
323
|
+
else
|
324
|
+
prefix = toString.to_s
|
325
|
+
end
|
326
|
+
else
|
327
|
+
prefix = ''
|
328
|
+
end
|
329
|
+
|
330
|
+
# add suffix
|
331
|
+
if unitAfter
|
332
|
+
if space == true && parentheses == true
|
333
|
+
suffix = " (#{toString})"
|
334
|
+
elsif space == true && parentheses == false
|
335
|
+
suffix = "(#{toString})"
|
336
|
+
elsif space == false && parentheses == true
|
337
|
+
suffix = " #{toString}"
|
338
|
+
else
|
339
|
+
suffix = toString.to_s
|
340
|
+
end
|
341
|
+
else
|
342
|
+
suffix = ''
|
343
|
+
end
|
344
|
+
|
345
|
+
finalString = "#{prefix}#{neatConverted}#{suffix}"
|
346
|
+
|
347
|
+
return finalString
|
348
|
+
end
|
349
|
+
|
350
|
+
# helper that loops through lifecycle costs getting total costs under "Construction" and add to counter if occurs during year 0
|
351
|
+
def self.getTotalCostForObjects(objectArray, category = 'Construction', onlyYearFromStartZero = true)
|
352
|
+
counter = 0
|
353
|
+
objectArray.each do |object|
|
354
|
+
object_LCCs = object.lifeCycleCosts
|
355
|
+
object_LCCs.each do |object_LCC|
|
356
|
+
if object_LCC.category == category
|
357
|
+
if onlyYearFromStartZero == false || object_LCC.yearsFromStart == 0
|
358
|
+
counter += object_LCC.totalCost
|
359
|
+
end
|
360
|
+
end
|
361
|
+
end
|
362
|
+
end
|
363
|
+
|
364
|
+
return counter
|
365
|
+
end
|
366
|
+
|
367
|
+
# helper that loops through lifecycle costs getting total costs under "Construction" and add to counter if occurs during year 0
|
368
|
+
def self.getSpaceTypeStandardsInformation(spaceTypeArray)
|
369
|
+
# hash of space types
|
370
|
+
spaceTypeStandardsInfoHash = {}
|
371
|
+
|
372
|
+
spaceTypeArray.each do |spaceType|
|
373
|
+
# get standards building
|
374
|
+
if !spaceType.standardsBuildingType.empty?
|
375
|
+
standardsBuilding = spaceType.standardsBuildingType.get
|
376
|
+
else
|
377
|
+
standardsBuilding = nil
|
378
|
+
end
|
379
|
+
|
380
|
+
# get standards space type
|
381
|
+
if !spaceType.standardsSpaceType.empty?
|
382
|
+
standardsSpaceType = spaceType.standardsSpaceType.get
|
383
|
+
else
|
384
|
+
standardsSpaceType = nil
|
385
|
+
end
|
386
|
+
|
387
|
+
# populate hash
|
388
|
+
spaceTypeStandardsInfoHash[spaceType] = [standardsBuilding, standardsSpaceType]
|
389
|
+
end
|
390
|
+
|
391
|
+
return spaceTypeStandardsInfoHash
|
392
|
+
end
|
393
|
+
|
394
|
+
# OpenStudio has built in toNeatString method
|
395
|
+
# OpenStudio::toNeatString(double,2,true)# double,decimals, show commas
|
396
|
+
|
397
|
+
# OpenStudio has built in helper for unit conversion. That can be done using OpenStudio::convert() as shown below.
|
398
|
+
# OpenStudio::convert(double,"from unit string","to unit string").get
|
399
|
+
end
|