Skip to content

Commit

Permalink
Merge pull request #1922 from NREL/fix-tcm-str-not-dbl
Browse files Browse the repository at this point in the history
Change temperature capacitance multiplier argument from string to double
  • Loading branch information
shorowit authored Feb 6, 2025
2 parents fe64eb4 + 2b4dce0 commit b2a89e8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion BuildResidentialHPXML/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Enter a date range like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default
Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-simulation-control'>HPXML Simulation Control</a>) is used.

- **Name:** ``simulation_control_temperature_capacitance_multiplier``
- **Type:** ``String``
- **Type:** ``Double``

- **Required:** ``false``

Expand Down
2 changes: 1 addition & 1 deletion BuildResidentialHPXML/measure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument
arg.setDescription("Enter a date range like 'Mar 15 - Dec 15'. If not provided, the OS-HPXML default (see <a href='#{docs_base_url}#hpxml-building-site'>HPXML Building Site</a>) is used.")
args << arg

arg = OpenStudio::Measure::OSArgument::makeStringArgument('simulation_control_temperature_capacitance_multiplier', false)
arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('simulation_control_temperature_capacitance_multiplier', false)
arg.setDisplayName('Simulation Control: Temperature Capacitance Multiplier')
arg.setDescription("Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see <a href='#{docs_base_url}#hpxml-simulation-control'>HPXML Simulation Control</a>) is used.")
args << arg
Expand Down
10 changes: 5 additions & 5 deletions BuildResidentialHPXML/measure.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<schema_version>3.1</schema_version>
<name>build_residential_hpxml</name>
<uid>a13a8983-2b01-4930-8af2-42030b6e4233</uid>
<version_id>1fbc249e-108c-4567-82f0-a04bc6a3374c</version_id>
<version_modified>2025-01-15T22:36:22Z</version_modified>
<version_id>48a9fb98-bc96-4ccc-97a5-c7aaac3f2199</version_id>
<version_modified>2025-02-06T21:09:42Z</version_modified>
<xml_checksum>2C38F48B</xml_checksum>
<class_name>BuildResidentialHPXML</class_name>
<display_name>HPXML Builder</display_name>
Expand Down Expand Up @@ -149,7 +149,7 @@
<name>simulation_control_temperature_capacitance_multiplier</name>
<display_name>Simulation Control: Temperature Capacitance Multiplier</display_name>
<description>Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default (see &lt;a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-simulation-control'&gt;HPXML Simulation Control&lt;/a&gt;) is used.</description>
<type>String</type>
<type>Double</type>
<required>false</required>
<model_dependent>false</model_dependent>
</argument>
Expand Down Expand Up @@ -7527,7 +7527,7 @@
<filename>README.md</filename>
<filetype>md</filetype>
<usage_type>readme</usage_type>
<checksum>ECAEDA1E</checksum>
<checksum>47F34ABF</checksum>
</file>
<file>
<filename>README.md.erb</filename>
Expand All @@ -7544,7 +7544,7 @@
<filename>measure.rb</filename>
<filetype>rb</filetype>
<usage_type>script</usage_type>
<checksum>DF604C07</checksum>
<checksum>ACBA8A93</checksum>
</file>
<file>
<filename>constants.rb</filename>
Expand Down

0 comments on commit b2a89e8

Please sign in to comment.