openstudio-load-flexibility-measures 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.DS_Store +0 -0
- data/.gitignore +36 -0
- data/.rubocop.yml +9 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +3 -0
- data/README.md +42 -0
- data/Rakefile +15 -0
- 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/lib/measures/add_central_hpwh_for_load_flexibility/LICENSE.md +1 -0
- data/lib/measures/add_central_hpwh_for_load_flexibility/README.md +186 -0
- data/lib/measures/add_central_hpwh_for_load_flexibility/README.md.erb +42 -0
- data/lib/measures/add_central_hpwh_for_load_flexibility/docs/Flexible Domestic Hot Water Implementation Guide.pdf +0 -0
- data/lib/measures/add_central_hpwh_for_load_flexibility/measure.rb +648 -0
- data/lib/measures/add_central_hpwh_for_load_flexibility/measure.xml +398 -0
- data/lib/measures/add_central_hpwh_for_load_flexibility/tests/SmallHotel-2A.osm +42893 -0
- data/lib/measures/add_central_hpwh_for_load_flexibility/tests/add_central_hpwh_for_load_flexibility.rb +98 -0
- data/lib/measures/add_distributed_ice_storage_to_air_loop_for_load_flexibility/LICENSE.md +13 -0
- data/lib/measures/add_distributed_ice_storage_to_air_loop_for_load_flexibility/README.md +189 -0
- data/lib/measures/add_distributed_ice_storage_to_air_loop_for_load_flexibility/measure.rb +689 -0
- data/lib/measures/add_distributed_ice_storage_to_air_loop_for_load_flexibility/measure.xml +253 -0
- data/lib/measures/add_distributed_ice_storage_to_air_loop_for_load_flexibility/resources/TESCurves.idf +1059 -0
- data/lib/measures/add_distributed_ice_storage_to_air_loop_for_load_flexibility/tests/MeasureTest.osm +9507 -0
- data/lib/measures/add_distributed_ice_storage_to_air_loop_for_load_flexibility/tests/add_distributed_ice_storage_to_air_loop_for_load_flexibility_test.rb +96 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/LICENSE.md +13 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/README.md +264 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/README.md.erb +42 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/docs/Ice Measure Implementation Guide.pdf +0 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/measure.rb +1310 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/measure.xml +506 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/resources/OsLib_Schedules.rb +173 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/tests/add_ice_storage_to_plant_loop_for_load_flexibility_test.rb +202 -0
- data/lib/measures/add_ice_storage_to_plant_loop_for_load_flexibility/tests/ice_test_model.osm +21523 -0
- data/lib/openstudio/load_flexibility_measures.rb +50 -0
- data/lib/openstudio/load_flexibility_measures/version.rb +40 -0
- data/openstudio-load-flexibility-measures.gemspec +32 -0
- metadata +172 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 34389d51f3a0e19bedbb600916df148ef929b1c8a1cf8eff8291f56724ea1011
|
4
|
+
data.tar.gz: 1964e592d6849974bda5e7605b7143a7ea5aaab7a5c1f24b7774a03bfc9220db
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 16599341e89e6a5db13f8093c5086d435f4ac3c8bb8716ed9e9237c584a4442864ca3c70fc987458a2d268b68edd3d0d37b5e918a7e107d6368e210da463bafa
|
7
|
+
data.tar.gz: 4eab8b7a18b262ed03ae7eeaa22156580ed629df1a4b40fdc91046d1eaab5af49e8a87b3e5b41ee4ff8fe4f0ef9969ed199e3d3759df256cac7b6131836edfd0
|
data/.DS_Store
ADDED
Binary file
|
data/.gitignore
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/.ruby-version
|
4
|
+
/Gemfile.lock
|
5
|
+
/gems
|
6
|
+
/_yardoc/
|
7
|
+
/coverage/
|
8
|
+
/doc/
|
9
|
+
/pkg/
|
10
|
+
/spec/reports/
|
11
|
+
/spec/test/
|
12
|
+
/tmp/
|
13
|
+
/test/
|
14
|
+
/lib/measures/test_results
|
15
|
+
/lib/measures/.rubocop*
|
16
|
+
/lib/measures/staged
|
17
|
+
/lib/measures/staged/*
|
18
|
+
|
19
|
+
# rspec failure tracking
|
20
|
+
.rspec_status
|
21
|
+
|
22
|
+
# Ignore IDE files
|
23
|
+
/.idea
|
24
|
+
*.rubocop-http*
|
25
|
+
|
26
|
+
# measures tests
|
27
|
+
lib/measures/.rubocop.yml
|
28
|
+
lib/measures/test_results/*
|
29
|
+
lib/measures/*/tests/output
|
30
|
+
lib/measures/*/tests/output/*
|
31
|
+
|
32
|
+
# runner conf
|
33
|
+
runner.conf
|
34
|
+
|
35
|
+
# DS_Store
|
36
|
+
lib/.DS_Store
|
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# Openstudio Load Flexibility Measures Gem
|
2
|
+
|
3
|
+
This gem contains measures for thermal energy storage for building cooling and domestic hot water heating.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'openstudio-load-flexibility-measures'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install 'openstudio-load-flexibility-measures'
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
The openstudio-load-flexibility-measures gem contains measures to apply thermal load flexibility to a building model. The current version contains the following:
|
24
|
+
* Add Central HPWH for Load Flexibility
|
25
|
+
* Add Distributed Ice Storage to Air Loop for Load Flexibility
|
26
|
+
* Add Ice Storage to Plant Loop for Load Flexibility
|
27
|
+
|
28
|
+
Detailed instructions for usage are included in each measure's respective README.md and docs folder.
|
29
|
+
|
30
|
+
# Releasing
|
31
|
+
|
32
|
+
* Update CHANGELOG.md
|
33
|
+
* Run rake rubocop:auto_correct
|
34
|
+
* Update version in `/lib/openstudio/openstudio-load-flexibility-measures/version.rb`
|
35
|
+
* Create PR to master, after tests and reviews complete, then merge
|
36
|
+
* Locally - from the master branch, run rake release
|
37
|
+
* Release via github
|
38
|
+
* On GitHub, go to the releases page and update the latest release tag. Name it “Version x.y.z” and copy the CHANGELOG entry into the description box.
|
39
|
+
|
40
|
+
## TODO
|
41
|
+
|
42
|
+
- [ ] Update usage with links to respective measure documentation
|
data/Rakefile
ADDED
@@ -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/load_flexibility_measures'
|
12
|
+
os_extension = OpenStudio::Extension::RakeTask.new
|
13
|
+
os_extension.set_extension_class(OpenStudio::LoadFlexibilityMeasures::LoadFlexibilityMeasures)
|
14
|
+
|
15
|
+
task default: :spec
|
@@ -0,0 +1,27 @@
|
|
1
|
+
OpenStudio(R), Copyright (c) 2008-2020, 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,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-2020, 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,34 @@
|
|
1
|
+
# *******************************************************************************
|
2
|
+
# OpenStudio(R), Copyright (c) 2008-2020, 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 @@
|
|
1
|
+
Insert your license here
|
@@ -0,0 +1,186 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
###### (Automatically generated documentation)
|
4
|
+
|
5
|
+
# flexible_domestic_hot_water
|
6
|
+
|
7
|
+
## Description
|
8
|
+
This measure adds or replaces existing domestic hot water heater with air source heat pump system and allows for the addition of multiple daily flexible control time windows. The heater/tank system may charge at maximum capacity up to an elevated temperature, or float without any heat addition for a specified timeframe down to a minimum tank temperature.
|
9
|
+
|
10
|
+
## Modeler Description
|
11
|
+
This measure allows selection between three heat pump water heater modeling approaches in EnergyPlus.The user may select between the pumped-condenser or wrapped-condenser objects. They may also elect to use a simplified calculation which does not use the heat pump objects, but instead used an electric resistance heater and approximates the equivalent electrical input that would be required from a heat pump. This expedites simulation at the expense of accuracy.
|
12
|
+
The flexibility of the system is based on user-defined temperatures and times, which are converted into schedule objects. There are four flexibility options. (1) None: normal operation of the DHW system at a fixed tank temperature setpoint. (2) Charge - Heat Pump: the tank is charged to a maximum temperature using only the heat pump. (3) Charge - Electric: the tank is charged using internal electric resistance heaters to a maximum temperature. (4) Float: all heating elements are turned-off for a user-defined time period unless the tank temperature falls below a minimum value. The heat pump will be prioritized in a low tank temperature event, with the electric resistance heaters serving as back-up.
|
13
|
+
|
14
|
+
|
15
|
+
## Measure Type
|
16
|
+
ModelMeasure
|
17
|
+
|
18
|
+
## Taxonomy
|
19
|
+
|
20
|
+
|
21
|
+
## Arguments
|
22
|
+
|
23
|
+
|
24
|
+
### Remove existing water heater on selected loop?
|
25
|
+
|
26
|
+
**Name:** remove_wh,
|
27
|
+
**Type:** Boolean,
|
28
|
+
**Units:** ,
|
29
|
+
**Required:** true,
|
30
|
+
**Model Dependent:** false
|
31
|
+
|
32
|
+
### Select hot water loop
|
33
|
+
The water tank will be placed on the supply side of this loop.
|
34
|
+
**Name:** loop,
|
35
|
+
**Type:** Choice,
|
36
|
+
**Units:** ,
|
37
|
+
**Required:** true,
|
38
|
+
**Model Dependent:** false
|
39
|
+
|
40
|
+
### Select thermal zone
|
41
|
+
This is where the water heater tank will be placed
|
42
|
+
**Name:** zone,
|
43
|
+
**Type:** Choice,
|
44
|
+
**Units:** ,
|
45
|
+
**Required:** true,
|
46
|
+
**Model Dependent:** false
|
47
|
+
|
48
|
+
### Select heat pump water heater type
|
49
|
+
|
50
|
+
**Name:** type,
|
51
|
+
**Type:** Choice,
|
52
|
+
**Units:** ,
|
53
|
+
**Required:** true,
|
54
|
+
**Model Dependent:** false
|
55
|
+
|
56
|
+
### Set hot water tank volume
|
57
|
+
[gal]
|
58
|
+
**Name:** vol,
|
59
|
+
**Type:** Double,
|
60
|
+
**Units:** ,
|
61
|
+
**Required:** true,
|
62
|
+
**Model Dependent:** false
|
63
|
+
|
64
|
+
### Set heat pump heating capacity
|
65
|
+
[kW]
|
66
|
+
**Name:** cap,
|
67
|
+
**Type:** Double,
|
68
|
+
**Units:** ,
|
69
|
+
**Required:** true,
|
70
|
+
**Model Dependent:** false
|
71
|
+
|
72
|
+
### Set heat pump rated COP (heating)
|
73
|
+
[-]
|
74
|
+
**Name:** cop,
|
75
|
+
**Type:** Double,
|
76
|
+
**Units:** ,
|
77
|
+
**Required:** true,
|
78
|
+
**Model Dependent:** false
|
79
|
+
|
80
|
+
### Set electric backup heating capacity
|
81
|
+
[kW]
|
82
|
+
**Name:** bu_cap,
|
83
|
+
**Type:** Double,
|
84
|
+
**Units:** ,
|
85
|
+
**Required:** true,
|
86
|
+
**Model Dependent:** false
|
87
|
+
|
88
|
+
### Set maximum tank temperature
|
89
|
+
[F]
|
90
|
+
**Name:** max_temp,
|
91
|
+
**Type:** Double,
|
92
|
+
**Units:** ,
|
93
|
+
**Required:** true,
|
94
|
+
**Model Dependent:** false
|
95
|
+
|
96
|
+
### Set minimum tank temperature during float
|
97
|
+
[F]
|
98
|
+
**Name:** min_temp,
|
99
|
+
**Type:** Double,
|
100
|
+
**Units:** ,
|
101
|
+
**Required:** true,
|
102
|
+
**Model Dependent:** false
|
103
|
+
|
104
|
+
### Set deadband temperature difference between heat pump and electric backup
|
105
|
+
[F]
|
106
|
+
**Name:** db_temp,
|
107
|
+
**Type:** Double,
|
108
|
+
**Units:** ,
|
109
|
+
**Required:** true,
|
110
|
+
**Model Dependent:** false
|
111
|
+
|
112
|
+
### Select reference tank setpoint temperature schedule
|
113
|
+
|
114
|
+
**Name:** sched,
|
115
|
+
**Type:** Choice,
|
116
|
+
**Units:** ,
|
117
|
+
**Required:** true,
|
118
|
+
**Model Dependent:** false
|
119
|
+
|
120
|
+
### Daily Flex Period 1:
|
121
|
+
Applies every day in the full run period.
|
122
|
+
**Name:** flex0,
|
123
|
+
**Type:** Choice,
|
124
|
+
**Units:** ,
|
125
|
+
**Required:** true,
|
126
|
+
**Model Dependent:** false
|
127
|
+
|
128
|
+
### Use 24-Hour Format
|
129
|
+
|
130
|
+
**Name:** flex_hrs0,
|
131
|
+
**Type:** String,
|
132
|
+
**Units:** ,
|
133
|
+
**Required:** false,
|
134
|
+
**Model Dependent:** false
|
135
|
+
|
136
|
+
### Daily Flex Period 2:
|
137
|
+
Applies every day in the full run period.
|
138
|
+
**Name:** flex1,
|
139
|
+
**Type:** Choice,
|
140
|
+
**Units:** ,
|
141
|
+
**Required:** true,
|
142
|
+
**Model Dependent:** false
|
143
|
+
|
144
|
+
### Use 24-Hour Format
|
145
|
+
|
146
|
+
**Name:** flex_hrs1,
|
147
|
+
**Type:** String,
|
148
|
+
**Units:** ,
|
149
|
+
**Required:** false,
|
150
|
+
**Model Dependent:** false
|
151
|
+
|
152
|
+
### Daily Flex Period 3:
|
153
|
+
Applies every day in the full run period.
|
154
|
+
**Name:** flex2,
|
155
|
+
**Type:** Choice,
|
156
|
+
**Units:** ,
|
157
|
+
**Required:** true,
|
158
|
+
**Model Dependent:** false
|
159
|
+
|
160
|
+
### Use 24-Hour Format
|
161
|
+
|
162
|
+
**Name:** flex_hrs2,
|
163
|
+
**Type:** String,
|
164
|
+
**Units:** ,
|
165
|
+
**Required:** false,
|
166
|
+
**Model Dependent:** false
|
167
|
+
|
168
|
+
### Daily Flex Period 4:
|
169
|
+
Applies every day in the full run period.
|
170
|
+
**Name:** flex3,
|
171
|
+
**Type:** Choice,
|
172
|
+
**Units:** ,
|
173
|
+
**Required:** true,
|
174
|
+
**Model Dependent:** false
|
175
|
+
|
176
|
+
### Use 24-Hour Format
|
177
|
+
|
178
|
+
**Name:** flex_hrs3,
|
179
|
+
**Type:** String,
|
180
|
+
**Units:** ,
|
181
|
+
**Required:** false,
|
182
|
+
**Model Dependent:** false
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
|