-
Notifications
You must be signed in to change notification settings - Fork 208
/
Copy pathSizingSystem_Impl.hpp
316 lines (176 loc) · 11.4 KB
/
SizingSystem_Impl.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/***********************************************************************************************************************
* OpenStudio(R), Copyright (c) 2008-2021, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
* following conditions are met:
*
* (1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following
* disclaimer.
*
* (2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided with the distribution.
*
* (3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse or promote products
* derived from this software without specific prior written permission from the respective party.
*
* (4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other derivative works
* may not use the "OpenStudio" trademark, "OS", "os", or any other confusingly similar designation without specific prior
* written permission from Alliance for Sustainable Energy, LLC.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED
* STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***********************************************************************************************************************/
#ifndef MODEL_SIZINGSYSTEM_IMPL_HPP
#define MODEL_SIZINGSYSTEM_IMPL_HPP
#include "ModelAPI.hpp"
#include "ModelObject_Impl.hpp"
namespace openstudio {
namespace model {
class AirLoopHVAC;
namespace detail {
/** SizingSystem_Impl is a ModelObject_Impl that is the implementation class for SizingSystem.*/
class MODEL_API SizingSystem_Impl : public ModelObject_Impl
{
public:
SizingSystem_Impl(const IdfObject& idfObject, Model_Impl* model, bool keepHandle);
SizingSystem_Impl(const openstudio::detail::WorkspaceObject_Impl& other, Model_Impl* model, bool keepHandle);
SizingSystem_Impl(const SizingSystem_Impl& other, Model_Impl* model, bool keepHandle);
virtual ~SizingSystem_Impl() {}
virtual const std::vector<std::string>& outputVariableNames() const override;
virtual IddObjectType iddObjectType() const override;
virtual bool setParent(ParentObject& newParent) override;
std::string typeofLoadtoSizeOn() const;
bool isTypeofLoadtoSizeOnDefaulted() const;
boost::optional<double> designOutdoorAirFlowRate() const;
bool isDesignOutdoorAirFlowRateDefaulted() const;
bool isDesignOutdoorAirFlowRateAutosized() const;
boost::optional<double> centralHeatingMaximumSystemAirFlowRatio() const;
bool isCentralHeatingMaximumSystemAirFlowRatioDefaulted() const;
bool isCentralHeatingMaximumSystemAirFlowRatioAutosized() const;
double preheatDesignTemperature() const;
double preheatDesignHumidityRatio() const;
double precoolDesignTemperature() const;
double precoolDesignHumidityRatio() const;
double centralCoolingDesignSupplyAirTemperature() const;
double centralHeatingDesignSupplyAirTemperature() const;
std::string sizingOption() const;
bool isSizingOptionDefaulted() const;
bool allOutdoorAirinCooling() const;
bool isAllOutdoorAirinCoolingDefaulted() const;
bool allOutdoorAirinHeating() const;
bool isAllOutdoorAirinHeatingDefaulted() const;
double centralCoolingDesignSupplyAirHumidityRatio() const;
bool isCentralCoolingDesignSupplyAirHumidityRatioDefaulted() const;
double centralHeatingDesignSupplyAirHumidityRatio() const;
bool isCentralHeatingDesignSupplyAirHumidityRatioDefaulted() const;
std::string coolingDesignAirFlowMethod() const;
bool isCoolingDesignAirFlowMethodDefaulted() const;
double coolingDesignAirFlowRate() const;
bool isCoolingDesignAirFlowRateDefaulted() const;
std::string heatingDesignAirFlowMethod() const;
bool isHeatingDesignAirFlowMethodDefaulted() const;
double heatingDesignAirFlowRate() const;
bool isHeatingDesignAirFlowRateDefaulted() const;
std::string systemOutdoorAirMethod() const;
bool isSystemOutdoorAirMethodDefaulted() const;
double zoneMaximumOutdoorAirFraction() const;
double coolingSupplyAirFlowRatePerFloorArea() const;
double coolingFractionofAutosizedCoolingSupplyAirFlowRate() const;
double coolingSupplyAirFlowRatePerUnitCoolingCapacity() const;
double heatingSupplyAirFlowRatePerFloorArea() const;
double heatingFractionofAutosizedHeatingSupplyAirFlowRate() const;
double heatingFractionofAutosizedCoolingSupplyAirFlowRate() const;
double heatingSupplyAirFlowRatePerUnitHeatingCapacity() const;
std::string coolingDesignCapacityMethod() const;
boost::optional<double> coolingDesignCapacity() const;
bool isCoolingDesignCapacityAutosized() const;
double coolingDesignCapacityPerFloorArea() const;
double fractionofAutosizedCoolingDesignCapacity() const;
std::string heatingDesignCapacityMethod() const;
boost::optional<double> heatingDesignCapacity() const;
bool isHeatingDesignCapacityAutosized() const;
double heatingDesignCapacityPerFloorArea() const;
double fractionofAutosizedHeatingDesignCapacity() const;
std::string centralCoolingCapacityControlMethod() const;
boost::optional<double> occupantDiversity() const;
bool isOccupantDiversityAutosized() const;
bool setTypeofLoadtoSizeOn(std::string typeofLoadtoSizeOn);
void resetTypeofLoadtoSizeOn();
bool setDesignOutdoorAirFlowRate(boost::optional<double> designOutdoorAirFlowRate);
void resetDesignOutdoorAirFlowRate();
void autosizeDesignOutdoorAirFlowRate();
bool setCentralHeatingMaximumSystemAirFlowRatio(boost::optional<double> centralHeatingMaximumSystemAirFlowRatio);
void resetCentralHeatingMaximumSystemAirFlowRatio();
void autosizeCentralHeatingMaximumSystemAirFlowRatio();
bool setPreheatDesignTemperature(double preheatDesignTemperature);
bool setPreheatDesignHumidityRatio(double preheatDesignHumidityRatio);
bool setPrecoolDesignTemperature(double precoolDesignTemperature);
bool setPrecoolDesignHumidityRatio(double precoolDesignHumidityRatio);
bool setCentralCoolingDesignSupplyAirTemperature(double centralCoolingDesignSupplyAirTemperature);
bool setCentralHeatingDesignSupplyAirTemperature(double centralHeatingDesignSupplyAirTemperature);
bool setSizingOption(std::string sizingOption);
void resetSizingOption();
bool setAllOutdoorAirinCooling(bool allOutdoorAirinCooling);
void resetAllOutdoorAirinCooling();
bool setAllOutdoorAirinHeating(bool allOutdoorAirinHeating);
void resetAllOutdoorAirinHeating();
bool setCentralCoolingDesignSupplyAirHumidityRatio(double centralCoolingDesignSupplyAirHumidityRatio);
void resetCentralCoolingDesignSupplyAirHumidityRatio();
bool setCentralHeatingDesignSupplyAirHumidityRatio(double centralHeatingDesignSupplyAirHumidityRatio);
void resetCentralHeatingDesignSupplyAirHumidityRatio();
bool setCoolingDesignAirFlowMethod(std::string coolingDesignAirFlowMethod);
void resetCoolingDesignAirFlowMethod();
bool setCoolingDesignAirFlowRate(double coolingDesignAirFlowRate);
void resetCoolingDesignAirFlowRate();
bool setHeatingDesignAirFlowMethod(std::string heatingDesignAirFlowMethod);
void resetHeatingDesignAirFlowMethod();
bool setHeatingDesignAirFlowRate(double heatingDesignAirFlowRate);
void resetHeatingDesignAirFlowRate();
bool setSystemOutdoorAirMethod(std::string systemOutdoorAirMethod);
void resetSystemOutdoorAirMethod();
bool setZoneMaximumOutdoorAirFraction(double zoneMaximumOutdoorAirFraction);
bool setCoolingSupplyAirFlowRatePerFloorArea(double coolingSupplyAirFlowRatePerFloorArea);
bool setCoolingFractionofAutosizedCoolingSupplyAirFlowRate(double coolingFractionofAutosizedCoolingSupplyAirFlowRate);
bool setCoolingSupplyAirFlowRatePerUnitCoolingCapacity(double coolingSupplyAirFlowRatePerUnitCoolingCapacity);
bool setHeatingSupplyAirFlowRatePerFloorArea(double heatingSupplyAirFlowRatePerFloorArea);
bool setHeatingFractionofAutosizedHeatingSupplyAirFlowRate(double heatingFractionofAutosizedHeatingSupplyAirFlowRate);
bool setHeatingFractionofAutosizedCoolingSupplyAirFlowRate(double heatingFractionofAutosizedCoolingSupplyAirFlowRate);
bool setHeatingSupplyAirFlowRatePerUnitHeatingCapacity(double heatingSupplyAirFlowRatePerUnitHeatingCapacity);
bool setCoolingDesignCapacityMethod(std::string coolingDesignCapacityMethod);
bool setCoolingDesignCapacity(boost::optional<double> coolingDesignCapacity);
void autosizeCoolingDesignCapacity();
bool setCoolingDesignCapacityPerFloorArea(double coolingDesignCapacityPerFloorArea);
bool setFractionofAutosizedCoolingDesignCapacity(double fractionofAutosizedCoolingDesignCapacity);
bool setHeatingDesignCapacityMethod(std::string heatingDesignCapacityMethod);
bool setHeatingDesignCapacity(boost::optional<double> heatingDesignCapacity);
void autosizeHeatingDesignCapacity();
bool setHeatingDesignCapacityPerFloorArea(double heatingDesignCapacityPerFloorArea);
bool setFractionofAutosizedHeatingDesignCapacity(double fractionofAutosizedHeatingDesignCapacity);
bool setCentralCoolingCapacityControlMethod(std::string centralCoolingCapacityControlMethod);
bool setOccupantDiversity(double occupantDiversity);
void autosizeOccupantDiversity();
AirLoopHVAC airLoopHVAC() const;
bool setAirLoopHVAC(const AirLoopHVAC& airLoopHVAC);
boost::optional<double> autosizedDesignOutdoorAirFlowRate() const;
boost::optional<double> autosizedCentralHeatingMaximumSystemAirFlowRatio() const;
boost::optional<double> autosizedCoolingDesignCapacity() const;
boost::optional<double> autosizedHeatingDesignCapacity() const;
boost::optional<double> autosizedOccupantDiversity() const;
void autosize();
void applySizingValues();
virtual std::vector<EMSActuatorNames> emsActuatorNames() const override;
virtual std::vector<std::string> emsInternalVariableNames() const override;
protected:
private:
REGISTER_LOGGER("openstudio.model.SizingSystem");
};
} // namespace detail
} // namespace model
} // namespace openstudio
#endif // MODEL_SIZINGSYSTEM_IMPL_HPP