Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/NREL/EnergyPlus into #6044
Browse files Browse the repository at this point in the history
…-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA
  • Loading branch information
rraustad committed Jun 12, 2017
2 parents 6acca50 + 477f36c commit 33ffdb2
Show file tree
Hide file tree
Showing 50 changed files with 1,851 additions and 1,302 deletions.
12 changes: 6 additions & 6 deletions doc/CMakeLists.txt
Expand Up @@ -5,7 +5,7 @@ file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/doc-build)

# add a configure rule to the header file though
configure_file(${CMAKE_SOURCE_DIR}/doc/header.tex ${CMAKE_BINARY_DIR}/doc-build/header.tex COPYONLY)
configure_file(${CMAKE_SOURCE_DIR}/doc/title.tex ${CMAKE_BINARY_DIR}/doc-build/title.tex COPYONLY)
configure_file(${CMAKE_SOURCE_DIR}/doc/title.tex.in ${CMAKE_BINARY_DIR}/doc-build/title.tex)
configure_file(${CMAKE_SOURCE_DIR}/doc/index.html ${CMAKE_BINARY_DIR}/doc-build/index.html COPYONLY)

# add each of the documents, they have their own CMakeLists.txt files
Expand All @@ -28,15 +28,15 @@ if (BUILD_VALIDATION_REPORTS)

# wkhtmltopdf
if(MSVC)
find_program(WKHTMLTOPDF_EXECUTABLE
find_program(WKHTMLTOPDF_EXECUTABLE
wkhtmltopdf
PATHS "C:/Program Files/wkhtmltopdf/bin" "C:/Program Files (x86)/wkhtmltopdf/bin")
else()
find_program(WKHTMLTOPDF_EXECUTABLE
find_program(WKHTMLTOPDF_EXECUTABLE
wkhtmltopdf
)
endif()
execute_process(COMMAND ${WKHTMLTOPDF_EXECUTABLE} -V
execute_process(COMMAND ${WKHTMLTOPDF_EXECUTABLE} -V
OUTPUT_VARIABLE wkhtmltopdfversionout)
string(REGEX MATCH "([0-9]+\\.?)+" WKHTMLTOPDF_VER "${wkhtmltopdfversionout}")
string(FIND "${wkhtmltopdfversionout}" "with patched qt" WKHTMLTOPDF_PATCHEDQT )
Expand All @@ -46,11 +46,11 @@ if (BUILD_VALIDATION_REPORTS)
if (WKHTMLTOPDF_PATCHEDQT LESS "0")
message(FATAL_ERROR "wkhtmltopdf with special patchedqt build required")
endif()

# pandoc
find_program(PANDOC_EXECUTABLE pandoc)
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Products)
execute_process(COMMAND ${PANDOC_EXECUTABLE} -v
execute_process(COMMAND ${PANDOC_EXECUTABLE} -v
OUTPUT_VARIABLE pandocversionout)
string(REGEX MATCH "([0-9]+\\.?)+" PANDOC_VER "${pandocversionout}")
if (PANDOC_VER VERSION_LESS "1.13.2")
Expand Down
10 changes: 5 additions & 5 deletions doc/acknowledgements/CMakeLists.txt
@@ -1,20 +1,20 @@

# to get the list of input files, go to the root of the document folder, and:
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/header.tex
${CMAKE_SOURCE_DIR}/doc/acknowledgements/acknowledgements.tex
${CMAKE_SOURCE_DIR}/doc/acknowledgements/src/notices-and-acknowledgments.tex
${CMAKE_SOURCE_DIR}/doc/acknowledgements/src/notices-and-acknowledgments/copyright-notice.tex
${CMAKE_SOURCE_DIR}/doc/acknowledgements/src/notices-and-acknowledgments/other-software-included-or-referenced.tex
${CMAKE_SOURCE_DIR}/doc/acknowledgements/src/notices-and-acknowledgments/other-acknowledgments.tex
${CMAKE_SOURCE_DIR}/doc/title.tex
${CMAKE_BINARY_DIR}/doc-build/title.tex
)

# to get the list of inluded images, go to the root of the document folder and:
# grep -r '\\includegraphics' * | cut -d ':' -f 2 | rev | cut -d '{' -f 1 | rev | cut -d '}' -f 1 | sed 's/^/ /g' | sort -n -t'.' -k 1.14
SET( INCLUDED_IMAGES
)
SET( INCLUDED_IMAGES
)

SET( SOURCE_FILENAME "acknowledgements" )
SET( OUTPUT_FILENAME "Acknowledgements" )
Expand All @@ -25,7 +25,7 @@ add_custom_command( OUTPUT ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
COMMAND ${CMAKE_COMMAND} -DXELATEX=${XELATEX} -DINNAME=${SOURCE_FILENAME} -DOUTNAME=${OUTPUT_FILENAME} -DORIGINAL_CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR} -DORIGINAL_CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/cmake/BuildDocumentation.cmake
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/doc-build/${SOURCE_FILENAME}
DEPENDS ${INCLUDED_TEX} ${INCLUDED_IMAGES}
)
)
add_custom_target( zPDF_${OUTPUT_FILENAME} ALL
DEPENDS ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
)
10 changes: 5 additions & 5 deletions doc/auxiliary-programs/CMakeLists.txt
@@ -1,6 +1,6 @@

# to get the list of input files, go to the root of the document folder, and:
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/../header.tex
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/auxiliary-programs.tex
Expand Down Expand Up @@ -107,12 +107,12 @@ SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/src/creating-input-files/idfeditor.tex
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/src/manipulating-output-files.tex
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/src/manipulating-output-files/ep-compare.tex
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/../title.tex
${CMAKE_BINARY_DIR}/doc-build/title.tex
)

# to get the list of inluded images, go to the root of the document folder and:
# grep -r '\\includegraphics' * | cut -d ':' -f 2 | rev | cut -d '{' -f 1 | rev | cut -d '}' -f 1 | sed 's/^/ /g' | sort -n -t'.' -k 1.14
SET( INCLUDED_IMAGES
SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/media/image001.jpg
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/media/image002.jpg
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/media/image003.jpg
Expand Down Expand Up @@ -190,7 +190,7 @@ SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/media/image121.png
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/media/image122.png
${CMAKE_SOURCE_DIR}/doc/auxiliary-programs/media/image123.png
)
)

SET( SOURCE_FILENAME "auxiliary-programs" )
SET( OUTPUT_FILENAME "AuxiliaryPrograms" )
Expand All @@ -201,7 +201,7 @@ add_custom_command( OUTPUT ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
COMMAND ${CMAKE_COMMAND} -DXELATEX=${XELATEX} -DINNAME=${SOURCE_FILENAME} -DOUTNAME=${OUTPUT_FILENAME} -DORIGINAL_CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR} -DORIGINAL_CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/cmake/BuildDocumentation.cmake
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/doc-build/${SOURCE_FILENAME}
DEPENDS ${INCLUDED_TEX} ${INCLUDED_IMAGES}
)
)
add_custom_target( zPDF_${OUTPUT_FILENAME} ALL
DEPENDS ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
)
10 changes: 5 additions & 5 deletions doc/ems-application-guide/CMakeLists.txt
@@ -1,6 +1,6 @@

# to get the list of input files, go to the root of the document folder, and:
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/header.tex
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/ems-application-guide.tex
Expand Down Expand Up @@ -70,17 +70,17 @@ SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/src/debugging-ems-programs/edd-file.tex
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/src/debugging-ems-programs/line-trace.tex
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/src/debugging-ems-programs/debugging-strategies.tex
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/../title.tex
${CMAKE_BINARY_DIR}/doc-build/title.tex
)

# to get the list of inluded images, go to the root of the document folder and:
# grep -r '\\includegraphics' * | cut -d ':' -f 2 | rev | cut -d '{' -f 1 | rev | cut -d '}' -f 1 | sed 's/^/ /g' | sort -n -t'.' -k 1.14
SET( INCLUDED_IMAGES
SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/media/image003.jpg
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/media/image004.jpg
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/media/image005.jpg
${CMAKE_SOURCE_DIR}/doc/ems-application-guide/media/image011.jpg
)
)

SET( SOURCE_FILENAME "ems-application-guide" )
SET( OUTPUT_FILENAME "EMSApplicationGuide" )
Expand All @@ -91,7 +91,7 @@ add_custom_command( OUTPUT ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
COMMAND ${CMAKE_COMMAND} -DXELATEX=${XELATEX} -DINNAME=${SOURCE_FILENAME} -DOUTNAME=${OUTPUT_FILENAME} -DORIGINAL_CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR} -DORIGINAL_CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/cmake/BuildDocumentation.cmake
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/doc-build/${SOURCE_FILENAME}
DEPENDS ${INCLUDED_TEX} ${INCLUDED_IMAGES}
)
)
add_custom_target( zPDF_${OUTPUT_FILENAME} ALL
DEPENDS ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
)
2 changes: 1 addition & 1 deletion doc/engineering-reference/CMakeLists.txt
Expand Up @@ -147,7 +147,7 @@ SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/engineering-reference/src/special-modules-reporting/environmental-impacts.tex
${CMAKE_SOURCE_DIR}/doc/engineering-reference/src/special-modules-reporting/zone-component-loads-summary.tex
${CMAKE_SOURCE_DIR}/doc/engineering-reference/src/special-modules-reporting/output-table-annual.tex
${CMAKE_SOURCE_DIR}/doc/title.tex
${CMAKE_BINARY_DIR}/doc-build/title.tex
)

# to get the list of inluded images, go to the root of the document folder and:
Expand Down
10 changes: 5 additions & 5 deletions doc/external-interfaces-application-guide/CMakeLists.txt
@@ -1,6 +1,6 @@

# to get the list of input files, go to the root of the document folder, and:
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/header.tex
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/external-interfaces-application-guide.tex
Expand All @@ -13,12 +13,12 @@ SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/src/external-interface-s/fmu-examples.tex
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/src/external-interface-s/exporting-energyplus-as-a-functional-mock-up.tex
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/src/references.tex
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/../title.tex
${CMAKE_BINARY_DIR}/doc-build/title.tex
)

# to get the list of inluded images, go to the root of the document folder and:
# grep -r '\\includegraphics' * | cut -d ':' -f 2 | rev | cut -d '{' -f 1 | rev | cut -d '}' -f 1 | sed 's/^/ /g' | sort -n -t'.' -k 1.14
SET( INCLUDED_IMAGES
SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/media/image004.png
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/media/image005.png
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/media/image006.png
Expand All @@ -30,7 +30,7 @@ SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/media/image035.png
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/media/image036.png
${CMAKE_SOURCE_DIR}/doc/external-interfaces-application-guide/media/image037.png
)
)

SET( SOURCE_FILENAME "external-interfaces-application-guide" )
SET( OUTPUT_FILENAME "ExternalInterfacesApplicationGuide" )
Expand All @@ -41,7 +41,7 @@ add_custom_command( OUTPUT ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
COMMAND ${CMAKE_COMMAND} -DXELATEX=${XELATEX} -DINNAME=${SOURCE_FILENAME} -DOUTNAME=${OUTPUT_FILENAME} -DORIGINAL_CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR} -DORIGINAL_CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/cmake/BuildDocumentation.cmake
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/doc-build/${SOURCE_FILENAME}
DEPENDS ${INCLUDED_TEX} ${INCLUDED_IMAGES}
)
)
add_custom_target( zPDF_${OUTPUT_FILENAME} ALL
DEPENDS ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
)
10 changes: 5 additions & 5 deletions doc/getting-started/CMakeLists.txt
@@ -1,6 +1,6 @@

# to get the list of input files, go to the root of the document folder, and:
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/acknowledgements/|g' | sed 's/$/.tex/g'
SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/header.tex
${CMAKE_SOURCE_DIR}/doc/getting-started/getting-started.tex
Expand Down Expand Up @@ -41,12 +41,12 @@ SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/getting-started/src/energy-meters/standard-energy-meters.tex
${CMAKE_SOURCE_DIR}/doc/getting-started/src/energy-meters/custom-meters.tex
${CMAKE_SOURCE_DIR}/doc/getting-started/src/standard-energyplus-units.tex
${CMAKE_SOURCE_DIR}/doc/getting-started/../title.tex
${CMAKE_BINARY_DIR}/doc-build/title.tex
)

# to get the list of inluded images, go to the root of the document folder and:
# grep -r '\\includegraphics' * | cut -d ':' -f 2 | rev | cut -d '{' -f 1 | rev | cut -d '}' -f 1 | sed 's/^/ /g' | sort -n -t'.' -k 1.14
SET( INCLUDED_IMAGES
SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/getting-started/media/image001.png
${CMAKE_SOURCE_DIR}/doc/getting-started/media/image002.jpg
${CMAKE_SOURCE_DIR}/doc/getting-started/media/image004.png
Expand All @@ -70,7 +70,7 @@ SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/getting-started/media/image022.png
${CMAKE_SOURCE_DIR}/doc/getting-started/media/image023.png
${CMAKE_SOURCE_DIR}/doc/getting-started/media/image024.jpg
)
)

SET( SOURCE_FILENAME "getting-started" )
SET( OUTPUT_FILENAME "GettingStarted" )
Expand All @@ -81,7 +81,7 @@ add_custom_command( OUTPUT ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
COMMAND ${CMAKE_COMMAND} -DXELATEX=${XELATEX} -DINNAME=${SOURCE_FILENAME} -DOUTNAME=${OUTPUT_FILENAME} -DORIGINAL_CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR} -DORIGINAL_CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/cmake/BuildDocumentation.cmake
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/doc-build/${SOURCE_FILENAME}
DEPENDS ${INCLUDED_TEX} ${INCLUDED_IMAGES}
)
)
add_custom_target( zPDF_${OUTPUT_FILENAME} ALL
DEPENDS ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
)
9 changes: 4 additions & 5 deletions doc/input-output-reference/CMakeLists.txt
@@ -1,6 +1,6 @@

# to get the list of input files, go to the root of the document folder, and:
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/input-output-reference/|g' | sed 's/$/.tex/g'
# grep -r '\\input{' * | cut -d ':' -f 2 | cut -c 8- | rev | cut -c 2- | rev | sed 's|^| ${CMAKE_SOURCE_DIR}/doc/input-output-reference/|g' | sed 's/$/.tex/g'
SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/header.tex
${CMAKE_SOURCE_DIR}/doc/input-output-reference/input-output-reference.tex
Expand Down Expand Up @@ -107,10 +107,9 @@ SET( INCLUDED_TEX
${CMAKE_SOURCE_DIR}/doc/input-output-reference/src/standard-output-reports/output-table-annual.tex
${CMAKE_SOURCE_DIR}/doc/input-output-reference/src/standard-output-reports/output-table-summaryreports.tex
${CMAKE_SOURCE_DIR}/doc/input-output-reference/src/standard-output-reports/outputcontrol-table-style.tex
${CMAKE_SOURCE_DIR}/doc/input-output-reference/../title.tex
${CMAKE_SOURCE_DIR}/doc/input-output-reference/src/weather-data/missing-weather-file-data.tex
${CMAKE_SOURCE_DIR}/doc/input-output-reference/src/weather-data/weather-data-hourly-interpolation.tex
${CMAKE_SOURCE_DIR}/doc/title.tex
${CMAKE_BINARY_DIR}/doc-build/title.tex
)

# to get the list of inluded images, go to the root of the document folder and:
Expand Down Expand Up @@ -305,7 +304,7 @@ SET( INCLUDED_IMAGES
${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/image902.png
${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/image903.png
${CMAKE_SOURCE_DIR}/doc/input-output-reference/media/image904.png
)
)

SET( SOURCE_FILENAME "input-output-reference" )
SET( OUTPUT_FILENAME "InputOutputReference" )
Expand All @@ -316,7 +315,7 @@ add_custom_command( OUTPUT ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
COMMAND ${CMAKE_COMMAND} -DXELATEX=${XELATEX} -DINNAME=${SOURCE_FILENAME} -DOUTNAME=${OUTPUT_FILENAME} -DORIGINAL_CMAKE_SOURCE_DIR=${CMAKE_SOURCE_DIR} -DORIGINAL_CMAKE_BINARY_DIR=${CMAKE_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/cmake/BuildDocumentation.cmake
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/doc-build/${SOURCE_FILENAME}
DEPENDS ${INCLUDED_TEX} ${INCLUDED_IMAGES}
)
)
add_custom_target( zPDF_${OUTPUT_FILENAME} ALL
DEPENDS ${CMAKE_BINARY_DIR}/doc-build/${OUTPUT_FILENAME}.pdf
)

8 comments on commit 33ffdb2

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

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - x86_64-MacOS-10.9-clang: OK (2346 of 2497 tests passed, 0 test warnings)

Messages:

  • 149 tests had: EIO diffs.
  • 103 tests had: ESO big diffs.
  • 144 tests had: Table big diffs.
  • 43 tests had: ESO small diffs.
  • 96 tests had: MTR big diffs.
  • 11 tests had: ERR diffs.
  • 2 tests had: MTR small diffs.

Failures:

EnergyPlusFixture Test Summary

  • Passed: 471
  • Failed: 1

regression Test Summary

  • Passed: 447
  • Failed: 149

WaterCoilsTest Test Summary

  • Passed: 7
  • Failed: 1

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.

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - x86_64-Linux-Ubuntu-14.04-gcc-4.8: OK (2386 of 2537 tests passed, 0 test warnings)

Messages:

  • 149 tests had: EIO diffs.
  • 43 tests had: ESO small diffs.
  • 96 tests had: MTR big diffs.
  • 144 tests had: Table big diffs.
  • 103 tests had: ESO big diffs.
  • 11 tests had: ERR diffs.
  • 2 tests had: MTR small diffs.

Failures:

EnergyPlusFixture Test Summary

  • Passed: 471
  • Failed: 1

regression Test Summary

  • Passed: 467
  • Failed: 149

WaterCoilsTest Test Summary

  • Passed: 7
  • Failed: 1

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.

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - 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.

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug: OK (1301 of 1303 tests passed, 0 test warnings)

Failures:

EnergyPlusFixture Test Summary

  • Passed: 471
  • Failed: 1

WaterCoilsTest Test Summary

  • Passed: 7
  • Failed: 1

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.

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-IntegrationCoverage-Debug: OK (1902 of 1904 tests passed, 0 test warnings)

Failures:

EnergyPlusFixture Test Summary

  • Passed: 471
  • Failed: 1

WaterCoilsTest Test Summary

  • Passed: 7
  • Failed: 1

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.

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - 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.

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - i386-Windows-7-VisualStudio-14: OK (2501 of 2503 tests passed, 0 test warnings)

Failures:

EnergyPlusFixture Test Summary

  • Passed: 471
  • Failed: 1

WaterCoilsTest Test Summary

  • Passed: 7
  • Failed: 1

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.

#6044-Reheat-coils-using-main-air-loop-air-flow-rate-to-size-coil-UA (rraustad) - Win64-Windows-7-VisualStudio-14: OK (2501 of 2503 tests passed, 0 test warnings)

Failures:

EnergyPlusFixture Test Summary

  • Passed: 471
  • Failed: 1

WaterCoilsTest Test Summary

  • Passed: 7
  • Failed: 1

Build Badge Test Badge

Please sign in to comment.