@@ -428,49 +428,39 @@ namespace OutputReportTabular {
428
428
struct CompLoadTablesType
429
429
{
430
430
// members
431
- int desDayNum; // design day number
432
- int timeStepMax; // times step of the day that the maximum occurs
433
- Array2D<Real64> cells; // main component table results (column, row)
434
- Array2D_bool cellUsed; // flag if the cell is used for the table of results (column, row)
435
- std::string peakDateHrMin; // string containing peak timestamp
436
- Real64 outsideDryBulb; // outside dry bulb temperature at peak
437
- Real64 outsideWetBulb; // outside wet bulb temperature at peak
438
- Real64 outsideHumRatio; // outside humidity ratio at peak
439
- Real64 zoneDryBulb; // zone dry bulb temperature at peak
440
- Real64 zoneRelHum; // zone relative humidity at peak
441
- Real64 zoneHumRatio; // zone humidity ratio at peak
442
-
443
- Real64 supAirTemp; // supply air temperature
444
- Real64 mixAirTemp; // mixed air temperature
445
- Real64 mainFanAirFlow; // main fan air flow
446
- Real64 outsideAirFlow; // outside air flow
447
- Real64 designPeakLoad; // design peak load
448
- Real64 diffDesignPeak; // difference between Design and Peak Load
449
-
450
- Real64 peakDesSensLoad; // peak design sensible load
451
- Real64 estInstDelSensLoad; // estimated instant plus delayed sensible load
452
- Real64 diffPeakEst; // difference between the peak design sensible load and the estimated instant plus delayed sensible load
453
- Array1D_int zoneIndices; // the zone numbers covered by the report
454
-
455
- Real64 outsideAirRatio; // outside Air
456
- Real64 floorArea; // floor area
457
- Real64 airflowPerFlrArea; // airflow per floor area
458
- Real64 airflowPerTotCap; // airflow per total capacity
459
- Real64 areaPerTotCap; // area per total capacity
460
- Real64 totCapPerArea; // total capacity per area
461
- Real64 chlPumpPerFlow; // chiller pump power per flow
462
- Real64 cndPumpPerFlow; // condenser pump power per flow
463
- Real64 numPeople; // number of people
464
-
465
- // default constructor
466
- CompLoadTablesType ()
467
- : desDayNum(0 ), timeStepMax(0 ), outsideDryBulb(0 .), outsideWetBulb(0 .), outsideHumRatio(0 .), zoneDryBulb(0 .), zoneRelHum(0 .),
468
- supAirTemp (0 .), mixAirTemp(0 .), mainFanAirFlow(0 .), outsideAirFlow(0 .), designPeakLoad(0 .), diffDesignPeak(0 .), peakDesSensLoad(0 .),
469
- estInstDelSensLoad(0 .), diffPeakEst(0 .), outsideAirRatio(0 .), floorArea(0 .), airflowPerFlrArea(0 .), airflowPerTotCap(0 .),
470
- areaPerTotCap(0 .), totCapPerArea(0 .), chlPumpPerFlow(0 .), cndPumpPerFlow(0 .), numPeople(0 .)
471
-
472
- {
473
- }
431
+ int desDayNum = 0 ; // design day number
432
+ int timeStepMax = 0 ; // times step of the day that the maximum occurs
433
+ Array2D<Real64> cells; // main component table results (column, row)
434
+ Array2D_bool cellUsed; // flag if the cell is used for the table of results (column, row)
435
+ std::string peakDateHrMin = " " ; // string containing peak timestamp
436
+ Real64 outsideDryBulb = 0.0 ; // outside dry bulb temperature at peak
437
+ Real64 outsideWetBulb = 0.0 ; // outside wet bulb temperature at peak
438
+ Real64 outsideHumRatio = 0.0 ; // outside humidity ratio at peak
439
+ Real64 zoneDryBulb = 0.0 ; // zone dry bulb temperature at peak
440
+ Real64 zoneRelHum = 0.0 ; // zone relative humidity at peak
441
+ Real64 zoneHumRatio = 0.0 ; // zone humidity ratio at peak
442
+
443
+ Real64 supAirTemp = 0.0 ; // supply air temperature
444
+ Real64 mixAirTemp = 0.0 ; // mixed air temperature
445
+ Real64 mainFanAirFlow = 0.0 ; // main fan air flow
446
+ Real64 outsideAirFlow = 0.0 ; // outside air flow
447
+ Real64 designPeakLoad = 0.0 ; // design peak load
448
+ Real64 diffDesignPeak = 0.0 ; // difference between Design and Peak Load
449
+
450
+ Real64 peakDesSensLoad = 0.0 ; // peak design sensible load
451
+ Real64 estInstDelSensLoad = 0.0 ; // estimated instant plus delayed sensible load
452
+ Real64 diffPeakEst = 0.0 ; // difference between the peak design sensible load and the estimated instant plus delayed sensible load
453
+ Array1D_int zoneIndices; // the zone numbers covered by the report
454
+
455
+ Real64 outsideAirRatio = 0.0 ; // outside Air
456
+ Real64 floorArea = 0.0 ; // floor area
457
+ Real64 airflowPerFlrArea = 0.0 ; // airflow per floor area
458
+ Real64 airflowPerTotCap = 0.0 ; // airflow per total capacity
459
+ Real64 areaPerTotCap = 0.0 ; // area per total capacity
460
+ Real64 totCapPerArea = 0.0 ; // total capacity per area
461
+ Real64 chlPumpPerFlow = 0.0 ; // chiller pump power per flow
462
+ Real64 cndPumpPerFlow = 0.0 ; // condenser pump power per flow
463
+ Real64 numPeople = 0.0 ; // number of people
474
464
};
475
465
476
466
struct ZompComponentAreasType
0 commit comments