Skip to content

Commit

Permalink
Merge pull request #5893 from NREL/input_processor_refactor
Browse files Browse the repository at this point in the history
JSON input format and InputProcessor refactor
  • Loading branch information
Myoldmopar authored Feb 21, 2018
2 parents e592307 + cb01901 commit 1c5ba89
Show file tree
Hide file tree
Showing 384 changed files with 182,990 additions and 46,081 deletions.
27 changes: 17 additions & 10 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,14 @@ INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/nlohmann )
INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/gtest/include/ SYSTEM )
INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/ObjexxFCL/src/ )
INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/SQLite/ SYSTEM )
INCLUDE_DIRECTORIES( "${CMAKE_SOURCE_DIR}/third_party/Expat" "${CMAKE_SOURCE_DIR}/third_party/Expat/lib" SYSTEM)
INCLUDE_DIRECTORIES( "${CMAKE_SOURCE_DIR}/third_party/Expat" "${CMAKE_SOURCE_DIR}/third_party/Expat/lib" SYSTEM )
INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/CLI/ )
INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/eigen-3.3.2/ )
INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/third_party/jsoncpp)
INCLUDE_DIRECTORIES( ${CMAKE_BINARY_DIR}/src/EnergyPlus) # so that any source can #include <ConfiguredFunctions.hh>
INCLUDE_DIRECTORIES( ${CMAKE_BINARY_DIR}/src/EnergyPlus ) # so that any source can #include <ConfiguredFunctions.hh>

#### Create interface for JSON for Modern C++ so we can include it in targets
# add_library( ModernJSON INTERFACE )
# target_include_directories( ModernJSON INTERFACE "${CMAKE_SOURCE_DIR}/third_party/nlohmann" "${CMAKE_SOURCE_DIR}/third_party/doj" )

if( BUILD_TESTING )
option( TEST_ANNUAL_SIMULATION "Use annual simulations for tests instead of only design days" OFF )
Expand All @@ -155,24 +158,32 @@ ADD_SUBDIRECTORY(third_party/FMI)
ADD_SUBDIRECTORY(third_party/zlib)
ADD_SUBDIRECTORY(third_party/DElight)
ADD_SUBDIRECTORY(third_party/re2)
IF(NOT APPLE )
ADD_SUBDIRECTORY(scripts/dev/generate_embeddable_epJSON_schema)
IF( NOT APPLE )
ADD_SUBDIRECTORY(third_party/FMUParser)
ENDIF()
ADD_SUBDIRECTORY(third_party/jsoncpp)

# Kiva
option( BUILD_GROUND_PLOT "Build ground plotting library (for Kiva debugging only)" OFF )
mark_as_advanced(FORCE BUILD_GROUND_PLOT)
INCLUDE(third_party/cmake/kiva.cmake)

execute_process( COMMAND ${PYTHON_EXECUTABLE} "${CMAKE_SOURCE_DIR}/scripts/dev/generate_epJSON_schema/generate_epJSON_schema.py" "${CMAKE_SOURCE_DIR}" TIMEOUT 30 RESULT_VARIABLE generate_epJSON_schema_result)
if( ${generate_epJSON_schema_result} MATCHES ".*timeout.*" )
message(FATAL_ERROR "Generating epJSON Schema from IDD failed: ${generate_epJSON_schema_result}")
endif()
configure_file( idd/Energy+.idd.in "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Energy+.idd" )
configure_file( idd/Energy+.schema.epJSON.in "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Energy+.schema.epJSON" )
configure_file( idd/BasementGHT.idd "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/BasementGHT.idd" )
configure_file( idd/SlabGHT.idd "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/SlabGHT.idd" )

# of course E+ itself
ADD_SUBDIRECTORY(src/EnergyPlus)

if( BUILD_TESTING )
ADD_SUBDIRECTORY(third_party/gtest)
ADD_SUBDIRECTORY(testfiles)
ADD_SUBDIRECTORY(tst/EnergyPlus/unit)
ADD_SUBDIRECTORY(tst/jsoncpp/unit)

option( BUILD_PERFORMANCE_TESTS "Build performance testing targets" OFF )

Expand All @@ -189,10 +200,6 @@ if( BUILD_TESTING )
endif()
endif()

configure_file( idd/Energy+.idd.in "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Energy+.idd" )
configure_file( idd/BasementGHT.idd "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/BasementGHT.idd" )
configure_file( idd/SlabGHT.idd "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/SlabGHT.idd" )

if( BUILD_FORTRAN )
include(CMakeAddFortranSubdirectory)
cmake_add_fortran_subdirectory(src/ExpandObjects PROJECT ExpandObjects NO_EXTERNAL_INSTALL )
Expand Down
3 changes: 2 additions & 1 deletion cmake/CompilerFlags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ IF ( MSVC AND NOT ( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel" ) ) # Visual C++
# 4258 Definition from the loop is ignored
# 4355 Passing this pointer in class initializer (object is incomplete so bases/members can only use this in limited ways)
# 4996 Deprecated functions (/D_SCL_SECURE_NO_WARNINGS /D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_WARNINGS)
# 4503 The decorated name was longer than the compiler limit (4096), and was truncated.

# need to figure out how to set this to avoid the major slow-down in debugging:
# Configuration Properties ->Debugging -> Environment, use drop-down list to choose <Edit> and type _NO_DEBUG_HEAP=1 then click OK
Expand All @@ -26,7 +27,7 @@ IF ( MSVC AND NOT ( "${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel" ) ) # Visual C++
ADD_CXX_DEFINITIONS("/MP") # Enables multi-processor compilation of source within a single project
STRING (REGEX REPLACE "/W3" "/W1" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") # Increase to /W2 then /W3 as more serious warnings are addressed (using regex to avoid VC override warnings)

ADD_CXX_DEFINITIONS("/wd4068 /wd4101 /wd4102 /wd4244 /wd4258 /wd4355 /wd4996") # Disables warning messages listed above
ADD_CXX_DEFINITIONS("/wd4068 /wd4101 /wd4102 /wd4244 /wd4258 /wd4355 /wd4996 /wd4503") # Disables warning messages listed above
ADD_CXX_DEFINITIONS("/DNOMINMAX") # Avoid build errors due to STL/Windows min-max conflicts
ADD_CXX_DEFINITIONS("/DWIN32_LEAN_AND_MEAN") # Excludes rarely used services and headers from compilation
# ADD_CXX_DEFINITIONS("-d2SSAOptimizer-") # this disables this optimizer which has known major issues
Expand Down
3 changes: 2 additions & 1 deletion cmake/RunCallbackTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
execute_process(COMMAND "${CMAKE_COMMAND}" -E copy "${SOURCE_DIR}/testfiles/${IDF_FILE}" "${BINARY_DIR}/${TEST_DIR}/in.idf" )
execute_process(COMMAND "${CMAKE_COMMAND}" -E copy "${SOURCE_DIR}/weather/${EPW_FILE}" "${BINARY_DIR}/${TEST_DIR}/in.epw" )
execute_process(COMMAND "${CMAKE_COMMAND}" -E copy "${BINARY_DIR}/Products/Energy+.idd" "${BINARY_DIR}/${TEST_DIR}/Energy+.idd" )
execute_process(COMMAND "${CMAKE_COMMAND}" -E copy "${BINARY_DIR}/Products/Energy+.schema.epJSON" "${BINARY_DIR}/${TEST_DIR}/Energy+.schema.epJSON" )

# Find and execute the test executable, passing the argument of the directory to run in
if( WIN32 )
Expand All @@ -19,7 +20,7 @@
execute_process(COMMAND ${ECHO_CMD} COMMAND "${TEST_EXE}" "${BINARY_DIR}/${TEST_DIR}")

# Clean up
execute_process(COMMAND "${CMAKE_COMMAND}" -E remove "${BINARY_DIR}/${TEST_DIR}/Energy+.idd" "${BINARY_DIR}/${TEST_DIR}/in.epw" )
execute_process(COMMAND "${CMAKE_COMMAND}" -E remove "${BINARY_DIR}/${TEST_DIR}/Energy+.idd" "${BINARY_DIR}/${TEST_DIR}/in.epw")

# Check the outputs and return appropriately
file(READ "${BINARY_DIR}/${TEST_DIR}/eplusout.end" FILE_CONTENT)
Expand Down
2 changes: 1 addition & 1 deletion datasets/PerfCurves.idf
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@
!

HeatExchanger:Desiccant:BalancedFlow:PerformanceDataType1,
HXDesPerf1, !- Name
HXDesPerf2, !- Name
1.32, !- Nominal Air Flow Rate {m3/s}
4.064, !- Nominal Air Face Velocity {m/s}
50.0, !- Nominal Electric Power {W}
Expand Down
82 changes: 22 additions & 60 deletions datasets/RefrigerationCasesDataSet.idf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
! Multi-Deck Rear Dairy/Deli Merchandiser with Synergy-E,
! Multi-Deck Deli back ,
! Single Deck Club Case Merchandiser,
! Single Deck Club Case Merchandiser,
! Single Deck Club Merchandiser,
! Single Deck Club Case Merchandiser,
! Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser,
Expand Down Expand Up @@ -396,12 +395,17 @@

Refrigeration:CaseAndWalkInList,
NameofCaseList, !- Name
Multi-Deck Dairy/Deli Merchandiser with Synergy-E, !- Case or WalkIn 1 Name
Multi-Deck Dairy/Deli Merchandiser with Synergy-E 1, !- Case or WalkIn 1a Name
Multi-Deck Dairy/Deli Merchandiser with Synergy-E 2, !- Case or WalkIn 1b Name
Multi-Deck Deli back, !- Case or WalkIn 2 Name
A_Single Deck Club Case Merchandiser, !- Case or WalkIn 3 Name
B_Single Deck Club Case Merchandiser, !- Case or WalkIn 4 Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Case or WalkIn 5 Name
Multi Deck Frozen Food Merchandiser, !- Case or WalkIn 6 Name
Single Deck Club Case Merchandiser 1, !- Case or WalkIn 3 Name
Single Deck Club Case Merchandiser 2, !- Case or WalkIn 4 Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 1, !- Case or WalkIn 5a Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 2, !- Case or WalkIn 5b Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 3, !- Case or WalkIn 5b Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 4, !- Case or WalkIn 5b Name
Multi Deck Frozen Food Merchandiser 1, !- Case or WalkIn 6a Name
Multi Deck Frozen Food Merchandiser 2, !- Case or WalkIn 6b Name
Wide Island Multi-Deck Deli/Meat Merchandiser, !- Case or WalkIn 7 Name
International Style Service Deli/Meat/Seafood Merchandiser; !- Case or WalkIn 8 Name

Expand All @@ -412,7 +416,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi-Deck Dairy/Deli Merchandiser with Synergy-E, !- Name
Multi-Deck Dairy/Deli Merchandiser with Synergy-E 1, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -541,7 +545,7 @@
!- Defrost Notes :

Refrigeration:Case,
Single Deck Club Case Merchandiser, !- Name
Single Deck Club Case Merchandiser 1, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -577,48 +581,6 @@
-5.56, !- Design Evaporator Temperature or Brine Inlet Temperature {C}
; !- Average Refrigerant Charge Inventory {kg/m}

!- Single Deck Club Case Merchandiser is a Doored Case based on Hill Phoenix CUBNH served by the Medium Temperature .
!- NOTES : Data sheet 03/08
!- Lighting Notes : One light level offered; 1 row
!- Fan Notes : High Efficiency Fans are not applicable for the model
!- Defrost Notes :

Refrigeration:Case,
Single Deck Club Case Merchandiser, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
55, !- Rated Ambient Relative Humidity {percent}
625, !- Rated Total Cooling Capacity per Unit Length {W/m}
0.30, !- Rated Latent Heat Ratio
0.85, !- Rated Runtime Fraction
2.4, !- Case Length {m}
1.11, !- Case Operating Temperature {C}
CaseTemperatureMethod, !- Latent Case Credit Curve Type
Single_Shelf_Horizontal_Latent_Case_Credit_Curve, !- Latent Case Credit Curve Name
23.0, !- Standard Case Fan Power per Unit Length {W/m}
23.0, !- Operating Case Fan Power per Unit Length {W/m}
27.3, !- Standard Case Lighting Power per Unit Length {W/m}
27.3, !- Installed Case Lighting Power per Unit Length {W/m}
, !- Case Lighting Schedule Name
1.0, !- Fraction of Lighting Energy to Case
0.0, !- Case Anti-Sweat Heater Power per Unit Length {W/m}
, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m}
None, !- Anti-Sweat Heater Control Type
, !- Humidity at Zero Anti-Sweat Heater Energy {percent}
, !- Case Height {m}
1.0, !- Fraction of Anti-Sweat Heater Energy to Case
0.0, !- Case Defrost Power per Unit Length {W/m}
Off Cycle, !- Case Defrost Type
UserProvideDefSched3PerDay20MinEa, !- Case Defrost Schedule Name
UserProvideDefSched3PerDay27MinEa, !- Case Defrost Drip-Down Schedule Name
CaseTemperatureMethod, !- Defrost Energy Correction Curve Type
Single Shelf Horizontal, !- Defrost Energy Correction Curve Name
0.00, !- Under Case HVAC Return Air Fraction
, !- Refrigerated Case Restocking Schedule Name
, !- Case Credit Fraction Schedule Name
-5.56, !- Design Evaporator Temperature or Brine Inlet Temperature {C}
; !- Average Refrigerant Charge Inventory {kg/m}

!- Single Deck Club Merchandiser is a Doored Case based on Hill Phoenix CUBW served by the Medium Temperature .
!- NOTES : Data sheet 03/08
Expand Down Expand Up @@ -670,7 +632,7 @@
!- Defrost Notes :

Refrigeration:Case,
Single Deck Club Case Merchandiser, !- Name
Single Deck Club Case Merchandiser 2 , !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -713,7 +675,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 1, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -756,7 +718,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi-Deck Dairy/Deli Merchandiser with Synergy-E, !- Name
Multi-Deck Dairy/Deli Merchandiser with Synergy-E 2, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -799,7 +761,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi Deck Frozen Food Merchandiser, !- Name
Multi Deck Frozen Food Merchandiser 1, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -842,7 +804,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi Deck Frozen Food Merchandiser, !- Name
Multi Deck Frozen Food Merchandiser 2, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -885,7 +847,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 2, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -1100,7 +1062,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 3, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -1229,7 +1191,7 @@
!- Defrost Notes :

Refrigeration:Case,
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser 4, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -5271,7 +5233,7 @@
!- Defrost Notes :

Refrigeration:Case,
Narrow Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
A_Narrow Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down Expand Up @@ -7679,7 +7641,7 @@
!- Defrost Notes :

Refrigeration:Case,
Narrow Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
B_Narrow Multi-Deck Produce/Dairy/Deli/Meat/Seafood Merchandiser, !- Name
, !- Availability Schedule Name
UserProvideZoneName, !- Zone Name
23.89, !- Rated Ambient Temperature {C}
Expand Down
Loading

18 comments on commit 1c5ba89

@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.

develop (Myoldmopar) - x86_64-MacOS-10.9-clang: OK (2267 of 2267 tests passed, 0 test warnings)

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.

develop (Myoldmopar) - i386-Windows-7-VisualStudio-14: OK (2267 of 2267 tests passed, 0 test warnings)

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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8: OK (2287 of 2287 tests passed, 0 test warnings)

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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-cppcheck-1.61: 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.

develop (Myoldmopar) - Win64-Windows-7-VisualStudio-14: OK (2267 of 2267 tests passed, 0 test warnings)

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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug: OK (1643 of 1643 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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-IntegrationCoverage-Debug: OK (2270 of 2270 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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-custom_check: 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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-cppcheck-1.61: 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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - i386-Windows-7-VisualStudio-14: OK (2889 of 2889 tests passed, 0 test warnings)

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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug: OK (1643 of 1643 tests passed, 0 test warnings)

Build Badge Test Badge Coverage 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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - Win64-Windows-7-VisualStudio-14: OK (2889 of 2889 tests passed, 0 test warnings)

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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-IntegrationCoverage-Debug: OK (2270 of 2270 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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-custom_check: 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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - x86_64-Linux-Ubuntu-14.04-gcc-4.8: OK (2929 of 2929 tests passed, 0 test warnings)

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.

6487-population-diversity-follow-up (Myoldmopar) - i386-Windows-7-VisualStudio-14: OK (2889 of 2889 tests passed, 0 test warnings)

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.

6487-population-diversity-follow-up (Myoldmopar) - Win64-Windows-7-VisualStudio-14: OK (2889 of 2889 tests passed, 0 test warnings)

Build Badge Test Badge

@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.

#6485-VRF-power-in-heat-recovery-using-ThermostatOffsetPriority-is-0-when-coils-are-active (Myoldmopar) - x86_64-MacOS-10.9-clang: OK (2889 of 2889 tests passed, 8 test warnings)

Messages:

  • 8 tests had: AUD diffs.

Build Badge Test Badge

Please sign in to comment.