-
Notifications
You must be signed in to change notification settings - Fork 195
/
ForwardTranslateSizingZone.cpp
380 lines (302 loc) · 14.1 KB
/
ForwardTranslateSizingZone.cpp
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
/***********************************************************************************************************************
* OpenStudio(R), Copyright (c) 2008-2020, 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.
***********************************************************************************************************************/
#include "../ForwardTranslator.hpp"
#include "../../model/Model.hpp"
#include "../../model/AirLoopHVAC.hpp"
#include "../../model/AirLoopHVAC_Impl.hpp"
#include "../../model/Space.hpp"
#include "../../model/Space_Impl.hpp"
#include "../../model/SizingZone.hpp"
#include "../../model/SizingZone_Impl.hpp"
#include "../../model/ControllerMechanicalVentilation.hpp"
#include "../../model/ControllerMechanicalVentilation_Impl.hpp"
#include "../../model/ControllerOutdoorAir.hpp"
#include "../../model/ControllerOutdoorAir_Impl.hpp"
#include "../../model/DesignSpecificationOutdoorAir.hpp"
#include "../../model/DesignSpecificationOutdoorAir_Impl.hpp"
#include "../../model/ThermalZone.hpp"
#include "../../model/ThermalZone_Impl.hpp"
#include "../../utilities/core/Logger.hpp"
#include "../../utilities/core/Assert.hpp"
#include <utilities/idd/Sizing_Zone_FieldEnums.hxx>
#include <utilities/idd/DesignSpecification_ZoneAirDistribution_FieldEnums.hxx>
#include <utilities/idd/Controller_MechanicalVentilation_FieldEnums.hxx>
#include "../../utilities/idd/IddEnums.hpp"
#include <utilities/idd/IddEnums.hxx>
#include <utilities/idd/IddFactory.hxx>
#include "../../utilities/idf/IdfExtensibleGroup.hpp"
using namespace openstudio::model;
namespace openstudio {
namespace energyplus {
boost::optional<IdfObject> ForwardTranslator::translateSizingZone( SizingZone & modelObject )
{
boost::optional<std::string> s;
boost::optional<double> value;
IdfObject idfObject(IddObjectType::Sizing_Zone);
m_idfObjects.push_back(idfObject);
// ZoneorZoneListName
model::ThermalZone thermalZone = modelObject.thermalZone();
boost::optional<IdfObject> _thermalZone = translateAndMapModelObject(thermalZone);
boost::optional<std::string> name;
if( _thermalZone )
{
name = _thermalZone->name();
}
if( name )
{
idfObject.setString(Sizing_ZoneFields::ZoneorZoneListName,name.get());
}
// ZoneCoolingDesignSupplyAirTemperatureInputMethod
{
s = modelObject.zoneCoolingDesignSupplyAirTemperatureInputMethod();
idfObject.setString(Sizing_ZoneFields::ZoneCoolingDesignSupplyAirTemperatureInputMethod,s.get());
}
// ZoneCoolingDesignSupplyAirTemperature
value = modelObject.zoneCoolingDesignSupplyAirTemperature();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneCoolingDesignSupplyAirTemperature,value.get());
}
// zoneCoolingDesignSupplyAirTemperatureDifference
value = modelObject.zoneCoolingDesignSupplyAirTemperatureDifference();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneCoolingDesignSupplyAirTemperatureDifference,value.get());
}
// ZoneHeatingDesignSupplyAirTemperatureInputMethod
{
s = modelObject.zoneHeatingDesignSupplyAirTemperatureInputMethod();
idfObject.setString(Sizing_ZoneFields::ZoneHeatingDesignSupplyAirTemperatureInputMethod,s.get());
}
// ZoneHeatingDesignSupplyAirTemperature
value = modelObject.zoneHeatingDesignSupplyAirTemperature();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneHeatingDesignSupplyAirTemperature,value.get());
}
// ZoneHeatingDesignSupplyAirTemperatureDifference
value = modelObject.zoneHeatingDesignSupplyAirTemperatureDifference();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneHeatingDesignSupplyAirTemperatureDifference,value.get());
}
// ZoneCoolingDesignSupplyAirHumidityRatio
value = modelObject.zoneCoolingDesignSupplyAirHumidityRatio();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneCoolingDesignSupplyAirHumidityRatio,value.get());
}
// ZoneHeatingDesignSupplyAirHumidityRatio
value = modelObject.zoneHeatingDesignSupplyAirHumidityRatio();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneHeatingDesignSupplyAirHumidityRatio,value.get());
}
// ((DesignSpecificationOutdoorAirObjectName)(Design Specification Outdoor Air Object Name))
// ZoneHeatingSizingFactor
value = modelObject.zoneHeatingSizingFactor();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneHeatingSizingFactor,value.get());
}
// ZoneCoolingSizingFactor
value = modelObject.zoneCoolingSizingFactor();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::ZoneCoolingSizingFactor,value.get());
}
// CoolingDesignAirFlowMethod
s = modelObject.coolingDesignAirFlowMethod();
if( s )
{
idfObject.setString(Sizing_ZoneFields::CoolingDesignAirFlowMethod,s.get());
}
// CoolingDesignAirFlowRate
value = modelObject.coolingDesignAirFlowRate();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::CoolingDesignAirFlowRate,value.get());
}
// CoolingMinimumAirFlowperZoneFloorArea
value = modelObject.coolingMinimumAirFlowperZoneFloorArea();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::CoolingMinimumAirFlowperZoneFloorArea,value.get());
}
// CoolingMinimumAirFlow
value = modelObject.coolingMinimumAirFlow();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::CoolingMinimumAirFlow,value.get());
}
// CoolingMinimumAirFlowFraction
value = modelObject.coolingMinimumAirFlowFraction();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::CoolingMinimumAirFlowFraction,value.get());
}
// HeatingDesignAirFlowMethod
s = modelObject.heatingDesignAirFlowMethod();
if( s )
{
idfObject.setString(Sizing_ZoneFields::HeatingDesignAirFlowMethod,s.get());
}
// HeatingDesignAirFlowRate
value = modelObject.heatingDesignAirFlowRate();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::HeatingDesignAirFlowRate,value.get());
}
// HeatingMaximumAirFlowperZoneFloorArea
value = modelObject.heatingMaximumAirFlowperZoneFloorArea();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::HeatingMaximumAirFlowperZoneFloorArea,value.get());
}
// HeatingMaximumAirFlow
value = modelObject.heatingMaximumAirFlow();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::HeatingMaximumAirFlow,value.get());
}
// HeatingMaximumAirFlowFraction
value = modelObject.heatingMaximumAirFlowFraction();
if( value )
{
idfObject.setDouble(Sizing_ZoneFields::HeatingMaximumAirFlowFraction,value.get());
}
// These fields are onto OS:Sizing:Zonne but they are on DesignSpecification:ZoneAirDistribution in E+:
// * Design Zone Air Distribution Effectiveness in Cooling Mode
// * Design Zone Air Distribution Effectiveness in Heating Mode
// * Design Zone Secondary Recirculation Fraction
// * Design Minimum Zone Ventilation Efficiency
// If any of the DSZAD fields is non-default, then it's worth it to translate it. Otherwise it has no effect.
bool isDSZADTranslated = !(
modelObject.isDesignZoneAirDistributionEffectivenessinCoolingModeDefaulted() &&
modelObject.isDesignZoneAirDistributionEffectivenessinHeatingModeDefaulted() &&
modelObject.isDesignZoneSecondaryRecirculationFractionDefaulted() &&
modelObject.isDesignMinimumZoneVentilationEfficiencyDefaulted()
);
// Have to declare it here for scoping, so that we can access it when trying to set it for the Controller:MechanicalVentilation
std::string dSZADName;
if( isDSZADTranslated )
{
IdfObject dSZAD(IddObjectType::DesignSpecification_ZoneAirDistribution);
if( name )
{
dSZADName = name.get() + " Design Spec Zone Air Dist";
dSZAD.setName(dSZADName);
}
// register the DSZAD
m_idfObjects.push_back(dSZAD);
// Only translate the non-defaulted fields
if (!modelObject.isDesignZoneAirDistributionEffectivenessinCoolingModeDefaulted()) {
dSZAD.setDouble(DesignSpecification_ZoneAirDistributionFields::ZoneAirDistributionEffectivenessinCoolingMode,
modelObject.designZoneAirDistributionEffectivenessinCoolingMode());
}
if (!modelObject.isDesignZoneAirDistributionEffectivenessinHeatingModeDefaulted()) {
dSZAD.setDouble(DesignSpecification_ZoneAirDistributionFields::ZoneAirDistributionEffectivenessinHeatingMode,
modelObject.designZoneAirDistributionEffectivenessinHeatingMode());
}
if (!modelObject.isDesignZoneSecondaryRecirculationFractionDefaulted()) {
dSZAD.setDouble(DesignSpecification_ZoneAirDistributionFields::ZoneSecondaryRecirculationFraction,
modelObject.designZoneSecondaryRecirculationFraction());
}
if (!modelObject.isDesignMinimumZoneVentilationEfficiencyDefaulted()) {
dSZAD.setDouble(DesignSpecification_ZoneAirDistributionFields::MinimumZoneVentilationEfficiency,
modelObject.designMinimumZoneVentilationEfficiency());
}
idfObject.setString(Sizing_ZoneFields::DesignSpecificationZoneAirDistributionObjectName, dSZAD.name().get());
}
// Add ThermalZone and associated design objects to ControllerMechanicalVentilation.
// This would be done in forwardTranslateControllerMechanicalVentilation except doing it here maintains proper order of the idf file.
boost::optional<model::ControllerMechanicalVentilation> controllerMechanicalVentilation;
boost::optional<IdfObject> _controllerMechanicalVentilation;
if( boost::optional<model::AirLoopHVAC> airLoopHVAC = thermalZone.airLoopHVAC() )
{
if( boost::optional<model::AirLoopHVACOutdoorAirSystem> oaSystem = airLoopHVAC->airLoopHVACOutdoorAirSystem() )
{
model::ControllerOutdoorAir controllerOutdoorAir = oaSystem->getControllerOutdoorAir();
controllerMechanicalVentilation = controllerOutdoorAir.controllerMechanicalVentilation();
}
}
if( controllerMechanicalVentilation )
{
_controllerMechanicalVentilation = translateAndMapModelObject(controllerMechanicalVentilation.get());
}
if( _controllerMechanicalVentilation && _thermalZone )
{
IdfExtensibleGroup eg = _controllerMechanicalVentilation->pushExtensibleGroup();
// Thermal Zone Name
eg.setString(Controller_MechanicalVentilationExtensibleFields::ZoneorZoneListName,_thermalZone->name().get());
// DesignSpecificationOutdoorAir
std::vector<model::Space> spaces = thermalZone.spaces();
if( spaces.size() > 0 )
{
if( boost::optional<model::DesignSpecificationOutdoorAir> designOASpec = spaces.front().designSpecificationOutdoorAir() )
{
if( boost::optional<IdfObject> _designOASpec = translateAndMapModelObject(designOASpec.get()) )
{
eg.setString(Controller_MechanicalVentilationExtensibleFields::DesignSpecificationOutdoorAirObjectName,_designOASpec->name().get());
}
}
}
// DesignSpecificationZoneAirDistributionObjectName
if( _thermalZone && isDSZADTranslated )
{
eg.setString(Controller_MechanicalVentilationExtensibleFields::DesignSpecificationZoneAirDistributionObjectName, dSZADName);
}
}
if( modelObject.accountforDedicatedOutdoorAirSystem() ) {
idfObject.setString(Sizing_ZoneFields::AccountforDedicatedOutdoorAirSystem,"Yes");
{
auto value = modelObject.dedicatedOutdoorAirSystemControlStrategy();
idfObject.setString(Sizing_ZoneFields::DedicatedOutdoorAirSystemControlStrategy,value);
}
{
if( modelObject.isDedicatedOutdoorAirLowSetpointTemperatureforDesignAutosized() ) {
idfObject.setString(Sizing_ZoneFields::DedicatedOutdoorAirLowSetpointTemperatureforDesign,"Autosize");
} else if ( auto value = modelObject.dedicatedOutdoorAirLowSetpointTemperatureforDesign() ) {
idfObject.setDouble(Sizing_ZoneFields::DedicatedOutdoorAirLowSetpointTemperatureforDesign,value.get());
}
}
{
if( modelObject.isDedicatedOutdoorAirHighSetpointTemperatureforDesignAutosized() ) {
idfObject.setString(Sizing_ZoneFields::DedicatedOutdoorAirHighSetpointTemperatureforDesign,"Autosize");
} else if ( auto value = modelObject.dedicatedOutdoorAirHighSetpointTemperatureforDesign() ) {
idfObject.setDouble(Sizing_ZoneFields::DedicatedOutdoorAirHighSetpointTemperatureforDesign,value.get());
}
}
} else {
idfObject.setString(Sizing_ZoneFields::AccountforDedicatedOutdoorAirSystem,"No");
}
return idfObject;
}
} // energyplus
} // openstudio