Skip to content

Commit

Permalink
Merge branch 'develop' into 146627003_Issue#6151
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigusse committed Jun 13, 2017
2 parents 2883279 + 37b3921 commit a6a5eeb
Show file tree
Hide file tree
Showing 19 changed files with 1,348 additions and 77 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ \subsubsection{Outputs}\label{outputs-4-015}

\paragraph{Solar Collector Leaving Air Temperature {[}C{]}}\label{solar-collector-leaving-air-temperature-c}

The temperature of air entering the plenum after being heated by the collector.
The temperature of air entering the plenum after being heated by the collector. When there is no forced air flow or the collector is passive, then the condition of air entering the plenum or the collector leaving air is assumed to be that of outside air.

\paragraph{Solar Collector Outside Face Suction Velocity {[}m/s{]}}\label{solar-collector-outside-face-suction-velocity-ms}

Expand All @@ -898,7 +898,7 @@ \subsubsection{Outputs}\label{outputs-4-015}

\paragraph{Solar Collector Plenum Air Temperature {[}C{]}}\label{solar-collector-plenum-air-temperature-c}

The temperature of air inside, and leaving, the plenum behind the collector.
The temperature of air inside, and leaving, the plenum behind the collector. This plenum leaving air temperature depends on the mode of operation of the collector. When the collector is passive (no forced flow), then the passive model assumes the condition of air entering the plenum is that of outside air, or else when the collector is active, then the model sets the plenum entering air condition to transpired collector leaving air condition determined from the collector model.

\paragraph{Solar Collector Sensible Heating Rate {[}W{]}}\label{solar-collector-sensible-heating-rate-w}

Expand Down
8 changes: 5 additions & 3 deletions src/EnergyPlus/CondenserLoopTowers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1145,9 +1145,11 @@ namespace CondenserLoopTowers {
ShowSevereError( cCurrentModuleObject + " \"" + SimpleTower( TowerNum ).Name + "\". Low-speed nominal capacity must be less than the high-speed nominal capacity." );
ErrorsFound = true;
}
if ( SimpleTower( TowerNum ).TowerFreeConvNomCap >= SimpleTower( TowerNum ).TowerLowSpeedNomCap ) {
ShowSevereError( cCurrentModuleObject + " \"" + SimpleTower( TowerNum ).Name + "\". Free convection nominal capacity must be less than the low-speed nominal capacity." );
ErrorsFound = true;
if ( !SimpleTower( TowerNum ).TowerLowSpeedNomCapWasAutoSized ) {
if ( SimpleTower( TowerNum ).TowerFreeConvNomCap >= SimpleTower( TowerNum ).TowerLowSpeedNomCap ) {
ShowSevereError( cCurrentModuleObject + " \"" + SimpleTower( TowerNum ).Name + "\". Free convection nominal capacity must be less than the low-speed nominal capacity." );
ErrorsFound = true;
}
}
if ( SimpleTower( TowerNum ).TowerFreeConvNomCap > 0.0 && SimpleTower( TowerNum ).FreeConvAirFlowRate == 0.0 ) {
ShowSevereError( cCurrentModuleObject + " \"" + SimpleTower( TowerNum ).Name + "\". Free convection air flow must be greater than zero when tower free convection capacity is specified." );
Expand Down
63 changes: 35 additions & 28 deletions src/EnergyPlus/DXCoils.cc

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions src/EnergyPlus/DXCoils.hh
Original file line number Diff line number Diff line change
Expand Up @@ -899,10 +899,9 @@ namespace DXCoils {
Real64 const InletAirTemp, // inlet air temperature [C]
Real64 const InletAirHumRat, // inlet air humidity ratio [kg water / kg dry air]
Real64 const TotCap, // total cooling capacity [Watts]
Real64 const AirMassFlowRate, // the air mass flow rate at the given capacity [kg/s]
Real64 const AirVolFlowRate, // the air volume flow rate at the given capacity [m3/s]
Real64 const SHR, // sensible heat ratio at the given capacity and flow rate
bool const PrintFlag = true, // flag used to print warnings if desired
Real64 const BaroPress=StdBaroPress // Barometric pressure [Pa]
bool const PrintFlag = true // flag used to print warnings if desired
);

Real64
Expand Down
7 changes: 7 additions & 0 deletions src/EnergyPlus/HVACDXSystem.cc
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,13 @@ namespace HVACDXSystem {
} else {
if ( SameString( Alphas( 11 ), "Yes" ) ) {
DXCoolingSystem( DXCoolSysNum ).ISHundredPercentDOASDXCoil = true;
if ( DXCoolingSystem( DXCoolSysNum ).CoolingCoilType_Num == Coil_CoolingAirToAirVariableSpeed ) {
ShowWarningError( CurrentModuleObject + " = " + DXCoolingSystem( DXCoolSysNum ).Name );
ShowContinueError( "Invalid entry for " + cAlphaFields( 11 ) + " :" + Alphas( 11 ) );
ShowContinueError( "Variable DX Cooling Coil is not supported as 100% DOAS DX coil." );
ShowContinueError( "Variable DX Cooling Coil is reset as a regular DX coil and the simulation continues." );
DXCoolingSystem( DXCoolSysNum ).ISHundredPercentDOASDXCoil = false;
}
} else if ( SameString( Alphas( 11 ), "" ) ) {
DXCoolingSystem( DXCoolSysNum ).ISHundredPercentDOASDXCoil = false;
} else if ( SameString( Alphas( 11 ), "No" ) ) {
Expand Down
7 changes: 7 additions & 0 deletions src/EnergyPlus/HVACUnitarySystem.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4793,6 +4793,13 @@ namespace HVACUnitarySystem {
} else {
if ( SameString( Alphas( iDOASDXCoilAlphaNum ), "Yes" ) ) {
UnitarySystem( UnitarySysNum ).ISHundredPercentDOASDXCoil = true;
if ( UnitarySystem( UnitarySysNum ).CoolingCoilType_Num == Coil_CoolingAirToAirVariableSpeed ) {
ShowWarningError( CurrentModuleObject + " = " + UnitarySystem( UnitarySysNum ).Name );
ShowContinueError( "Invalid entry for " + cAlphaFields( iDOASDXCoilAlphaNum ) + " :" + Alphas( iDOASDXCoilAlphaNum ) );
ShowContinueError( "Variable DX Cooling Coil is not supported as 100% DOAS DX coil." );
ShowContinueError( "Variable DX Cooling Coil is reset as a regular DX coil and the simulation continues." );
UnitarySystem( UnitarySysNum ).ISHundredPercentDOASDXCoil = false;
}
} else if ( SameString( Alphas( iDOASDXCoilAlphaNum ), "" ) ) {
UnitarySystem( UnitarySysNum ).ISHundredPercentDOASDXCoil = false;
} else if ( SameString( Alphas( iDOASDXCoilAlphaNum ), "No" ) ) {
Expand Down
22 changes: 10 additions & 12 deletions src/EnergyPlus/ReportSizingManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -979,8 +979,7 @@ namespace ReportSizingManager {
}

// check that the autosized SHR corresponds to a valid apperatus dew point (ADP) temperature
DesMassFlow = DataFlowUsedForSizing * PsyRhoAirFnPbTdbW( StdBaroPress, RatedInletAirTemp, RatedInletAirHumRat, CallingRoutine );
AutosizeDes = ValidateADP( CompType, CompName, RatedInletAirTemp, RatedInletAirHumRat, DataCapacityUsedForSizing, DesMassFlow, AutosizeDes, CallingRoutine );
AutosizeDes = ValidateADP( CompType, CompName, RatedInletAirTemp, RatedInletAirHumRat, DataCapacityUsedForSizing, DataFlowUsedForSizing, AutosizeDes, CallingRoutine );

} else {
AutosizeDes = 1.0;
Expand Down Expand Up @@ -1231,7 +1230,7 @@ namespace ReportSizingManager {
AutosizeDes = FinalZoneSizing( CurZoneEqNum ).DesHeatMassFlow;
}
} else if (SizingType == WaterHeatingCoilUASizing) {
if ( DataCapacityUsedForSizing > 0.0 ) {
if ( DataCapacityUsedForSizing > 0.0 && DataWaterFlowUsedForSizing > 0.0 && DataFlowUsedForSizing > 0.0 ) {
Par( 1 ) = DataCapacityUsedForSizing;
Par( 2 ) = double( DataCoilNum );
Par( 3 ) = double( DataFanOpMode ); //fan operating mode
Expand Down Expand Up @@ -1290,12 +1289,12 @@ namespace ReportSizingManager {
}
} else {
AutosizeDes = 1.0;
if ( DataWaterFlowUsedForSizing > 0.0 ) {
DataErrorsFound = true;
ShowSevereError( "The design coil load is zero for Coil:Heating:Water " + CompName );
if ( DataWaterFlowUsedForSizing > 0.0 && DataCapacityUsedForSizing == 0.0 ) {
ShowWarningError( "The design coil load used for UA sizing is zero for Coil:Heating:Water " + CompName );
ShowContinueError( "An autosize value for UA cannot be calculated" );
ShowContinueError( "Input a value for UA, change the heating design day, or raise" );
ShowContinueError( " the zone heating design supply air temperature" );
ShowContinueError( "Water coil UA is set to 1 and the simulation continues." );
}
}
} else if (SizingType == MaxHeaterOutletTempSizing) {
Expand Down Expand Up @@ -1696,8 +1695,7 @@ namespace ReportSizingManager {
}

// check that the autosized SHR corresponds to a valid apperatus dew point (ADP) temperature
DesMassFlow = DataFlowUsedForSizing * PsyRhoAirFnPbTdbW( StdBaroPress, RatedInletAirTemp, RatedInletAirHumRat, CallingRoutine );
AutosizeDes = ValidateADP( CompType, CompName, RatedInletAirTemp, RatedInletAirHumRat, DataCapacityUsedForSizing, DesMassFlow, AutosizeDes, CallingRoutine );
AutosizeDes = ValidateADP( CompType, CompName, RatedInletAirTemp, RatedInletAirHumRat, DataCapacityUsedForSizing, DataFlowUsedForSizing, AutosizeDes, CallingRoutine );

} else {
ShowSevereError( CallingRoutine + ' ' + CompType + ' ' + CompName );
Expand Down Expand Up @@ -2034,7 +2032,7 @@ namespace ReportSizingManager {
}
AutosizeDes *= StdRhoAir;
} else if (SizingType == WaterHeatingCoilUASizing) {
if ( DataCapacityUsedForSizing >= SmallLoad ) {
if( DataCapacityUsedForSizing >= SmallLoad && DataWaterFlowUsedForSizing > 0.0 && DataFlowUsedForSizing > 0.0 ) {
Par( 1 ) = DataCapacityUsedForSizing;
Par( 2 ) = double( DataCoilNum );
Par( 3 ) = double( DataFanOpMode ); //fan operating mode
Expand Down Expand Up @@ -2079,12 +2077,12 @@ namespace ReportSizingManager {
}
} else {
AutosizeDes = 1.0;
if ( DataWaterFlowUsedForSizing > 0.0 ) {
DataErrorsFound = true;
ShowSevereError( "The design coil load is zero for Coil:Heating:Water " + CompName );
if ( DataWaterFlowUsedForSizing > 0.0 && DataCapacityUsedForSizing < SmallLoad ) {
ShowWarningError( "The design coil load used for UA sizing is too small for Coil:Heating:Water " + CompName );
ShowContinueError( "An autosize value for UA cannot be calculated" );
ShowContinueError( "Input a value for UA, change the heating design day, or raise" );
ShowContinueError( " the system heating design supply air temperature" );
ShowContinueError( "Water coil UA is set to 1 and the simulation continues." );
}
}
} else if (SizingType == MaxHeaterOutletTempSizing) {
Expand Down
36 changes: 26 additions & 10 deletions src/EnergyPlus/TranspiredCollector.cc
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,13 @@ namespace TranspiredCollector {
Array1D< UTSCDataStruct > UTSC;

// Functions
void
clear_state()
{
NumUTSC = 0;
GetInputFlag = true;
UTSC.deallocate();
}

void
SimTranspiredCollector(
Expand Down Expand Up @@ -672,6 +679,8 @@ namespace TranspiredCollector {
using namespace DataLoopNode;
using EMSManager::iTemperatureSetPoint;
using EMSManager::CheckIfNodeSetPointManagedByEMS;
using DataSurfaces::Surface;
using DataSurfaces::SurfaceData;

// Locals
// SUBROUTINE ARGUMENT DEFINITIONS:
Expand All @@ -694,6 +703,7 @@ namespace TranspiredCollector {
//unused INTEGER :: InletNode
int SplitBranch;
int thisUTSC;
Real64 Tamb;

if ( MyOneTimeFlag ) {
// do various one time setups and pitch adjustments across all UTSC
Expand Down Expand Up @@ -750,20 +760,29 @@ namespace TranspiredCollector {
if ( BeginEnvrnFlag && MyEnvrnFlag( UTSCNum ) ) {
UTSC( UTSCNum ).TplenLast = 22.5;
UTSC( UTSCNum ).TcollLast = 22.0;

MyEnvrnFlag( UTSCNum ) = false;
}
if ( ! BeginEnvrnFlag ) {
MyEnvrnFlag( UTSCNum ) = true;
}

// determine average ambient temperature
Real64 const surfaceArea( sum_sub( Surface, &SurfaceData::Area, UTSC( UTSCNum ).SurfPtrs ) );
if ( !DataEnvironment::IsRain ) {
Tamb = sum_product_sub( Surface, &SurfaceData::OutDryBulbTemp, &SurfaceData::Area, UTSC( UTSCNum ).SurfPtrs ) / surfaceArea;
} else { // when raining we use wet bulb not drybulb
Tamb = sum_product_sub( Surface, &SurfaceData::OutWetBulbTemp, &SurfaceData::Area, UTSC( UTSCNum ).SurfPtrs ) / surfaceArea;
}

//inits for each iteration
// UTSC( UTSCNum ).InletMDot = sum( Node( UTSC( UTSCNum ).InletNode ).MassFlowRate ); //Autodesk:F2C++ Array subscript usage: Replaced by below
UTSC( UTSCNum ).InletMDot = sum_sub( Node, &DataLoopNode::NodeData::MassFlowRate, UTSC( UTSCNum ).InletNode ); //Autodesk:F2C++ Functions handle array subscript usage
UTSC( UTSCNum ).IsOn = false; // intialize then turn on if appropriate
UTSC( UTSCNum ).Tplen = 0.0;
UTSC( UTSCNum ).Tcoll = 0.0;
UTSC( UTSCNum ).Tplen = UTSC( UTSCNum ).TplenLast;
UTSC( UTSCNum ).Tcoll = UTSC( UTSCNum ).TcollLast;
UTSC( UTSCNum ).TairHX = Tamb;
UTSC( UTSCNum ).MdotVent = 0.0;
UTSC( UTSCNum ).TairHX = 0.0;
UTSC( UTSCNum ).HXeff = 0.0;
UTSC( UTSCNum ).Isc = 0.0;

Expand Down Expand Up @@ -1113,14 +1132,11 @@ namespace TranspiredCollector {

// Using/Aliasing
using DataEnvironment::OutBaroPress;
using DataEnvironment::OutEnthalpy;
using Psychrometrics::PsyRhoAirFnPbTdbW;
using Psychrometrics::PsyCpAirFnWTdb;
using Psychrometrics::PsyHFnTdbW;
using Psychrometrics::PsyWFnTdbTwbPb;
using DataSurfaces::Surface;
using DataSurfaces::SurfaceData;
using DataHVACGlobals::TimeStepSys;
using ConvectionCoefficients::InitExteriorConvectionCoeff;

// Locals
// SUBROUTINE ARGUMENT DEFINITIONS:
Expand Down Expand Up @@ -1172,14 +1188,14 @@ namespace TranspiredCollector {
UTSC( UTSCNum ).Tcoll = TmpTscoll;
UTSC( UTSCNum ).HrPlen = HrPlen;
UTSC( UTSCNum ).HcPlen = HcPlen;
UTSC( UTSCNum ).TairHX = 0.0;
UTSC( UTSCNum ).TairHX = Tamb;
UTSC( UTSCNum ).InletMDot = 0.0;
UTSC( UTSCNum ).InletTempDB = Tamb;
UTSC( UTSCNum ).Vsuction = 0.0;
UTSC( UTSCNum ).PlenumVelocity = 0.0;
UTSC( UTSCNum ).SupOutTemp = Tamb;
UTSC( UTSCNum ).SupOutTemp = TmpTaPlen;
UTSC( UTSCNum ).SupOutHumRat = OutHumRatAmb;
UTSC( UTSCNum ).SupOutEnth = OutEnthalpy;
UTSC( UTSCNum ).SupOutEnth = PsyHFnTdbW( TmpTaPlen, OutHumRatAmb );
UTSC( UTSCNum ).SupOutMassFlow = 0.0;
UTSC( UTSCNum ).SensHeatingRate = 0.0;
UTSC( UTSCNum ).SensHeatingEnergy = 0.0;
Expand Down
2 changes: 2 additions & 0 deletions src/EnergyPlus/TranspiredCollector.hh
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ namespace TranspiredCollector {
extern Array1D< UTSCDataStruct > UTSC;

// Functions
void
clear_state();

void
SimTranspiredCollector(
Expand Down
12 changes: 10 additions & 2 deletions src/EnergyPlus/WaterCoils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2141,22 +2141,30 @@ namespace WaterCoils {
DataFanOpMode = ContFanCycCoil;
TempSize = WaterCoil ( CoilNum ).UACoil;

DataFlowUsedForSizing = WaterCoil( CoilNum ).InletAirMassFlowRate;
DesCoilWaterInTempSaved = WaterCoil( DataCoilNum ).InletWaterTemp;
if ( DesCoilWaterInTempSaved < DesCoilHWInletTempMin ) {
// at low coil design water inlet temp, sizing has convergence issue hence slightly higher water inlet temperature
// is estimated in "EstimateCoilInletWaterTemp" and used for UA autosizing only
EstimateCoilInletWaterTemp( DataCoilNum, DataFanOpMode, 1.0, DataCapacityUsedForSizing, DesCoilInletWaterTempUsed );
WaterCoil( DataCoilNum ).InletWaterTemp = DesCoilInletWaterTempUsed;
}
// must set DataCapacityUsedForSizing, DataWaterFlowUsedForSizing and DataFlowUsedForSizing to size UA. Any value of 0 will result in UA = 1.
RequestSizing( CompType, CompName, WaterHeatingCoilUASizing, SizingString, TempSize, bPRINT, RoutineName );
if ( DesCoilWaterInTempSaved < DesCoilHWInletTempMin ) {
if( DesCoilWaterInTempSaved < DesCoilHWInletTempMin ) {
ShowWarningError( "Autosizing of heating coil UA for Coil:Heating:Water \"" + CompName + "\"" );
ShowContinueError( " Plant design loop exit temperature = " + TrimSigDigits( PlantSizData( DataPltSizHeatNum ).ExitTemp, 2 ) + " C" );
ShowContinueError( " Plant design loop exit temperature is low for design load and leaving air temperature anticipated." );
ShowContinueError( " Heating coil UA-value is sized using coil water inlet temperature = " + TrimSigDigits( DesCoilInletWaterTempUsed, 2 ) + " C" );
WaterCoil( DataCoilNum ).InletWaterTemp = DesCoilWaterInTempSaved; // reset the Design Coil Inlet Water Temperature
}
WaterCoil ( CoilNum ).UACoil = TempSize;
WaterCoil( CoilNum ).UACoil = TempSize;
// if coil UA did not size due to one of these variables being 0, must set UACoilVariable to avoid crash later on
if ( DataCapacityUsedForSizing == 0.0 || DataWaterFlowUsedForSizing == 0.0 || DataFlowUsedForSizing == 0.0 ) {
if ( WaterCoil( CoilNum ).UACoilVariable == AutoSize ) {
WaterCoil( CoilNum ).UACoilVariable = TempSize;
}
}
WaterCoil( CoilNum ).DesWaterHeatingCoilRate = DataCapacityUsedForSizing;
WaterCoil( DataCoilNum ).InletWaterTemp = DesCoilWaterInTempSaved; // reset the Design Coil Inlet Water Temperature
}
Expand Down
2 changes: 1 addition & 1 deletion testfiles/1ZoneDataCenterCRAC_wPumpedDXCoolingCoil.idf
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
Main Cooling Coil 1, !- Name
System Availability Schedule, !- Availability Schedule Name
148300, !- Gross Rated Total Cooling Capacity {W}
0.85, !- Gross Rated Sensible Heat Ratio
0.83, !- Gross Rated Sensible Heat Ratio
4.5669, !- Gross Rated Cooling COP {W/W}
8.5, !- Rated Air Flow Rate {m3/s}
, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
Expand Down
2 changes: 1 addition & 1 deletion testfiles/DOAToVRF.idf
Original file line number Diff line number Diff line change
Expand Up @@ -2485,7 +2485,7 @@
Sizing:Zone,
SPACE1-1, !- Zone or ZoneList Name
SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
12.5, !- Zone Cooling Design Supply Air Temperature {C}
12.0, !- Zone Cooling Design Supply Air Temperature {C}
, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
50., !- Zone Heating Design Supply Air Temperature {C}
Expand Down
4 changes: 2 additions & 2 deletions testfiles/RefBldgSmallOfficeNew2004_Chicago.idf
Original file line number Diff line number Diff line change
Expand Up @@ -2470,7 +2470,7 @@ Fan:SystemModel,
Sizing:Zone,
Perimeter_ZN_1, !- Zone or ZoneList Name
SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
14.0000, !- Zone Cooling Design Supply Air Temperature {C}
13.9000, !- Zone Cooling Design Supply Air Temperature {C}
, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
40.0000, !- Zone Heating Design Supply Air Temperature {C}
Expand Down Expand Up @@ -2532,7 +2532,7 @@ Fan:SystemModel,
Sizing:Zone,
Perimeter_ZN_3, !- Zone or ZoneList Name
SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
14.0000, !- Zone Cooling Design Supply Air Temperature {C}
13.9000, !- Zone Cooling Design Supply Air Temperature {C}
, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
40.0000, !- Zone Heating Design Supply Air Temperature {C}
Expand Down
2 changes: 2 additions & 0 deletions tst/EnergyPlus/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ set( test_src
HighTempRadiantSystem.unit.cc
Humidifiers.unit.cc
HVACControllers.unit.cc
HVACDXSystem.unit.cc
HVACFan.unit.cc
HVACFourPipeBeam.unit.cc
HVACManager.unit.cc
Expand Down Expand Up @@ -136,6 +137,7 @@ set( test_src
SwimmingPool.unit.cc
SystemAvailabilityManager.unit.cc
ThermalComfort.unit.cc
TranspiredCollector.unit.cc
UnitHeater.unit.cc
VariableSpeedCoils.unit.cc
VAVDefMinMaxFlow.unit.cc
Expand Down
Loading

8 comments on commit a6a5eeb

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - x86_64-MacOS-10.9-clang: OK (2467 of 2499 tests passed, 564 test warnings)

Messages:

  • 570 tests had: AUD diffs.
  • 16 tests had: Table small diffs.
  • 6 tests had: Table big diffs.

Failures:

integration Test Summary

  • Passed: 572
  • Failed: 26

regression Test Summary

  • Passed: 590
  • Failed: 6

Build Badge Test Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - x86_64-Linux-Ubuntu-14.04-gcc-4.8: OK (2494 of 2539 tests passed, 568 test warnings)

Messages:

  • 574 tests had: AUD diffs.
  • 16 tests had: Table small diffs.
  • 6 tests had: Table big diffs.

Failures:

integration Test Summary

  • Passed: 575
  • Failed: 26

performance Test Summary

  • Passed: 4
  • Failed: 13

regression Test Summary

  • Passed: 610
  • Failed: 6

Build Badge Test Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - x86_64-Linux-Ubuntu-14.04-cppcheck-1.61: OK (0 of 0 tests passed, 0 test warnings)

Build Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug: OK (1305 of 1305 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-IntegrationCoverage-Debug: OK (1880 of 1906 tests passed, 0 test warnings)

Failures:

integration Test Summary

  • Passed: 575
  • Failed: 26

Build Badge Test Badge Coverage Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - x86_64-Linux-Ubuntu-14.04-custom_check: OK (0 of 0 tests passed, 0 test warnings)

Build Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - i386-Windows-7-VisualStudio-14: OK (2471 of 2505 tests passed, 565 test warnings)

Messages:

  • 573 tests had: AUD diffs.
  • 17 tests had: Table small diffs.
  • 1 test had: ERR diffs.
  • 2 tests had: EIO diffs.
  • 2 tests had: ESO big diffs.
  • 1 test had: MTR big diffs.
  • 7 tests had: Table big diffs.

Failures:

integration Test Summary

  • Passed: 575
  • Failed: 26

regression Test Summary

  • Passed: 591
  • Failed: 8

Build Badge Test Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

146627003_Issue#6151 (Nigusse) - Win64-Windows-7-VisualStudio-14: OK (2471 of 2505 tests passed, 565 test warnings)

Messages:

  • 573 tests had: AUD diffs.
  • 18 tests had: Table small diffs.
  • 3 tests had: EIO diffs.
  • 2 tests had: ESO big diffs.
  • 1 test had: MTR big diffs.
  • 7 tests had: Table big diffs.

Failures:

integration Test Summary

  • Passed: 575
  • Failed: 26

regression Test Summary

  • Passed: 591
  • Failed: 8

Build Badge Test Badge

Please sign in to comment.