diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 259f7ffbc..f2a10e533 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -29,6 +29,16 @@ jobs: with: name: CSE.exe path: msvc/CSE.exe + - name: Upload executable artifiact + uses: actions/upload-artifact@v2 + with: + name: CSE.map + path: msvc/CSE.map + - name: Upload executable artifiact + uses: actions/upload-artifact@v2 + with: + name: linkRead.log + path: msvc\build\src\CSE.dir\Release\CSE.tlog\link.read.1.tlog test-cse: name: Test CSE needs: build-cse diff --git a/cmake/cotire.cmake b/cmake/cotire.cmake deleted file mode 100644 index 62cd23db9..000000000 --- a/cmake/cotire.cmake +++ /dev/null @@ -1,4054 +0,0 @@ -# - cotire (compile time reducer) -# -# See the cotire manual for usage hints. -# -#============================================================================= -# Copyright 2012-2017 Sascha Kratky -# -# Permission is hereby granted, free of charge, to any person -# obtaining a copy of this software and associated documentation -# files (the "Software"), to deal in the Software without -# restriction, including without limitation the rights to use, -# copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the -# Software is furnished to do so, subject to the following -# conditions: -# -# The above copyright notice and this permission notice shall be -# included in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -# OTHER DEALINGS IN THE SOFTWARE. -#============================================================================= - -if(__COTIRE_INCLUDED) - return() -endif() -set(__COTIRE_INCLUDED TRUE) - -# call cmake_minimum_required, but prevent modification of the CMake policy stack in include mode -# cmake_minimum_required also sets the policy version as a side effect, which we have to avoid -if (NOT CMAKE_SCRIPT_MODE_FILE) - cmake_policy(PUSH) -endif() -cmake_minimum_required(VERSION 2.8.12) -if (NOT CMAKE_SCRIPT_MODE_FILE) - cmake_policy(POP) -endif() - -set (COTIRE_CMAKE_MODULE_FILE "${CMAKE_CURRENT_LIST_FILE}") -set (COTIRE_CMAKE_MODULE_VERSION "1.7.10") - -# activate select policies -if (POLICY CMP0025) - # Compiler id for Apple Clang is now AppleClang - cmake_policy(SET CMP0025 NEW) -endif() - -if (POLICY CMP0026) - # disallow use of the LOCATION target property - cmake_policy(SET CMP0026 NEW) -endif() - -if (POLICY CMP0038) - # targets may not link directly to themselves - cmake_policy(SET CMP0038 NEW) -endif() - -if (POLICY CMP0039) - # utility targets may not have link dependencies - cmake_policy(SET CMP0039 NEW) -endif() - -if (POLICY CMP0040) - # target in the TARGET signature of add_custom_command() must exist - cmake_policy(SET CMP0040 NEW) -endif() - -if (POLICY CMP0045) - # error on non-existent target in get_target_property - cmake_policy(SET CMP0045 NEW) -endif() - -if (POLICY CMP0046) - # error on non-existent dependency in add_dependencies - cmake_policy(SET CMP0046 NEW) -endif() - -if (POLICY CMP0049) - # do not expand variables in target source entries - cmake_policy(SET CMP0049 NEW) -endif() - -if (POLICY CMP0050) - # disallow add_custom_command SOURCE signatures - cmake_policy(SET CMP0050 NEW) -endif() - -if (POLICY CMP0051) - # include TARGET_OBJECTS expressions in a target's SOURCES property - cmake_policy(SET CMP0051 NEW) -endif() - -if (POLICY CMP0053) - # simplify variable reference and escape sequence evaluation - cmake_policy(SET CMP0053 NEW) -endif() - -if (POLICY CMP0054) - # only interpret if() arguments as variables or keywords when unquoted - cmake_policy(SET CMP0054 NEW) -endif() - -if (POLICY CMP0055) - # strict checking for break() command - cmake_policy(SET CMP0055 NEW) -endif() - -include(CMakeParseArguments) -include(ProcessorCount) - -function (cotire_get_configuration_types _configsVar) - set (_configs "") - if (CMAKE_CONFIGURATION_TYPES) - list (APPEND _configs ${CMAKE_CONFIGURATION_TYPES}) - endif() - if (CMAKE_BUILD_TYPE) - list (APPEND _configs "${CMAKE_BUILD_TYPE}") - endif() - if (_configs) - list (REMOVE_DUPLICATES _configs) - set (${_configsVar} ${_configs} PARENT_SCOPE) - else() - set (${_configsVar} "None" PARENT_SCOPE) - endif() -endfunction() - -function (cotire_get_source_file_extension _sourceFile _extVar) - # get_filename_component returns extension from first occurrence of . in file name - # this function computes the extension from last occurrence of . in file name - string (FIND "${_sourceFile}" "." _index REVERSE) - if (_index GREATER -1) - math (EXPR _index "${_index} + 1") - string (SUBSTRING "${_sourceFile}" ${_index} -1 _sourceExt) - else() - set (_sourceExt "") - endif() - set (${_extVar} "${_sourceExt}" PARENT_SCOPE) -endfunction() - -macro (cotire_check_is_path_relative_to _path _isRelativeVar) - set (${_isRelativeVar} FALSE) - if (IS_ABSOLUTE "${_path}") - foreach (_dir ${ARGN}) - file (RELATIVE_PATH _relPath "${_dir}" "${_path}") - if (NOT _relPath OR (NOT IS_ABSOLUTE "${_relPath}" AND NOT "${_relPath}" MATCHES "^\\.\\.")) - set (${_isRelativeVar} TRUE) - break() - endif() - endforeach() - endif() -endmacro() - -function (cotire_filter_language_source_files _language _target _sourceFilesVar _excludedSourceFilesVar _cotiredSourceFilesVar) - if (CMAKE_${_language}_SOURCE_FILE_EXTENSIONS) - set (_languageExtensions "${CMAKE_${_language}_SOURCE_FILE_EXTENSIONS}") - else() - set (_languageExtensions "") - endif() - if (CMAKE_${_language}_IGNORE_EXTENSIONS) - set (_ignoreExtensions "${CMAKE_${_language}_IGNORE_EXTENSIONS}") - else() - set (_ignoreExtensions "") - endif() - if (COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS) - set (_excludeExtensions "${COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS}") - else() - set (_excludeExtensions "") - endif() - if (COTIRE_DEBUG AND _languageExtensions) - message (STATUS "${_language} source file extensions: ${_languageExtensions}") - endif() - if (COTIRE_DEBUG AND _ignoreExtensions) - message (STATUS "${_language} ignore extensions: ${_ignoreExtensions}") - endif() - if (COTIRE_DEBUG AND _excludeExtensions) - message (STATUS "${_language} exclude extensions: ${_excludeExtensions}") - endif() - if (CMAKE_VERSION VERSION_LESS "3.1.0") - set (_allSourceFiles ${ARGN}) - else() - # as of CMake 3.1 target sources may contain generator expressions - # since we cannot obtain required property information about source files added - # through generator expressions at configure time, we filter them out - string (GENEX_STRIP "${ARGN}" _allSourceFiles) - endif() - set (_filteredSourceFiles "") - set (_excludedSourceFiles "") - foreach (_sourceFile ${_allSourceFiles}) - get_source_file_property(_sourceIsHeaderOnly "${_sourceFile}" HEADER_FILE_ONLY) - get_source_file_property(_sourceIsExternal "${_sourceFile}" EXTERNAL_OBJECT) - get_source_file_property(_sourceIsSymbolic "${_sourceFile}" SYMBOLIC) - if (NOT _sourceIsHeaderOnly AND NOT _sourceIsExternal AND NOT _sourceIsSymbolic) - cotire_get_source_file_extension("${_sourceFile}" _sourceExt) - if (_sourceExt) - list (FIND _ignoreExtensions "${_sourceExt}" _ignoreIndex) - if (_ignoreIndex LESS 0) - list (FIND _excludeExtensions "${_sourceExt}" _excludeIndex) - if (_excludeIndex GREATER -1) - list (APPEND _excludedSourceFiles "${_sourceFile}") - else() - list (FIND _languageExtensions "${_sourceExt}" _sourceIndex) - if (_sourceIndex GREATER -1) - # consider source file unless it is excluded explicitly - get_source_file_property(_sourceIsExcluded "${_sourceFile}" COTIRE_EXCLUDED) - if (_sourceIsExcluded) - list (APPEND _excludedSourceFiles "${_sourceFile}") - else() - list (APPEND _filteredSourceFiles "${_sourceFile}") - endif() - else() - get_source_file_property(_sourceLanguage "${_sourceFile}" LANGUAGE) - if ("${_sourceLanguage}" STREQUAL "${_language}") - # add to excluded sources, if file is not ignored and has correct language without having the correct extension - list (APPEND _excludedSourceFiles "${_sourceFile}") - endif() - endif() - endif() - endif() - endif() - endif() - endforeach() - # separate filtered source files from already cotired ones - # the COTIRE_TARGET property of a source file may be set while a target is being processed by cotire - set (_sourceFiles "") - set (_cotiredSourceFiles "") - foreach (_sourceFile ${_filteredSourceFiles}) - get_source_file_property(_sourceIsCotired "${_sourceFile}" COTIRE_TARGET) - if (_sourceIsCotired) - list (APPEND _cotiredSourceFiles "${_sourceFile}") - else() - get_source_file_property(_sourceCompileFlags "${_sourceFile}" COMPILE_FLAGS) - if (_sourceCompileFlags) - # add to excluded sources, if file has custom compile flags - list (APPEND _excludedSourceFiles "${_sourceFile}") - else() - list (APPEND _sourceFiles "${_sourceFile}") - endif() - endif() - endforeach() - if (COTIRE_DEBUG) - if (_sourceFiles) - message (STATUS "Filtered ${_target} ${_language} sources: ${_sourceFiles}") - endif() - if (_excludedSourceFiles) - message (STATUS "Excluded ${_target} ${_language} sources: ${_excludedSourceFiles}") - endif() - if (_cotiredSourceFiles) - message (STATUS "Cotired ${_target} ${_language} sources: ${_cotiredSourceFiles}") - endif() - endif() - set (${_sourceFilesVar} ${_sourceFiles} PARENT_SCOPE) - set (${_excludedSourceFilesVar} ${_excludedSourceFiles} PARENT_SCOPE) - set (${_cotiredSourceFilesVar} ${_cotiredSourceFiles} PARENT_SCOPE) -endfunction() - -function (cotire_get_objects_with_property_on _filteredObjectsVar _property _type) - set (_filteredObjects "") - foreach (_object ${ARGN}) - get_property(_isSet ${_type} "${_object}" PROPERTY ${_property} SET) - if (_isSet) - get_property(_propertyValue ${_type} "${_object}" PROPERTY ${_property}) - if (_propertyValue) - list (APPEND _filteredObjects "${_object}") - endif() - endif() - endforeach() - set (${_filteredObjectsVar} ${_filteredObjects} PARENT_SCOPE) -endfunction() - -function (cotire_get_objects_with_property_off _filteredObjectsVar _property _type) - set (_filteredObjects "") - foreach (_object ${ARGN}) - get_property(_isSet ${_type} "${_object}" PROPERTY ${_property} SET) - if (_isSet) - get_property(_propertyValue ${_type} "${_object}" PROPERTY ${_property}) - if (NOT _propertyValue) - list (APPEND _filteredObjects "${_object}") - endif() - endif() - endforeach() - set (${_filteredObjectsVar} ${_filteredObjects} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_file_property_values _valuesVar _property) - set (_values "") - foreach (_sourceFile ${ARGN}) - get_source_file_property(_propertyValue "${_sourceFile}" ${_property}) - if (_propertyValue) - list (APPEND _values "${_propertyValue}") - endif() - endforeach() - set (${_valuesVar} ${_values} PARENT_SCOPE) -endfunction() - -function (cotire_resolve_config_properties _configurations _propertiesVar) - set (_properties "") - foreach (_property ${ARGN}) - if ("${_property}" MATCHES "") - foreach (_config ${_configurations}) - string (TOUPPER "${_config}" _upperConfig) - string (REPLACE "" "${_upperConfig}" _configProperty "${_property}") - list (APPEND _properties ${_configProperty}) - endforeach() - else() - list (APPEND _properties ${_property}) - endif() - endforeach() - set (${_propertiesVar} ${_properties} PARENT_SCOPE) -endfunction() - -function (cotire_copy_set_properties _configurations _type _source _target) - cotire_resolve_config_properties("${_configurations}" _properties ${ARGN}) - foreach (_property ${_properties}) - get_property(_isSet ${_type} ${_source} PROPERTY ${_property} SET) - if (_isSet) - get_property(_propertyValue ${_type} ${_source} PROPERTY ${_property}) - set_property(${_type} ${_target} PROPERTY ${_property} "${_propertyValue}") - endif() - endforeach() -endfunction() - -function (cotire_get_target_usage_requirements _target _config _targetRequirementsVar) - set (_targetRequirements "") - get_target_property(_librariesToProcess ${_target} LINK_LIBRARIES) - while (_librariesToProcess) - # remove from head - list (GET _librariesToProcess 0 _library) - list (REMOVE_AT _librariesToProcess 0) - if (_library MATCHES "^\\$<\\$:([A-Za-z0-9_:-]+)>$") - set (_library "${CMAKE_MATCH_1}") - elseif (_config STREQUAL "None" AND _library MATCHES "^\\$<\\$:([A-Za-z0-9_:-]+)>$") - set (_library "${CMAKE_MATCH_1}") - endif() - if (TARGET ${_library}) - list (FIND _targetRequirements ${_library} _index) - if (_index LESS 0) - list (APPEND _targetRequirements ${_library}) - # BFS traversal of transitive libraries - get_target_property(_libraries ${_library} INTERFACE_LINK_LIBRARIES) - if (_libraries) - list (APPEND _librariesToProcess ${_libraries}) - list (REMOVE_DUPLICATES _librariesToProcess) - endif() - endif() - endif() - endwhile() - set (${_targetRequirementsVar} ${_targetRequirements} PARENT_SCOPE) -endfunction() - -function (cotire_filter_compile_flags _language _flagFilter _matchedOptionsVar _unmatchedOptionsVar) - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - set (_flagPrefix "[/-]") - else() - set (_flagPrefix "--?") - endif() - set (_optionFlag "") - set (_matchedOptions "") - set (_unmatchedOptions "") - foreach (_compileFlag ${ARGN}) - if (_compileFlag) - if (_optionFlag AND NOT "${_compileFlag}" MATCHES "^${_flagPrefix}") - # option with separate argument - list (APPEND _matchedOptions "${_compileFlag}") - set (_optionFlag "") - elseif ("${_compileFlag}" MATCHES "^(${_flagPrefix})(${_flagFilter})$") - # remember option - set (_optionFlag "${CMAKE_MATCH_2}") - elseif ("${_compileFlag}" MATCHES "^(${_flagPrefix})(${_flagFilter})(.+)$") - # option with joined argument - list (APPEND _matchedOptions "${CMAKE_MATCH_3}") - set (_optionFlag "") - else() - # flush remembered option - if (_optionFlag) - list (APPEND _matchedOptions "${_optionFlag}") - set (_optionFlag "") - endif() - # add to unfiltered options - list (APPEND _unmatchedOptions "${_compileFlag}") - endif() - endif() - endforeach() - if (_optionFlag) - list (APPEND _matchedOptions "${_optionFlag}") - endif() - if (COTIRE_DEBUG AND _matchedOptions) - message (STATUS "Filter ${_flagFilter} matched: ${_matchedOptions}") - endif() - if (COTIRE_DEBUG AND _unmatchedOptions) - message (STATUS "Filter ${_flagFilter} unmatched: ${_unmatchedOptions}") - endif() - set (${_matchedOptionsVar} ${_matchedOptions} PARENT_SCOPE) - set (${_unmatchedOptionsVar} ${_unmatchedOptions} PARENT_SCOPE) -endfunction() - -function (cotire_is_target_supported _target _isSupportedVar) - if (NOT TARGET "${_target}") - set (${_isSupportedVar} FALSE PARENT_SCOPE) - return() - endif() - get_target_property(_imported ${_target} IMPORTED) - if (_imported) - set (${_isSupportedVar} FALSE PARENT_SCOPE) - return() - endif() - get_target_property(_targetType ${_target} TYPE) - if (NOT _targetType MATCHES "EXECUTABLE|(STATIC|SHARED|MODULE|OBJECT)_LIBRARY") - set (${_isSupportedVar} FALSE PARENT_SCOPE) - return() - endif() - set (${_isSupportedVar} TRUE PARENT_SCOPE) -endfunction() - -function (cotire_get_target_compile_flags _config _language _target _flagsVar) - string (TOUPPER "${_config}" _upperConfig) - # collect options from CMake language variables - set (_compileFlags "") - if (CMAKE_${_language}_FLAGS) - set (_compileFlags "${_compileFlags} ${CMAKE_${_language}_FLAGS}") - endif() - if (CMAKE_${_language}_FLAGS_${_upperConfig}) - set (_compileFlags "${_compileFlags} ${CMAKE_${_language}_FLAGS_${_upperConfig}}") - endif() - if (_target) - # add target compile flags - get_target_property(_targetflags ${_target} COMPILE_FLAGS) - if (_targetflags) - set (_compileFlags "${_compileFlags} ${_targetflags}") - endif() - endif() - if (UNIX) - separate_arguments(_compileFlags UNIX_COMMAND "${_compileFlags}") - elseif(WIN32) - separate_arguments(_compileFlags WINDOWS_COMMAND "${_compileFlags}") - else() - separate_arguments(_compileFlags) - endif() - # target compile options - if (_target) - get_target_property(_targetOptions ${_target} COMPILE_OPTIONS) - if (_targetOptions) - list (APPEND _compileFlags ${_targetOptions}) - endif() - endif() - # interface compile options from linked library targets - if (_target) - set (_linkedTargets "") - cotire_get_target_usage_requirements(${_target} ${_config} _linkedTargets) - foreach (_linkedTarget ${_linkedTargets}) - get_target_property(_targetOptions ${_linkedTarget} INTERFACE_COMPILE_OPTIONS) - if (_targetOptions) - list (APPEND _compileFlags ${_targetOptions}) - endif() - endforeach() - endif() - # handle language standard properties - if (CMAKE_${_language}_STANDARD_DEFAULT) - # used compiler supports language standard levels - if (_target) - get_target_property(_targetLanguageStandard ${_target} ${_language}_STANDARD) - if (_targetLanguageStandard) - set (_type "EXTENSION") - get_property(_isSet TARGET ${_target} PROPERTY ${_language}_EXTENSIONS SET) - if (_isSet) - get_target_property(_targetUseLanguageExtensions ${_target} ${_language}_EXTENSIONS) - if (NOT _targetUseLanguageExtensions) - set (_type "STANDARD") - endif() - endif() - if (CMAKE_${_language}${_targetLanguageStandard}_${_type}_COMPILE_OPTION) - list (APPEND _compileFlags "${CMAKE_${_language}${_targetLanguageStandard}_${_type}_COMPILE_OPTION}") - endif() - endif() - endif() - endif() - # handle the POSITION_INDEPENDENT_CODE target property - if (_target) - get_target_property(_targetPIC ${_target} POSITION_INDEPENDENT_CODE) - if (_targetPIC) - get_target_property(_targetType ${_target} TYPE) - if (_targetType STREQUAL "EXECUTABLE" AND CMAKE_${_language}_COMPILE_OPTIONS_PIE) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_PIE}") - elseif (CMAKE_${_language}_COMPILE_OPTIONS_PIC) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_PIC}") - endif() - endif() - endif() - # handle visibility target properties - if (_target) - get_target_property(_targetVisibility ${_target} ${_language}_VISIBILITY_PRESET) - if (_targetVisibility AND CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY}${_targetVisibility}") - endif() - get_target_property(_targetVisibilityInlines ${_target} VISIBILITY_INLINES_HIDDEN) - if (_targetVisibilityInlines AND CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN) - list (APPEND _compileFlags "${CMAKE_${_language}_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN}") - endif() - endif() - # platform specific flags - if (APPLE) - get_target_property(_architectures ${_target} OSX_ARCHITECTURES_${_upperConfig}) - if (NOT _architectures) - get_target_property(_architectures ${_target} OSX_ARCHITECTURES) - endif() - if (_architectures) - foreach (_arch ${_architectures}) - list (APPEND _compileFlags "-arch" "${_arch}") - endforeach() - endif() - if (CMAKE_OSX_SYSROOT) - if (CMAKE_${_language}_SYSROOT_FLAG) - list (APPEND _compileFlags "${CMAKE_${_language}_SYSROOT_FLAG}" "${CMAKE_OSX_SYSROOT}") - else() - list (APPEND _compileFlags "-isysroot" "${CMAKE_OSX_SYSROOT}") - endif() - endif() - if (CMAKE_OSX_DEPLOYMENT_TARGET) - if (CMAKE_${_language}_OSX_DEPLOYMENT_TARGET_FLAG) - list (APPEND _compileFlags "${CMAKE_${_language}_OSX_DEPLOYMENT_TARGET_FLAG}${CMAKE_OSX_DEPLOYMENT_TARGET}") - else() - list (APPEND _compileFlags "-mmacosx-version-min=${CMAKE_OSX_DEPLOYMENT_TARGET}") - endif() - endif() - endif() - if (COTIRE_DEBUG AND _compileFlags) - message (STATUS "Target ${_target} compile flags: ${_compileFlags}") - endif() - set (${_flagsVar} ${_compileFlags} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_include_directories _config _language _target _includeDirsVar _systemIncludeDirsVar) - set (_includeDirs "") - set (_systemIncludeDirs "") - # default include dirs - if (CMAKE_INCLUDE_CURRENT_DIR) - list (APPEND _includeDirs "${CMAKE_CURRENT_BINARY_DIR}") - list (APPEND _includeDirs "${CMAKE_CURRENT_SOURCE_DIR}") - endif() - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - # parse additional include directories from target compile flags - if (CMAKE_INCLUDE_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_dirs "") - cotire_filter_compile_flags("${_language}" "${_includeFlag}" _dirs _ignore ${_targetFlags}) - if (_dirs) - list (APPEND _includeDirs ${_dirs}) - endif() - endif() - endif() - # parse additional system include directories from target compile flags - if (CMAKE_INCLUDE_SYSTEM_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_dirs "") - cotire_filter_compile_flags("${_language}" "${_includeFlag}" _dirs _ignore ${_targetFlags}) - if (_dirs) - list (APPEND _systemIncludeDirs ${_dirs}) - endif() - endif() - endif() - # target include directories - get_directory_property(_dirs DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" INCLUDE_DIRECTORIES) - if (_target) - get_target_property(_targetDirs ${_target} INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - get_target_property(_targetDirs ${_target} INTERFACE_SYSTEM_INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _systemIncludeDirs ${_targetDirs}) - endif() - endif() - # interface include directories from linked library targets - if (_target) - set (_linkedTargets "") - cotire_get_target_usage_requirements(${_target} ${_config} _linkedTargets) - foreach (_linkedTarget ${_linkedTargets}) - get_target_property(_linkedTargetType ${_linkedTarget} TYPE) - if (CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE AND NOT CMAKE_VERSION VERSION_LESS "3.4.0" AND - _linkedTargetType MATCHES "(STATIC|SHARED|MODULE|OBJECT)_LIBRARY") - # CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE refers to CMAKE_CURRENT_BINARY_DIR and CMAKE_CURRENT_SOURCE_DIR - # at the time, when the target was created. These correspond to the target properties BINARY_DIR and SOURCE_DIR - # which are only available with CMake 3.4 or later. - get_target_property(_targetDirs ${_linkedTarget} BINARY_DIR) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - get_target_property(_targetDirs ${_linkedTarget} SOURCE_DIR) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - endif() - get_target_property(_targetDirs ${_linkedTarget} INTERFACE_INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _dirs ${_targetDirs}) - endif() - get_target_property(_targetDirs ${_linkedTarget} INTERFACE_SYSTEM_INCLUDE_DIRECTORIES) - if (_targetDirs) - list (APPEND _systemIncludeDirs ${_targetDirs}) - endif() - endforeach() - endif() - if (dirs) - list (REMOVE_DUPLICATES _dirs) - endif() - list (LENGTH _includeDirs _projectInsertIndex) - foreach (_dir ${_dirs}) - if (CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE) - cotire_check_is_path_relative_to("${_dir}" _isRelative "${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}") - if (_isRelative) - list (LENGTH _includeDirs _len) - if (_len EQUAL _projectInsertIndex) - list (APPEND _includeDirs "${_dir}") - else() - list (INSERT _includeDirs _projectInsertIndex "${_dir}") - endif() - math (EXPR _projectInsertIndex "${_projectInsertIndex} + 1") - else() - list (APPEND _includeDirs "${_dir}") - endif() - else() - list (APPEND _includeDirs "${_dir}") - endif() - endforeach() - list (REMOVE_DUPLICATES _includeDirs) - list (REMOVE_DUPLICATES _systemIncludeDirs) - if (CMAKE_${_language}_IMPLICIT_INCLUDE_DIRECTORIES) - list (REMOVE_ITEM _includeDirs ${CMAKE_${_language}_IMPLICIT_INCLUDE_DIRECTORIES}) - endif() - if (WIN32 AND NOT MINGW) - # convert Windows paths in include directories to CMake paths - if (_includeDirs) - set (_paths "") - foreach (_dir ${_includeDirs}) - file (TO_CMAKE_PATH "${_dir}" _path) - list (APPEND _paths "${_path}") - endforeach() - set (_includeDirs ${_paths}) - endif() - if (_systemIncludeDirs) - set (_paths "") - foreach (_dir ${_systemIncludeDirs}) - file (TO_CMAKE_PATH "${_dir}" _path) - list (APPEND _paths "${_path}") - endforeach() - set (_systemIncludeDirs ${_paths}) - endif() - endif() - if (COTIRE_DEBUG AND _includeDirs) - message (STATUS "Target ${_target} include dirs: ${_includeDirs}") - endif() - set (${_includeDirsVar} ${_includeDirs} PARENT_SCOPE) - if (COTIRE_DEBUG AND _systemIncludeDirs) - message (STATUS "Target ${_target} system include dirs: ${_systemIncludeDirs}") - endif() - set (${_systemIncludeDirsVar} ${_systemIncludeDirs} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_export_symbol _target _exportSymbolVar) - set (_exportSymbol "") - get_target_property(_targetType ${_target} TYPE) - get_target_property(_enableExports ${_target} ENABLE_EXPORTS) - if (_targetType MATCHES "(SHARED|MODULE)_LIBRARY" OR - (_targetType STREQUAL "EXECUTABLE" AND _enableExports)) - get_target_property(_exportSymbol ${_target} DEFINE_SYMBOL) - if (NOT _exportSymbol) - set (_exportSymbol "${_target}_EXPORTS") - endif() - string (MAKE_C_IDENTIFIER "${_exportSymbol}" _exportSymbol) - endif() - set (${_exportSymbolVar} ${_exportSymbol} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_compile_definitions _config _language _target _definitionsVar) - string (TOUPPER "${_config}" _upperConfig) - set (_configDefinitions "") - # CMAKE_INTDIR for multi-configuration build systems - if (NOT "${CMAKE_CFG_INTDIR}" STREQUAL ".") - list (APPEND _configDefinitions "CMAKE_INTDIR=\"${_config}\"") - endif() - # target export define symbol - cotire_get_target_export_symbol("${_target}" _defineSymbol) - if (_defineSymbol) - list (APPEND _configDefinitions "${_defineSymbol}") - endif() - # directory compile definitions - get_directory_property(_definitions DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - get_directory_property(_definitions DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" COMPILE_DEFINITIONS_${_upperConfig}) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - # target compile definitions - get_target_property(_definitions ${_target} COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - get_target_property(_definitions ${_target} COMPILE_DEFINITIONS_${_upperConfig}) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - # interface compile definitions from linked library targets - set (_linkedTargets "") - cotire_get_target_usage_requirements(${_target} ${_config} _linkedTargets) - foreach (_linkedTarget ${_linkedTargets}) - get_target_property(_definitions ${_linkedTarget} INTERFACE_COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - endforeach() - # parse additional compile definitions from target compile flags - # and don't look at directory compile definitions, which we already handled - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - cotire_filter_compile_flags("${_language}" "D" _definitions _ignore ${_targetFlags}) - if (_definitions) - list (APPEND _configDefinitions ${_definitions}) - endif() - list (REMOVE_DUPLICATES _configDefinitions) - if (COTIRE_DEBUG AND _configDefinitions) - message (STATUS "Target ${_target} compile definitions: ${_configDefinitions}") - endif() - set (${_definitionsVar} ${_configDefinitions} PARENT_SCOPE) -endfunction() - -function (cotire_get_target_compiler_flags _config _language _target _compilerFlagsVar) - # parse target compile flags omitting compile definitions and include directives - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - set (_flagFilter "D") - if (CMAKE_INCLUDE_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_flagFilter "${_flagFilter}|${_includeFlag}") - endif() - endif() - if (CMAKE_INCLUDE_SYSTEM_FLAG_${_language}) - string (STRIP "${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}" _includeFlag) - string (REGEX REPLACE "^[-/]+" "" _includeFlag "${_includeFlag}") - if (_includeFlag) - set (_flagFilter "${_flagFilter}|${_includeFlag}") - endif() - endif() - set (_compilerFlags "") - cotire_filter_compile_flags("${_language}" "${_flagFilter}" _ignore _compilerFlags ${_targetFlags}) - if (COTIRE_DEBUG AND _compilerFlags) - message (STATUS "Target ${_target} compiler flags: ${_compilerFlags}") - endif() - set (${_compilerFlagsVar} ${_compilerFlags} PARENT_SCOPE) -endfunction() - -function (cotire_add_sys_root_paths _pathsVar) - if (APPLE) - if (CMAKE_OSX_SYSROOT AND CMAKE_${_language}_HAS_ISYSROOT) - foreach (_path IN LISTS ${_pathsVar}) - if (IS_ABSOLUTE "${_path}") - get_filename_component(_path "${CMAKE_OSX_SYSROOT}/${_path}" ABSOLUTE) - if (EXISTS "${_path}") - list (APPEND ${_pathsVar} "${_path}") - endif() - endif() - endforeach() - endif() - endif() - set (${_pathsVar} ${${_pathsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_extra_properties _sourceFile _pattern _resultVar) - set (_extraProperties ${ARGN}) - set (_result "") - if (_extraProperties) - list (FIND _extraProperties "${_sourceFile}" _index) - if (_index GREATER -1) - math (EXPR _index "${_index} + 1") - list (LENGTH _extraProperties _len) - math (EXPR _len "${_len} - 1") - foreach (_index RANGE ${_index} ${_len}) - list (GET _extraProperties ${_index} _value) - if (_value MATCHES "${_pattern}") - list (APPEND _result "${_value}") - else() - break() - endif() - endforeach() - endif() - endif() - set (${_resultVar} ${_result} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_compile_definitions _config _language _sourceFile _definitionsVar) - set (_compileDefinitions "") - if (NOT CMAKE_SCRIPT_MODE_FILE) - string (TOUPPER "${_config}" _upperConfig) - get_source_file_property(_definitions "${_sourceFile}" COMPILE_DEFINITIONS) - if (_definitions) - list (APPEND _compileDefinitions ${_definitions}) - endif() - get_source_file_property(_definitions "${_sourceFile}" COMPILE_DEFINITIONS_${_upperConfig}) - if (_definitions) - list (APPEND _compileDefinitions ${_definitions}) - endif() - endif() - cotire_get_source_extra_properties("${_sourceFile}" "^[a-zA-Z0-9_]+(=.*)?$" _definitions ${ARGN}) - if (_definitions) - list (APPEND _compileDefinitions ${_definitions}) - endif() - if (COTIRE_DEBUG AND _compileDefinitions) - message (STATUS "Source ${_sourceFile} compile definitions: ${_compileDefinitions}") - endif() - set (${_definitionsVar} ${_compileDefinitions} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_files_compile_definitions _config _language _definitionsVar) - set (_configDefinitions "") - foreach (_sourceFile ${ARGN}) - cotire_get_source_compile_definitions("${_config}" "${_language}" "${_sourceFile}" _sourceDefinitions) - if (_sourceDefinitions) - list (APPEND _configDefinitions "${_sourceFile}" ${_sourceDefinitions} "-") - endif() - endforeach() - set (${_definitionsVar} ${_configDefinitions} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_undefs _sourceFile _property _sourceUndefsVar) - set (_sourceUndefs "") - if (NOT CMAKE_SCRIPT_MODE_FILE) - get_source_file_property(_undefs "${_sourceFile}" ${_property}) - if (_undefs) - list (APPEND _sourceUndefs ${_undefs}) - endif() - endif() - cotire_get_source_extra_properties("${_sourceFile}" "^[a-zA-Z0-9_]+$" _undefs ${ARGN}) - if (_undefs) - list (APPEND _sourceUndefs ${_undefs}) - endif() - if (COTIRE_DEBUG AND _sourceUndefs) - message (STATUS "Source ${_sourceFile} ${_property} undefs: ${_sourceUndefs}") - endif() - set (${_sourceUndefsVar} ${_sourceUndefs} PARENT_SCOPE) -endfunction() - -function (cotire_get_source_files_undefs _property _sourceUndefsVar) - set (_sourceUndefs "") - foreach (_sourceFile ${ARGN}) - cotire_get_source_undefs("${_sourceFile}" ${_property} _undefs) - if (_undefs) - list (APPEND _sourceUndefs "${_sourceFile}" ${_undefs} "-") - endif() - endforeach() - set (${_sourceUndefsVar} ${_sourceUndefs} PARENT_SCOPE) -endfunction() - -macro (cotire_set_cmd_to_prologue _cmdVar) - set (${_cmdVar} "${CMAKE_COMMAND}") - if (COTIRE_DEBUG) - list (APPEND ${_cmdVar} "--warn-uninitialized") - endif() - list (APPEND ${_cmdVar} "-DCOTIRE_BUILD_TYPE:STRING=$") - if (XCODE) - list (APPEND ${_cmdVar} "-DXCODE:BOOL=TRUE") - endif() - if (COTIRE_VERBOSE) - list (APPEND ${_cmdVar} "-DCOTIRE_VERBOSE:BOOL=ON") - elseif("${CMAKE_GENERATOR}" MATCHES "Makefiles") - list (APPEND ${_cmdVar} "-DCOTIRE_VERBOSE:BOOL=$(VERBOSE)") - endif() -endmacro() - -function (cotire_init_compile_cmd _cmdVar _language _compilerLauncher _compilerExe _compilerArg1) - if (NOT _compilerLauncher) - set (_compilerLauncher ${CMAKE_${_language}_COMPILER_LAUNCHER}) - endif() - if (NOT _compilerExe) - set (_compilerExe "${CMAKE_${_language}_COMPILER}") - endif() - if (NOT _compilerArg1) - set (_compilerArg1 ${CMAKE_${_language}_COMPILER_ARG1}) - endif() - string (STRIP "${_compilerArg1}" _compilerArg1) - if ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # compiler launcher is only supported for Makefile and Ninja - set (${_cmdVar} ${_compilerLauncher} "${_compilerExe}" ${_compilerArg1} PARENT_SCOPE) - else() - set (${_cmdVar} "${_compilerExe}" ${_compilerArg1} PARENT_SCOPE) - endif() -endfunction() - -macro (cotire_add_definitions_to_cmd _cmdVar _language) - foreach (_definition ${ARGN}) - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - list (APPEND ${_cmdVar} "/D${_definition}") - else() - list (APPEND ${_cmdVar} "-D${_definition}") - endif() - endforeach() -endmacro() - -function (cotire_add_includes_to_cmd _cmdVar _language _includesVar _systemIncludesVar) - set (_includeDirs ${${_includesVar}} ${${_systemIncludesVar}}) - if (_includeDirs) - list (REMOVE_DUPLICATES _includeDirs) - foreach (_include ${_includeDirs}) - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - file (TO_NATIVE_PATH "${_include}" _include) - list (APPEND ${_cmdVar} "${CMAKE_INCLUDE_FLAG_${_language}}${CMAKE_INCLUDE_FLAG_SEP_${_language}}${_include}") - else() - set (_index -1) - if ("${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}" MATCHES ".+") - list (FIND ${_systemIncludesVar} "${_include}" _index) - endif() - if (_index GREATER -1) - list (APPEND ${_cmdVar} "${CMAKE_INCLUDE_SYSTEM_FLAG_${_language}}${CMAKE_INCLUDE_FLAG_SEP_${_language}}${_include}") - else() - list (APPEND ${_cmdVar} "${CMAKE_INCLUDE_FLAG_${_language}}${CMAKE_INCLUDE_FLAG_SEP_${_language}}${_include}") - endif() - endif() - endforeach() - endif() - set (${_cmdVar} ${${_cmdVar}} PARENT_SCOPE) -endfunction() - -function (cotire_add_frameworks_to_cmd _cmdVar _language _includesVar _systemIncludesVar) - if (APPLE) - set (_frameworkDirs "") - foreach (_include ${${_includesVar}}) - if (IS_ABSOLUTE "${_include}" AND _include MATCHES "\\.framework$") - get_filename_component(_frameworkDir "${_include}" DIRECTORY) - list (APPEND _frameworkDirs "${_frameworkDir}") - endif() - endforeach() - set (_systemFrameworkDirs "") - foreach (_include ${${_systemIncludesVar}}) - if (IS_ABSOLUTE "${_include}" AND _include MATCHES "\\.framework$") - get_filename_component(_frameworkDir "${_include}" DIRECTORY) - list (APPEND _systemFrameworkDirs "${_frameworkDir}") - endif() - endforeach() - if (_systemFrameworkDirs) - list (APPEND _frameworkDirs ${_systemFrameworkDirs}) - endif() - if (_frameworkDirs) - list (REMOVE_DUPLICATES _frameworkDirs) - foreach (_frameworkDir ${_frameworkDirs}) - set (_index -1) - if ("${CMAKE_${_language}_SYSTEM_FRAMEWORK_SEARCH_FLAG}" MATCHES ".+") - list (FIND _systemFrameworkDirs "${_frameworkDir}" _index) - endif() - if (_index GREATER -1) - list (APPEND ${_cmdVar} "${CMAKE_${_language}_SYSTEM_FRAMEWORK_SEARCH_FLAG}${_frameworkDir}") - else() - list (APPEND ${_cmdVar} "${CMAKE_${_language}_FRAMEWORK_SEARCH_FLAG}${_frameworkDir}") - endif() - endforeach() - endif() - endif() - set (${_cmdVar} ${${_cmdVar}} PARENT_SCOPE) -endfunction() - -macro (cotire_add_compile_flags_to_cmd _cmdVar) - foreach (_flag ${ARGN}) - list (APPEND ${_cmdVar} "${_flag}") - endforeach() -endmacro() - -function (cotire_check_file_up_to_date _fileIsUpToDateVar _file) - if (EXISTS "${_file}") - set (_triggerFile "") - foreach (_dependencyFile ${ARGN}) - if (EXISTS "${_dependencyFile}") - # IS_NEWER_THAN returns TRUE if both files have the same timestamp - # thus we do the comparison in both directions to exclude ties - if ("${_dependencyFile}" IS_NEWER_THAN "${_file}" AND - NOT "${_file}" IS_NEWER_THAN "${_dependencyFile}") - set (_triggerFile "${_dependencyFile}") - break() - endif() - endif() - endforeach() - if (_triggerFile) - if (COTIRE_VERBOSE) - get_filename_component(_fileName "${_file}" NAME) - message (STATUS "${_fileName} update triggered by ${_triggerFile} change.") - endif() - set (${_fileIsUpToDateVar} FALSE PARENT_SCOPE) - else() - if (COTIRE_VERBOSE) - get_filename_component(_fileName "${_file}" NAME) - message (STATUS "${_fileName} is up-to-date.") - endif() - set (${_fileIsUpToDateVar} TRUE PARENT_SCOPE) - endif() - else() - if (COTIRE_VERBOSE) - get_filename_component(_fileName "${_file}" NAME) - message (STATUS "${_fileName} does not exist yet.") - endif() - set (${_fileIsUpToDateVar} FALSE PARENT_SCOPE) - endif() -endfunction() - -macro (cotire_find_closest_relative_path _headerFile _includeDirs _relPathVar) - set (${_relPathVar} "") - foreach (_includeDir ${_includeDirs}) - if (IS_DIRECTORY "${_includeDir}") - file (RELATIVE_PATH _relPath "${_includeDir}" "${_headerFile}") - if (NOT IS_ABSOLUTE "${_relPath}" AND NOT "${_relPath}" MATCHES "^\\.\\.") - string (LENGTH "${${_relPathVar}}" _closestLen) - string (LENGTH "${_relPath}" _relLen) - if (_closestLen EQUAL 0 OR _relLen LESS _closestLen) - set (${_relPathVar} "${_relPath}") - endif() - endif() - elseif ("${_includeDir}" STREQUAL "${_headerFile}") - # if path matches exactly, return short non-empty string - set (${_relPathVar} "1") - break() - endif() - endforeach() -endmacro() - -macro (cotire_check_header_file_location _headerFile _insideIncludeDirs _outsideIncludeDirs _headerIsInside) - # check header path against ignored and honored include directories - cotire_find_closest_relative_path("${_headerFile}" "${_insideIncludeDirs}" _insideRelPath) - if (_insideRelPath) - # header is inside, but could be become outside if there is a shorter outside match - cotire_find_closest_relative_path("${_headerFile}" "${_outsideIncludeDirs}" _outsideRelPath) - if (_outsideRelPath) - string (LENGTH "${_insideRelPath}" _insideRelPathLen) - string (LENGTH "${_outsideRelPath}" _outsideRelPathLen) - if (_outsideRelPathLen LESS _insideRelPathLen) - set (${_headerIsInside} FALSE) - else() - set (${_headerIsInside} TRUE) - endif() - else() - set (${_headerIsInside} TRUE) - endif() - else() - # header is outside - set (${_headerIsInside} FALSE) - endif() -endmacro() - -macro (cotire_check_ignore_header_file_path _headerFile _headerIsIgnoredVar) - if (NOT EXISTS "${_headerFile}") - set (${_headerIsIgnoredVar} TRUE) - elseif (IS_DIRECTORY "${_headerFile}") - set (${_headerIsIgnoredVar} TRUE) - elseif ("${_headerFile}" MATCHES "\\.\\.|[_-]fixed" AND "${_headerFile}" MATCHES "\\.h$") - # heuristic: ignore C headers with embedded parent directory references or "-fixed" or "_fixed" in path - # these often stem from using GCC #include_next tricks, which may break the precompiled header compilation - # with the error message "error: no include path in which to search for header.h" - set (${_headerIsIgnoredVar} TRUE) - else() - set (${_headerIsIgnoredVar} FALSE) - endif() -endmacro() - -macro (cotire_check_ignore_header_file_ext _headerFile _ignoreExtensionsVar _headerIsIgnoredVar) - # check header file extension - cotire_get_source_file_extension("${_headerFile}" _headerFileExt) - set (${_headerIsIgnoredVar} FALSE) - if (_headerFileExt) - list (FIND ${_ignoreExtensionsVar} "${_headerFileExt}" _index) - if (_index GREATER -1) - set (${_headerIsIgnoredVar} TRUE) - endif() - endif() -endmacro() - -macro (cotire_parse_line _line _headerFileVar _headerDepthVar) - if (MSVC) - # cl.exe /showIncludes output looks different depending on the language pack used, e.g.: - # English: "Note: including file: C:\directory\file" - # German: "Hinweis: Einlesen der Datei: C:\directory\file" - # We use a very general regular expression, relying on the presence of the : characters - if (_line MATCHES "( +)([a-zA-Z]:[^:]+)$") - # Visual Studio compiler output - string (LENGTH "${CMAKE_MATCH_1}" ${_headerDepthVar}) - get_filename_component(${_headerFileVar} "${CMAKE_MATCH_2}" ABSOLUTE) - else() - set (${_headerFileVar} "") - set (${_headerDepthVar} 0) - endif() - else() - if (_line MATCHES "^(\\.+) (.*)$") - # GCC like output - string (LENGTH "${CMAKE_MATCH_1}" ${_headerDepthVar}) - if (IS_ABSOLUTE "${CMAKE_MATCH_2}") - set (${_headerFileVar} "${CMAKE_MATCH_2}") - else() - get_filename_component(${_headerFileVar} "${CMAKE_MATCH_2}" REALPATH) - endif() - else() - set (${_headerFileVar} "") - set (${_headerDepthVar} 0) - endif() - endif() -endmacro() - -function (cotire_parse_includes _language _scanOutput _ignoredIncludeDirs _honoredIncludeDirs _ignoredExtensions _selectedIncludesVar _unparsedLinesVar) - if (WIN32) - # prevent CMake macro invocation errors due to backslash characters in Windows paths - string (REPLACE "\\" "/" _scanOutput "${_scanOutput}") - endif() - # canonize slashes - string (REPLACE "//" "/" _scanOutput "${_scanOutput}") - # prevent semicolon from being interpreted as a line separator - string (REPLACE ";" "\\;" _scanOutput "${_scanOutput}") - # then separate lines - string (REGEX REPLACE "\n" ";" _scanOutput "${_scanOutput}") - list (LENGTH _scanOutput _len) - # remove duplicate lines to speed up parsing - list (REMOVE_DUPLICATES _scanOutput) - list (LENGTH _scanOutput _uniqueLen) - if (COTIRE_VERBOSE OR COTIRE_DEBUG) - message (STATUS "Scanning ${_uniqueLen} unique lines of ${_len} for includes") - if (_ignoredExtensions) - message (STATUS "Ignored extensions: ${_ignoredExtensions}") - endif() - if (_ignoredIncludeDirs) - message (STATUS "Ignored paths: ${_ignoredIncludeDirs}") - endif() - if (_honoredIncludeDirs) - message (STATUS "Included paths: ${_honoredIncludeDirs}") - endif() - endif() - set (_sourceFiles ${ARGN}) - set (_selectedIncludes "") - set (_unparsedLines "") - # stack keeps track of inside/outside project status of processed header files - set (_headerIsInsideStack "") - foreach (_line IN LISTS _scanOutput) - if (_line) - cotire_parse_line("${_line}" _headerFile _headerDepth) - if (_headerFile) - cotire_check_header_file_location("${_headerFile}" "${_ignoredIncludeDirs}" "${_honoredIncludeDirs}" _headerIsInside) - if (COTIRE_DEBUG) - message (STATUS "${_headerDepth}: ${_headerFile} ${_headerIsInside}") - endif() - # update stack - list (LENGTH _headerIsInsideStack _stackLen) - if (_headerDepth GREATER _stackLen) - math (EXPR _stackLen "${_stackLen} + 1") - foreach (_index RANGE ${_stackLen} ${_headerDepth}) - list (APPEND _headerIsInsideStack ${_headerIsInside}) - endforeach() - else() - foreach (_index RANGE ${_headerDepth} ${_stackLen}) - list (REMOVE_AT _headerIsInsideStack -1) - endforeach() - list (APPEND _headerIsInsideStack ${_headerIsInside}) - endif() - if (COTIRE_DEBUG) - message (STATUS "${_headerIsInsideStack}") - endif() - # header is a candidate if it is outside project - if (NOT _headerIsInside) - # get parent header file's inside/outside status - if (_headerDepth GREATER 1) - math (EXPR _index "${_headerDepth} - 2") - list (GET _headerIsInsideStack ${_index} _parentHeaderIsInside) - else() - set (_parentHeaderIsInside TRUE) - endif() - # select header file if parent header file is inside project - # (e.g., a project header file that includes a standard header file) - if (_parentHeaderIsInside) - cotire_check_ignore_header_file_path("${_headerFile}" _headerIsIgnored) - if (NOT _headerIsIgnored) - cotire_check_ignore_header_file_ext("${_headerFile}" _ignoredExtensions _headerIsIgnored) - if (NOT _headerIsIgnored) - list (APPEND _selectedIncludes "${_headerFile}") - else() - # fix header's inside status on stack, it is ignored by extension now - list (REMOVE_AT _headerIsInsideStack -1) - list (APPEND _headerIsInsideStack TRUE) - endif() - endif() - if (COTIRE_DEBUG) - message (STATUS "${_headerFile} ${_ignoredExtensions} ${_headerIsIgnored}") - endif() - endif() - endif() - else() - if (MSVC) - # for cl.exe do not keep unparsed lines which solely consist of a source file name - string (FIND "${_sourceFiles}" "${_line}" _index) - if (_index LESS 0) - list (APPEND _unparsedLines "${_line}") - endif() - else() - list (APPEND _unparsedLines "${_line}") - endif() - endif() - endif() - endforeach() - list (REMOVE_DUPLICATES _selectedIncludes) - set (${_selectedIncludesVar} ${_selectedIncludes} PARENT_SCOPE) - set (${_unparsedLinesVar} ${_unparsedLines} PARENT_SCOPE) -endfunction() - -function (cotire_scan_includes _includesVar) - set(_options "") - set(_oneValueArgs COMPILER_ID COMPILER_EXECUTABLE COMPILER_ARG1 COMPILER_VERSION LANGUAGE UNPARSED_LINES SCAN_RESULT) - set(_multiValueArgs COMPILE_DEFINITIONS COMPILE_FLAGS INCLUDE_DIRECTORIES SYSTEM_INCLUDE_DIRECTORIES - IGNORE_PATH INCLUDE_PATH IGNORE_EXTENSIONS INCLUDE_PRIORITY_PATH COMPILER_LAUNCHER) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - set (_sourceFiles ${_option_UNPARSED_ARGUMENTS}) - if (NOT _option_LANGUAGE) - set (_option_LANGUAGE "CXX") - endif() - if (NOT _option_COMPILER_ID) - set (_option_COMPILER_ID "${CMAKE_${_option_LANGUAGE}_ID}") - endif() - if (NOT _option_COMPILER_VERSION) - set (_option_COMPILER_VERSION "${CMAKE_${_option_LANGUAGE}_COMPILER_VERSION}") - endif() - cotire_init_compile_cmd(_cmd "${_option_LANGUAGE}" "${_option_COMPILER_LAUNCHER}" "${_option_COMPILER_EXECUTABLE}" "${_option_COMPILER_ARG1}") - cotire_add_definitions_to_cmd(_cmd "${_option_LANGUAGE}" ${_option_COMPILE_DEFINITIONS}) - cotire_add_compile_flags_to_cmd(_cmd ${_option_COMPILE_FLAGS}) - cotire_add_includes_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_frameworks_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_makedep_flags("${_option_LANGUAGE}" "${_option_COMPILER_ID}" "${_option_COMPILER_VERSION}" _cmd) - # only consider existing source files for scanning - set (_existingSourceFiles "") - foreach (_sourceFile ${_sourceFiles}) - if (EXISTS "${_sourceFile}") - list (APPEND _existingSourceFiles "${_sourceFile}") - endif() - endforeach() - if (NOT _existingSourceFiles) - set (${_includesVar} "" PARENT_SCOPE) - return() - endif() - list (APPEND _cmd ${_existingSourceFiles}) - if (COTIRE_VERBOSE) - message (STATUS "execute_process: ${_cmd}") - endif() - if (_option_COMPILER_ID MATCHES "MSVC") - # cl.exe messes with the output streams unless the environment variable VS_UNICODE_OUTPUT is cleared - unset (ENV{VS_UNICODE_OUTPUT}) - endif() - execute_process( - COMMAND ${_cmd} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - RESULT_VARIABLE _result - OUTPUT_QUIET - ERROR_VARIABLE _output) - if (_result) - message (STATUS "Result ${_result} scanning includes of ${_existingSourceFiles}.") - endif() - cotire_parse_includes( - "${_option_LANGUAGE}" "${_output}" - "${_option_IGNORE_PATH}" "${_option_INCLUDE_PATH}" - "${_option_IGNORE_EXTENSIONS}" - _includes _unparsedLines - ${_sourceFiles}) - if (_option_INCLUDE_PRIORITY_PATH) - set (_sortedIncludes "") - foreach (_priorityPath ${_option_INCLUDE_PRIORITY_PATH}) - foreach (_include ${_includes}) - string (FIND ${_include} ${_priorityPath} _position) - if (_position GREATER -1) - list (APPEND _sortedIncludes ${_include}) - endif() - endforeach() - endforeach() - if (_sortedIncludes) - list (INSERT _includes 0 ${_sortedIncludes}) - list (REMOVE_DUPLICATES _includes) - endif() - endif() - set (${_includesVar} ${_includes} PARENT_SCOPE) - if (_option_UNPARSED_LINES) - set (${_option_UNPARSED_LINES} ${_unparsedLines} PARENT_SCOPE) - endif() - if (_option_SCAN_RESULT) - set (${_option_SCAN_RESULT} ${_result} PARENT_SCOPE) - endif() -endfunction() - -macro (cotire_append_undefs _contentsVar) - set (_undefs ${ARGN}) - if (_undefs) - list (REMOVE_DUPLICATES _undefs) - foreach (_definition ${_undefs}) - list (APPEND ${_contentsVar} "#undef ${_definition}") - endforeach() - endif() -endmacro() - -macro (cotire_comment_str _language _commentText _commentVar) - if ("${_language}" STREQUAL "CMAKE") - set (${_commentVar} "# ${_commentText}") - else() - set (${_commentVar} "/* ${_commentText} */") - endif() -endmacro() - -function (cotire_write_file _language _file _contents _force) - get_filename_component(_moduleName "${COTIRE_CMAKE_MODULE_FILE}" NAME) - cotire_comment_str("${_language}" "${_moduleName} ${COTIRE_CMAKE_MODULE_VERSION} generated file" _header1) - cotire_comment_str("${_language}" "${_file}" _header2) - set (_contents "${_header1}\n${_header2}\n${_contents}") - if (COTIRE_DEBUG) - message (STATUS "${_contents}") - endif() - if (_force OR NOT EXISTS "${_file}") - file (WRITE "${_file}" "${_contents}") - else() - file (READ "${_file}" _oldContents) - if (NOT "${_oldContents}" STREQUAL "${_contents}") - file (WRITE "${_file}" "${_contents}") - else() - if (COTIRE_DEBUG) - message (STATUS "${_file} unchanged") - endif() - endif() - endif() -endfunction() - -function (cotire_generate_unity_source _unityFile) - set(_options "") - set(_oneValueArgs LANGUAGE) - set(_multiValueArgs - DEPENDS SOURCES_COMPILE_DEFINITIONS - PRE_UNDEFS SOURCES_PRE_UNDEFS POST_UNDEFS SOURCES_POST_UNDEFS PROLOGUE EPILOGUE) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (_option_DEPENDS) - cotire_check_file_up_to_date(_unityFileIsUpToDate "${_unityFile}" ${_option_DEPENDS}) - if (_unityFileIsUpToDate) - return() - endif() - endif() - set (_sourceFiles ${_option_UNPARSED_ARGUMENTS}) - if (NOT _option_PRE_UNDEFS) - set (_option_PRE_UNDEFS "") - endif() - if (NOT _option_SOURCES_PRE_UNDEFS) - set (_option_SOURCES_PRE_UNDEFS "") - endif() - if (NOT _option_POST_UNDEFS) - set (_option_POST_UNDEFS "") - endif() - if (NOT _option_SOURCES_POST_UNDEFS) - set (_option_SOURCES_POST_UNDEFS "") - endif() - set (_contents "") - if (_option_PROLOGUE) - list (APPEND _contents ${_option_PROLOGUE}) - endif() - if (_option_LANGUAGE AND _sourceFiles) - if ("${_option_LANGUAGE}" STREQUAL "CXX") - list (APPEND _contents "#ifdef __cplusplus") - elseif ("${_option_LANGUAGE}" STREQUAL "C") - list (APPEND _contents "#ifndef __cplusplus") - endif() - endif() - set (_compileUndefinitions "") - foreach (_sourceFile ${_sourceFiles}) - cotire_get_source_compile_definitions( - "${_option_CONFIGURATION}" "${_option_LANGUAGE}" "${_sourceFile}" _compileDefinitions - ${_option_SOURCES_COMPILE_DEFINITIONS}) - cotire_get_source_undefs("${_sourceFile}" COTIRE_UNITY_SOURCE_PRE_UNDEFS _sourcePreUndefs ${_option_SOURCES_PRE_UNDEFS}) - cotire_get_source_undefs("${_sourceFile}" COTIRE_UNITY_SOURCE_POST_UNDEFS _sourcePostUndefs ${_option_SOURCES_POST_UNDEFS}) - if (_option_PRE_UNDEFS) - list (APPEND _compileUndefinitions ${_option_PRE_UNDEFS}) - endif() - if (_sourcePreUndefs) - list (APPEND _compileUndefinitions ${_sourcePreUndefs}) - endif() - if (_compileUndefinitions) - cotire_append_undefs(_contents ${_compileUndefinitions}) - set (_compileUndefinitions "") - endif() - if (_sourcePostUndefs) - list (APPEND _compileUndefinitions ${_sourcePostUndefs}) - endif() - if (_option_POST_UNDEFS) - list (APPEND _compileUndefinitions ${_option_POST_UNDEFS}) - endif() - foreach (_definition ${_compileDefinitions}) - if (_definition MATCHES "^([a-zA-Z0-9_]+)=(.+)$") - list (APPEND _contents "#define ${CMAKE_MATCH_1} ${CMAKE_MATCH_2}") - list (INSERT _compileUndefinitions 0 "${CMAKE_MATCH_1}") - else() - list (APPEND _contents "#define ${_definition}") - list (INSERT _compileUndefinitions 0 "${_definition}") - endif() - endforeach() - # use absolute path as source file location - get_filename_component(_sourceFileLocation "${_sourceFile}" ABSOLUTE) - if (WIN32) - file (TO_NATIVE_PATH "${_sourceFileLocation}" _sourceFileLocation) - endif() - list (APPEND _contents "#include \"${_sourceFileLocation}\"") - endforeach() - if (_compileUndefinitions) - cotire_append_undefs(_contents ${_compileUndefinitions}) - set (_compileUndefinitions "") - endif() - if (_option_LANGUAGE AND _sourceFiles) - list (APPEND _contents "#endif") - endif() - if (_option_EPILOGUE) - list (APPEND _contents ${_option_EPILOGUE}) - endif() - list (APPEND _contents "") - string (REPLACE ";" "\n" _contents "${_contents}") - if (COTIRE_VERBOSE) - message ("${_contents}") - endif() - cotire_write_file("${_option_LANGUAGE}" "${_unityFile}" "${_contents}" TRUE) -endfunction() - -function (cotire_generate_prefix_header _prefixFile) - set(_options "") - set(_oneValueArgs LANGUAGE COMPILER_EXECUTABLE COMPILER_ARG1 COMPILER_ID COMPILER_VERSION) - set(_multiValueArgs DEPENDS COMPILE_DEFINITIONS COMPILE_FLAGS - INCLUDE_DIRECTORIES SYSTEM_INCLUDE_DIRECTORIES IGNORE_PATH INCLUDE_PATH - IGNORE_EXTENSIONS INCLUDE_PRIORITY_PATH COMPILER_LAUNCHER) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (NOT _option_COMPILER_ID) - set (_option_COMPILER_ID "${CMAKE_${_option_LANGUAGE}_ID}") - endif() - if (NOT _option_COMPILER_VERSION) - set (_option_COMPILER_VERSION "${CMAKE_${_option_LANGUAGE}_COMPILER_VERSION}") - endif() - if (_option_DEPENDS) - cotire_check_file_up_to_date(_prefixFileIsUpToDate "${_prefixFile}" ${_option_DEPENDS}) - if (_prefixFileIsUpToDate) - # create empty log file - set (_unparsedLinesFile "${_prefixFile}.log") - file (WRITE "${_unparsedLinesFile}" "") - return() - endif() - endif() - set (_prologue "") - set (_epilogue "") - if (_option_COMPILER_ID MATCHES "Clang") - set (_prologue "#pragma clang system_header") - elseif (_option_COMPILER_ID MATCHES "GNU") - set (_prologue "#pragma GCC system_header") - elseif (_option_COMPILER_ID MATCHES "MSVC") - set (_prologue "#pragma warning(push, 0)") - set (_epilogue "#pragma warning(pop)") - elseif (_option_COMPILER_ID MATCHES "Intel") - # Intel compiler requires hdrstop pragma to stop generating PCH file - set (_epilogue "#pragma hdrstop") - endif() - set (_sourceFiles ${_option_UNPARSED_ARGUMENTS}) - cotire_scan_includes(_selectedHeaders ${_sourceFiles} - LANGUAGE "${_option_LANGUAGE}" - COMPILER_LAUNCHER "${_option_COMPILER_LAUNCHER}" - COMPILER_EXECUTABLE "${_option_COMPILER_EXECUTABLE}" - COMPILER_ARG1 "${_option_COMPILER_ARG1}" - COMPILER_ID "${_option_COMPILER_ID}" - COMPILER_VERSION "${_option_COMPILER_VERSION}" - COMPILE_DEFINITIONS ${_option_COMPILE_DEFINITIONS} - COMPILE_FLAGS ${_option_COMPILE_FLAGS} - INCLUDE_DIRECTORIES ${_option_INCLUDE_DIRECTORIES} - SYSTEM_INCLUDE_DIRECTORIES ${_option_SYSTEM_INCLUDE_DIRECTORIES} - IGNORE_PATH ${_option_IGNORE_PATH} - INCLUDE_PATH ${_option_INCLUDE_PATH} - IGNORE_EXTENSIONS ${_option_IGNORE_EXTENSIONS} - INCLUDE_PRIORITY_PATH ${_option_INCLUDE_PRIORITY_PATH} - UNPARSED_LINES _unparsedLines - SCAN_RESULT _scanResult) - cotire_generate_unity_source("${_prefixFile}" - PROLOGUE ${_prologue} EPILOGUE ${_epilogue} LANGUAGE "${_option_LANGUAGE}" ${_selectedHeaders}) - set (_unparsedLinesFile "${_prefixFile}.log") - if (_unparsedLines) - if (COTIRE_VERBOSE OR _scanResult OR NOT _selectedHeaders) - list (LENGTH _unparsedLines _skippedLineCount) - message (STATUS "${_skippedLineCount} line(s) skipped, see ${_unparsedLinesFile}") - endif() - string (REPLACE ";" "\n" _unparsedLines "${_unparsedLines}") - endif() - file (WRITE "${_unparsedLinesFile}" "${_unparsedLines}") -endfunction() - -function (cotire_add_makedep_flags _language _compilerID _compilerVersion _flagsVar) - set (_flags ${${_flagsVar}}) - if (_compilerID MATCHES "MSVC") - # cl.exe options used - # /nologo suppresses display of sign-on banner - # /TC treat all files named on the command line as C source files - # /TP treat all files named on the command line as C++ source files - # /EP preprocess to stdout without #line directives - # /showIncludes list include files - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" /EP /showIncludes) - else() - # return as a flag string - set (_flags "${_sourceFileType${_language}} /EP /showIncludes") - endif() - elseif (_compilerID MATCHES "GNU") - # GCC options used - # -H print the name of each header file used - # -E invoke preprocessor - # -fdirectives-only do not expand macros, requires GCC >= 4.3 - if (_flags) - # append to list - list (APPEND _flags -H -E) - if (NOT "${_compilerVersion}" VERSION_LESS "4.3.0") - list (APPEND _flags "-fdirectives-only") - endif() - else() - # return as a flag string - set (_flags "-H -E") - if (NOT "${_compilerVersion}" VERSION_LESS "4.3.0") - set (_flags "${_flags} -fdirectives-only") - endif() - endif() - elseif (_compilerID MATCHES "Clang") - # Clang options used - # -H print the name of each header file used - # -E invoke preprocessor - # -fno-color-diagnostics don't prints diagnostics in color - if (_flags) - # append to list - list (APPEND _flags -H -E -fno-color-diagnostics) - else() - # return as a flag string - set (_flags "-H -E -fno-color-diagnostics") - endif() - elseif (_compilerID MATCHES "Intel") - if (WIN32) - # Windows Intel options used - # /nologo do not display compiler version information - # /QH display the include file order - # /EP preprocess to stdout, omitting #line directives - # /TC process all source or unrecognized file types as C source files - # /TP process all source or unrecognized file types as C++ source files - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" /EP /QH) - else() - # return as a flag string - set (_flags "${_sourceFileType${_language}} /EP /QH") - endif() - else() - # Linux / Mac OS X Intel options used - # -H print the name of each header file used - # -EP preprocess to stdout, omitting #line directives - # -Kc++ process all source or unrecognized file types as C++ source files - if (_flags) - # append to list - if ("${_language}" STREQUAL "CXX") - list (APPEND _flags -Kc++) - endif() - list (APPEND _flags -H -EP) - else() - # return as a flag string - if ("${_language}" STREQUAL "CXX") - set (_flags "-Kc++ ") - endif() - set (_flags "${_flags}-H -EP") - endif() - endif() - else() - message (FATAL_ERROR "cotire: unsupported ${_language} compiler ${_compilerID} version ${_compilerVersion}.") - endif() - set (${_flagsVar} ${_flags} PARENT_SCOPE) -endfunction() - -function (cotire_add_pch_compilation_flags _language _compilerID _compilerVersion _prefixFile _pchFile _hostFile _flagsVar) - set (_flags ${${_flagsVar}}) - if (_compilerID MATCHES "MSVC") - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - file (TO_NATIVE_PATH "${_hostFile}" _hostFileNative) - # cl.exe options used - # /Yc creates a precompiled header file - # /Fp specifies precompiled header binary file name - # /FI forces inclusion of file - # /TC treat all files named on the command line as C source files - # /TP treat all files named on the command line as C++ source files - # /Zs syntax check only - # /Zm precompiled header memory allocation scaling factor - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" - "/Yc${_prefixFileNative}" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}" /Zs "${_hostFileNative}") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - list (APPEND _flags "/Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - else() - # return as a flag string - set (_flags "/Yc\"${_prefixFileNative}\" /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - set (_flags "${_flags} /Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - endif() - elseif (_compilerID MATCHES "GNU|Clang") - # GCC / Clang options used - # -x specify the source language - # -c compile but do not link - # -o place output in file - # note that we cannot use -w to suppress all warnings upon pre-compiling, because turning off a warning may - # alter compile flags as a side effect (e.g., -Wwrite-string implies -fconst-strings) - set (_xLanguage_C "c-header") - set (_xLanguage_CXX "c++-header") - if (_flags) - # append to list - list (APPEND _flags "-x" "${_xLanguage_${_language}}" "-c" "${_prefixFile}" -o "${_pchFile}") - else() - # return as a flag string - set (_flags "-x ${_xLanguage_${_language}} -c \"${_prefixFile}\" -o \"${_pchFile}\"") - endif() - elseif (_compilerID MATCHES "Intel") - if (WIN32) - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - file (TO_NATIVE_PATH "${_hostFile}" _hostFileNative) - # Windows Intel options used - # /nologo do not display compiler version information - # /Yc create a precompiled header (PCH) file - # /Fp specify a path or file name for precompiled header files - # /FI tells the preprocessor to include a specified file name as the header file - # /TC process all source or unrecognized file types as C source files - # /TP process all source or unrecognized file types as C++ source files - # /Zs syntax check only - # /Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - set (_sourceFileTypeC "/TC") - set (_sourceFileTypeCXX "/TP") - if (_flags) - # append to list - list (APPEND _flags /nologo "${_sourceFileType${_language}}" - "/Yc" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}" /Zs "${_hostFileNative}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - list (APPEND _flags "/Wpch-messages") - endif() - else() - # return as a flag string - set (_flags "/Yc /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - set (_flags "${_flags} /Wpch-messages") - endif() - endif() - else() - # Linux / Mac OS X Intel options used - # -pch-dir location for precompiled header files - # -pch-create name of the precompiled header (PCH) to create - # -Kc++ process all source or unrecognized file types as C++ source files - # -fsyntax-only check only for correct syntax - # -Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - get_filename_component(_pchDir "${_pchFile}" DIRECTORY) - get_filename_component(_pchName "${_pchFile}" NAME) - set (_xLanguage_C "c-header") - set (_xLanguage_CXX "c++-header") - set (_pchSuppressMessages FALSE) - if ("${CMAKE_${_language}_FLAGS}" MATCHES ".*-Wno-pch-messages.*") - set(_pchSuppressMessages TRUE) - endif() - if (_flags) - # append to list - if ("${_language}" STREQUAL "CXX") - list (APPEND _flags -Kc++) - endif() - list (APPEND _flags "-include" "${_prefixFile}" "-pch-dir" "${_pchDir}" "-pch-create" "${_pchName}" "-fsyntax-only" "${_hostFile}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - list (APPEND _flags "-Wpch-messages") - endif() - endif() - else() - # return as a flag string - set (_flags "-include \"${_prefixFile}\" -pch-dir \"${_pchDir}\" -pch-create \"${_pchName}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - set (_flags "${_flags} -Wpch-messages") - endif() - endif() - endif() - endif() - else() - message (FATAL_ERROR "cotire: unsupported ${_language} compiler ${_compilerID} version ${_compilerVersion}.") - endif() - set (${_flagsVar} ${_flags} PARENT_SCOPE) -endfunction() - -function (cotire_add_prefix_pch_inclusion_flags _language _compilerID _compilerVersion _prefixFile _pchFile _flagsVar) - set (_flags ${${_flagsVar}}) - if (_compilerID MATCHES "MSVC") - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - # cl.exe options used - # /Yu uses a precompiled header file during build - # /Fp specifies precompiled header binary file name - # /FI forces inclusion of file - # /Zm precompiled header memory allocation scaling factor - if (_pchFile) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - if (_flags) - # append to list - list (APPEND _flags "/Yu${_prefixFileNative}" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - list (APPEND _flags "/Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - else() - # return as a flag string - set (_flags "/Yu\"${_prefixFileNative}\" /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (COTIRE_PCH_MEMORY_SCALING_FACTOR) - set (_flags "${_flags} /Zm${COTIRE_PCH_MEMORY_SCALING_FACTOR}") - endif() - endif() - else() - # no precompiled header, force inclusion of prefix header - if (_flags) - # append to list - list (APPEND _flags "/FI${_prefixFileNative}") - else() - # return as a flag string - set (_flags "/FI\"${_prefixFileNative}\"") - endif() - endif() - elseif (_compilerID MATCHES "GNU") - # GCC options used - # -include process include file as the first line of the primary source file - # -Winvalid-pch warns if precompiled header is found but cannot be used - # note: ccache requires the -include flag to be used in order to process precompiled header correctly - if (_flags) - # append to list - list (APPEND _flags "-Winvalid-pch" "-include" "${_prefixFile}") - else() - # return as a flag string - set (_flags "-Winvalid-pch -include \"${_prefixFile}\"") - endif() - elseif (_compilerID MATCHES "Clang") - # Clang options used - # -include process include file as the first line of the primary source file - # -include-pch include precompiled header file - # -Qunused-arguments don't emit warning for unused driver arguments - # note: ccache requires the -include flag to be used in order to process precompiled header correctly - if (_flags) - # append to list - list (APPEND _flags "-Qunused-arguments" "-include" "${_prefixFile}") - else() - # return as a flag string - set (_flags "-Qunused-arguments -include \"${_prefixFile}\"") - endif() - elseif (_compilerID MATCHES "Intel") - if (WIN32) - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileNative) - # Windows Intel options used - # /Yu use a precompiled header (PCH) file - # /Fp specify a path or file name for precompiled header files - # /FI tells the preprocessor to include a specified file name as the header file - # /Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - if (_pchFile) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileNative) - if (_flags) - # append to list - list (APPEND _flags "/Yu" "/Fp${_pchFileNative}" "/FI${_prefixFileNative}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - list (APPEND _flags "/Wpch-messages") - endif() - else() - # return as a flag string - set (_flags "/Yu /Fp\"${_pchFileNative}\" /FI\"${_prefixFileNative}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - set (_flags "${_flags} /Wpch-messages") - endif() - endif() - else() - # no precompiled header, force inclusion of prefix header - if (_flags) - # append to list - list (APPEND _flags "/FI${_prefixFileNative}") - else() - # return as a flag string - set (_flags "/FI\"${_prefixFileNative}\"") - endif() - endif() - else() - # Linux / Mac OS X Intel options used - # -pch-dir location for precompiled header files - # -pch-use name of the precompiled header (PCH) to use - # -include process include file as the first line of the primary source file - # -Wpch-messages enable diagnostics related to pre-compiled headers (requires Intel XE 2013 Update 2) - if (_pchFile) - get_filename_component(_pchDir "${_pchFile}" DIRECTORY) - get_filename_component(_pchName "${_pchFile}" NAME) - set (_pchSuppressMessages FALSE) - if ("${CMAKE_${_language}_FLAGS}" MATCHES ".*-Wno-pch-messages.*") - set(_pchSuppressMessages TRUE) - endif() - if (_flags) - # append to list - list (APPEND _flags "-include" "${_prefixFile}" "-pch-dir" "${_pchDir}" "-pch-use" "${_pchName}") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - list (APPEND _flags "-Wpch-messages") - endif() - endif() - else() - # return as a flag string - set (_flags "-include \"${_prefixFile}\" -pch-dir \"${_pchDir}\" -pch-use \"${_pchName}\"") - if (NOT "${_compilerVersion}" VERSION_LESS "13.1.0") - if (NOT _pchSuppressMessages) - set (_flags "${_flags} -Wpch-messages") - endif() - endif() - endif() - else() - # no precompiled header, force inclusion of prefix header - if (_flags) - # append to list - list (APPEND _flags "-include" "${_prefixFile}") - else() - # return as a flag string - set (_flags "-include \"${_prefixFile}\"") - endif() - endif() - endif() - else() - message (FATAL_ERROR "cotire: unsupported ${_language} compiler ${_compilerID} version ${_compilerVersion}.") - endif() - set (${_flagsVar} ${_flags} PARENT_SCOPE) -endfunction() - -function (cotire_precompile_prefix_header _prefixFile _pchFile _hostFile) - set(_options "") - set(_oneValueArgs COMPILER_EXECUTABLE COMPILER_ARG1 COMPILER_ID COMPILER_VERSION LANGUAGE) - set(_multiValueArgs COMPILE_DEFINITIONS COMPILE_FLAGS INCLUDE_DIRECTORIES SYSTEM_INCLUDE_DIRECTORIES SYS COMPILER_LAUNCHER) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (NOT _option_LANGUAGE) - set (_option_LANGUAGE "CXX") - endif() - if (NOT _option_COMPILER_ID) - set (_option_COMPILER_ID "${CMAKE_${_option_LANGUAGE}_ID}") - endif() - if (NOT _option_COMPILER_VERSION) - set (_option_COMPILER_VERSION "${CMAKE_${_option_LANGUAGE}_COMPILER_VERSION}") - endif() - cotire_init_compile_cmd(_cmd "${_option_LANGUAGE}" "${_option_COMPILER_LAUNCHER}" "${_option_COMPILER_EXECUTABLE}" "${_option_COMPILER_ARG1}") - cotire_add_definitions_to_cmd(_cmd "${_option_LANGUAGE}" ${_option_COMPILE_DEFINITIONS}) - cotire_add_compile_flags_to_cmd(_cmd ${_option_COMPILE_FLAGS}) - cotire_add_includes_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_frameworks_to_cmd(_cmd "${_option_LANGUAGE}" _option_INCLUDE_DIRECTORIES _option_SYSTEM_INCLUDE_DIRECTORIES) - cotire_add_pch_compilation_flags( - "${_option_LANGUAGE}" "${_option_COMPILER_ID}" "${_option_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" "${_hostFile}" _cmd) - if (COTIRE_VERBOSE) - message (STATUS "execute_process: ${_cmd}") - endif() - if (_option_COMPILER_ID MATCHES "MSVC") - # cl.exe messes with the output streams unless the environment variable VS_UNICODE_OUTPUT is cleared - unset (ENV{VS_UNICODE_OUTPUT}) - elseif (_option_COMPILER_ID MATCHES "GNU|Clang") - if (_option_COMPILER_LAUNCHER MATCHES "ccache" OR - _option_COMPILER_EXECUTABLE MATCHES "ccache") - # Newer versions of Clang and GCC seem to embed a compilation timestamp into the precompiled header binary, - # which results in "file has been modified since the precompiled header was built" errors if ccache is used. - # We work around the problem by disabling ccache upon pre-compiling the prefix header. - set (ENV{CCACHE_DISABLE} "true") - endif() - endif() - execute_process( - COMMAND ${_cmd} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - RESULT_VARIABLE _result) - if (_result) - message (FATAL_ERROR "cotire: error ${_result} precompiling ${_prefixFile}.") - endif() -endfunction() - -function (cotire_check_precompiled_header_support _language _target _msgVar) - set (_unsupportedCompiler - "Precompiled headers not supported for ${_language} compiler ${CMAKE_${_language}_COMPILER_ID}") - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC") - # supported since Visual Studio C++ 6.0 - # and CMake does not support an earlier version - set (${_msgVar} "" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "GNU") - # GCC PCH support requires version >= 3.4 - if ("${CMAKE_${_language}_COMPILER_VERSION}" VERSION_LESS "3.4.0") - set (${_msgVar} "${_unsupportedCompiler} version ${CMAKE_${_language}_COMPILER_VERSION}." PARENT_SCOPE) - else() - set (${_msgVar} "" PARENT_SCOPE) - endif() - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Clang") - # all Clang versions have PCH support - set (${_msgVar} "" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Intel") - # Intel PCH support requires version >= 8.0.0 - if ("${CMAKE_${_language}_COMPILER_VERSION}" VERSION_LESS "8.0.0") - set (${_msgVar} "${_unsupportedCompiler} version ${CMAKE_${_language}_COMPILER_VERSION}." PARENT_SCOPE) - else() - set (${_msgVar} "" PARENT_SCOPE) - endif() - else() - set (${_msgVar} "${_unsupportedCompiler}." PARENT_SCOPE) - endif() - get_target_property(_launcher ${_target} ${_language}_COMPILER_LAUNCHER) - if (CMAKE_${_language}_COMPILER MATCHES "ccache" OR _launcher MATCHES "ccache") - if (DEFINED ENV{CCACHE_SLOPPINESS}) - if (NOT "$ENV{CCACHE_SLOPPINESS}" MATCHES "pch_defines" OR NOT "$ENV{CCACHE_SLOPPINESS}" MATCHES "time_macros") - set (${_msgVar} - "ccache requires the environment variable CCACHE_SLOPPINESS to be set to \"pch_defines,time_macros\"." - PARENT_SCOPE) - endif() - else() - if (_launcher MATCHES "ccache") - get_filename_component(_ccacheExe "${_launcher}" REALPATH) - else() - get_filename_component(_ccacheExe "${CMAKE_${_language}_COMPILER}" REALPATH) - endif() - execute_process( - COMMAND "${_ccacheExe}" "--print-config" - WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" - RESULT_VARIABLE _result - OUTPUT_VARIABLE _ccacheConfig OUTPUT_STRIP_TRAILING_WHITESPACE - ERROR_QUIET) - if (_result OR NOT - _ccacheConfig MATCHES "sloppiness.*=.*time_macros" OR NOT - _ccacheConfig MATCHES "sloppiness.*=.*pch_defines") - set (${_msgVar} - "ccache requires configuration setting \"sloppiness\" to be set to \"pch_defines,time_macros\"." - PARENT_SCOPE) - endif() - endif() - endif() - if (APPLE) - # PCH compilation not supported by GCC / Clang for multi-architecture builds (e.g., i386, x86_64) - cotire_get_configuration_types(_configs) - foreach (_config ${_configs}) - set (_targetFlags "") - cotire_get_target_compile_flags("${_config}" "${_language}" "${_target}" _targetFlags) - cotire_filter_compile_flags("${_language}" "arch" _architectures _ignore ${_targetFlags}) - list (LENGTH _architectures _numberOfArchitectures) - if (_numberOfArchitectures GREATER 1) - string (REPLACE ";" ", " _architectureStr "${_architectures}") - set (${_msgVar} - "Precompiled headers not supported on Darwin for multi-architecture builds (${_architectureStr})." - PARENT_SCOPE) - break() - endif() - endforeach() - endif() -endfunction() - -macro (cotire_get_intermediate_dir _cotireDir) - # ${CMAKE_CFG_INTDIR} may reference a build-time variable when using a generator which supports configuration types - get_filename_component(${_cotireDir} "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}/${COTIRE_INTDIR}" ABSOLUTE) -endmacro() - -macro (cotire_setup_file_extension_variables) - set (_unityFileExt_C ".c") - set (_unityFileExt_CXX ".cxx") - set (_prefixFileExt_C ".h") - set (_prefixFileExt_CXX ".hxx") - set (_prefixSourceFileExt_C ".c") - set (_prefixSourceFileExt_CXX ".cxx") -endmacro() - -function (cotire_make_single_unity_source_file_path _language _target _unityFileVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _unityFileExt_${_language}) - set (${_unityFileVar} "" PARENT_SCOPE) - return() - endif() - set (_unityFileBaseName "${_target}_${_language}${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}") - set (_unityFileName "${_unityFileBaseName}${_unityFileExt_${_language}}") - cotire_get_intermediate_dir(_baseDir) - set (_unityFile "${_baseDir}/${_unityFileName}") - set (${_unityFileVar} "${_unityFile}" PARENT_SCOPE) -endfunction() - -function (cotire_make_unity_source_file_paths _language _target _maxIncludes _unityFilesVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _unityFileExt_${_language}) - set (${_unityFileVar} "" PARENT_SCOPE) - return() - endif() - set (_unityFileBaseName "${_target}_${_language}${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}") - cotire_get_intermediate_dir(_baseDir) - set (_startIndex 0) - set (_index 0) - set (_unityFiles "") - set (_sourceFiles ${ARGN}) - foreach (_sourceFile ${_sourceFiles}) - get_source_file_property(_startNew "${_sourceFile}" COTIRE_START_NEW_UNITY_SOURCE) - math (EXPR _unityFileCount "${_index} - ${_startIndex}") - if (_startNew OR (_maxIncludes GREATER 0 AND NOT _unityFileCount LESS _maxIncludes)) - if (_index GREATER 0) - # start new unity file segment - math (EXPR _endIndex "${_index} - 1") - set (_unityFileName "${_unityFileBaseName}_${_startIndex}_${_endIndex}${_unityFileExt_${_language}}") - list (APPEND _unityFiles "${_baseDir}/${_unityFileName}") - endif() - set (_startIndex ${_index}) - endif() - math (EXPR _index "${_index} + 1") - endforeach() - list (LENGTH _sourceFiles _numberOfSources) - if (_startIndex EQUAL 0) - # there is only a single unity file - cotire_make_single_unity_source_file_path(${_language} ${_target} _unityFiles) - elseif (_startIndex LESS _numberOfSources) - # end with final unity file segment - math (EXPR _endIndex "${_index} - 1") - set (_unityFileName "${_unityFileBaseName}_${_startIndex}_${_endIndex}${_unityFileExt_${_language}}") - list (APPEND _unityFiles "${_baseDir}/${_unityFileName}") - endif() - set (${_unityFilesVar} ${_unityFiles} PARENT_SCOPE) - if (COTIRE_DEBUG AND _unityFiles) - message (STATUS "unity files: ${_unityFiles}") - endif() -endfunction() - -function (cotire_unity_to_prefix_file_path _language _target _unityFile _prefixFileVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _unityFileExt_${_language}) - set (${_prefixFileVar} "" PARENT_SCOPE) - return() - endif() - set (_unityFileBaseName "${_target}_${_language}${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}") - set (_prefixFileBaseName "${_target}_${_language}${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}") - string (REPLACE "${_unityFileBaseName}" "${_prefixFileBaseName}" _prefixFile "${_unityFile}") - string (REGEX REPLACE "${_unityFileExt_${_language}}$" "${_prefixFileExt_${_language}}" _prefixFile "${_prefixFile}") - set (${_prefixFileVar} "${_prefixFile}" PARENT_SCOPE) -endfunction() - -function (cotire_prefix_header_to_source_file_path _language _prefixHeaderFile _prefixSourceFileVar) - cotire_setup_file_extension_variables() - if (NOT DEFINED _prefixSourceFileExt_${_language}) - set (${_prefixSourceFileVar} "" PARENT_SCOPE) - return() - endif() - string (REGEX REPLACE "${_prefixFileExt_${_language}}$" "${_prefixSourceFileExt_${_language}}" _prefixSourceFile "${_prefixHeaderFile}") - set (${_prefixSourceFileVar} "${_prefixSourceFile}" PARENT_SCOPE) -endfunction() - -function (cotire_make_prefix_file_name _language _target _prefixFileBaseNameVar _prefixFileNameVar) - cotire_setup_file_extension_variables() - if (NOT _language) - set (_prefixFileBaseName "${_target}${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}") - set (_prefixFileName "${_prefixFileBaseName}${_prefixFileExt_C}") - elseif (DEFINED _prefixFileExt_${_language}) - set (_prefixFileBaseName "${_target}_${_language}${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}") - set (_prefixFileName "${_prefixFileBaseName}${_prefixFileExt_${_language}}") - else() - set (_prefixFileBaseName "") - set (_prefixFileName "") - endif() - set (${_prefixFileBaseNameVar} "${_prefixFileBaseName}" PARENT_SCOPE) - set (${_prefixFileNameVar} "${_prefixFileName}" PARENT_SCOPE) -endfunction() - -function (cotire_make_prefix_file_path _language _target _prefixFileVar) - cotire_make_prefix_file_name("${_language}" "${_target}" _prefixFileBaseName _prefixFileName) - set (${_prefixFileVar} "" PARENT_SCOPE) - if (_prefixFileName) - if (NOT _language) - set (_language "C") - endif() - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang|Intel|MSVC") - cotire_get_intermediate_dir(_baseDir) - set (${_prefixFileVar} "${_baseDir}/${_prefixFileName}" PARENT_SCOPE) - endif() - endif() -endfunction() - -function (cotire_make_pch_file_path _language _target _pchFileVar) - cotire_make_prefix_file_name("${_language}" "${_target}" _prefixFileBaseName _prefixFileName) - set (${_pchFileVar} "" PARENT_SCOPE) - if (_prefixFileBaseName AND _prefixFileName) - cotire_check_precompiled_header_support("${_language}" "${_target}" _msg) - if (NOT _msg) - if (XCODE) - # For Xcode, we completely hand off the compilation of the prefix header to the IDE - return() - endif() - cotire_get_intermediate_dir(_baseDir) - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC") - # MSVC uses the extension .pch added to the prefix header base name - set (${_pchFileVar} "${_baseDir}/${_prefixFileBaseName}.pch" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Clang") - # Clang looks for a precompiled header corresponding to the prefix header with the extension .pch appended - set (${_pchFileVar} "${_baseDir}/${_prefixFileName}.pch" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "GNU") - # GCC looks for a precompiled header corresponding to the prefix header with the extension .gch appended - set (${_pchFileVar} "${_baseDir}/${_prefixFileName}.gch" PARENT_SCOPE) - elseif (CMAKE_${_language}_COMPILER_ID MATCHES "Intel") - # Intel uses the extension .pchi added to the prefix header base name - set (${_pchFileVar} "${_baseDir}/${_prefixFileBaseName}.pchi" PARENT_SCOPE) - endif() - endif() - endif() -endfunction() - -function (cotire_select_unity_source_files _unityFile _sourcesVar) - set (_sourceFiles ${ARGN}) - if (_sourceFiles AND "${_unityFile}" MATCHES "${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}_([0-9]+)_([0-9]+)") - set (_startIndex ${CMAKE_MATCH_1}) - set (_endIndex ${CMAKE_MATCH_2}) - list (LENGTH _sourceFiles _numberOfSources) - if (NOT _startIndex LESS _numberOfSources) - math (EXPR _startIndex "${_numberOfSources} - 1") - endif() - if (NOT _endIndex LESS _numberOfSources) - math (EXPR _endIndex "${_numberOfSources} - 1") - endif() - set (_files "") - foreach (_index RANGE ${_startIndex} ${_endIndex}) - list (GET _sourceFiles ${_index} _file) - list (APPEND _files "${_file}") - endforeach() - else() - set (_files ${_sourceFiles}) - endif() - set (${_sourcesVar} ${_files} PARENT_SCOPE) -endfunction() - -function (cotire_get_unity_source_dependencies _language _target _dependencySourcesVar) - set (_dependencySources "") - # depend on target's generated source files - get_target_property(_targetSourceFiles ${_target} SOURCES) - cotire_get_objects_with_property_on(_generatedSources GENERATED SOURCE ${_targetSourceFiles}) - if (_generatedSources) - # but omit all generated source files that have the COTIRE_EXCLUDED property set to true - cotire_get_objects_with_property_on(_excludedGeneratedSources COTIRE_EXCLUDED SOURCE ${_generatedSources}) - if (_excludedGeneratedSources) - list (REMOVE_ITEM _generatedSources ${_excludedGeneratedSources}) - endif() - # and omit all generated source files that have the COTIRE_DEPENDENCY property set to false explicitly - cotire_get_objects_with_property_off(_excludedNonDependencySources COTIRE_DEPENDENCY SOURCE ${_generatedSources}) - if (_excludedNonDependencySources) - list (REMOVE_ITEM _generatedSources ${_excludedNonDependencySources}) - endif() - if (_generatedSources) - list (APPEND _dependencySources ${_generatedSources}) - endif() - endif() - if (COTIRE_DEBUG AND _dependencySources) - message (STATUS "${_language} ${_target} unity source dependencies: ${_dependencySources}") - endif() - set (${_dependencySourcesVar} ${_dependencySources} PARENT_SCOPE) -endfunction() - -function (cotire_get_prefix_header_dependencies _language _target _dependencySourcesVar) - set (_dependencySources "") - # depend on target source files marked with custom COTIRE_DEPENDENCY property - get_target_property(_targetSourceFiles ${_target} SOURCES) - cotire_get_objects_with_property_on(_dependencySources COTIRE_DEPENDENCY SOURCE ${_targetSourceFiles}) - if (COTIRE_DEBUG AND _dependencySources) - message (STATUS "${_language} ${_target} prefix header dependencies: ${_dependencySources}") - endif() - set (${_dependencySourcesVar} ${_dependencySources} PARENT_SCOPE) -endfunction() - -function (cotire_generate_target_script _language _configurations _target _targetScriptVar _targetConfigScriptVar) - set (_targetSources ${ARGN}) - cotire_get_prefix_header_dependencies(${_language} ${_target} COTIRE_TARGET_PREFIX_DEPENDS ${_targetSources}) - cotire_get_unity_source_dependencies(${_language} ${_target} COTIRE_TARGET_UNITY_DEPENDS ${_targetSources}) - # set up variables to be configured - set (COTIRE_TARGET_LANGUAGE "${_language}") - get_target_property(COTIRE_TARGET_IGNORE_PATH ${_target} COTIRE_PREFIX_HEADER_IGNORE_PATH) - cotire_add_sys_root_paths(COTIRE_TARGET_IGNORE_PATH) - get_target_property(COTIRE_TARGET_INCLUDE_PATH ${_target} COTIRE_PREFIX_HEADER_INCLUDE_PATH) - cotire_add_sys_root_paths(COTIRE_TARGET_INCLUDE_PATH) - get_target_property(COTIRE_TARGET_PRE_UNDEFS ${_target} COTIRE_UNITY_SOURCE_PRE_UNDEFS) - get_target_property(COTIRE_TARGET_POST_UNDEFS ${_target} COTIRE_UNITY_SOURCE_POST_UNDEFS) - get_target_property(COTIRE_TARGET_MAXIMUM_NUMBER_OF_INCLUDES ${_target} COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES) - get_target_property(COTIRE_TARGET_INCLUDE_PRIORITY_PATH ${_target} COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH) - cotire_get_source_files_undefs(COTIRE_UNITY_SOURCE_PRE_UNDEFS COTIRE_TARGET_SOURCES_PRE_UNDEFS ${_targetSources}) - cotire_get_source_files_undefs(COTIRE_UNITY_SOURCE_POST_UNDEFS COTIRE_TARGET_SOURCES_POST_UNDEFS ${_targetSources}) - set (COTIRE_TARGET_CONFIGURATION_TYPES "${_configurations}") - foreach (_config ${_configurations}) - string (TOUPPER "${_config}" _upperConfig) - cotire_get_target_include_directories( - "${_config}" "${_language}" "${_target}" COTIRE_TARGET_INCLUDE_DIRECTORIES_${_upperConfig} COTIRE_TARGET_SYSTEM_INCLUDE_DIRECTORIES_${_upperConfig}) - cotire_get_target_compile_definitions( - "${_config}" "${_language}" "${_target}" COTIRE_TARGET_COMPILE_DEFINITIONS_${_upperConfig}) - cotire_get_target_compiler_flags( - "${_config}" "${_language}" "${_target}" COTIRE_TARGET_COMPILE_FLAGS_${_upperConfig}) - cotire_get_source_files_compile_definitions( - "${_config}" "${_language}" COTIRE_TARGET_SOURCES_COMPILE_DEFINITIONS_${_upperConfig} ${_targetSources}) - endforeach() - get_target_property(COTIRE_TARGET_${_language}_COMPILER_LAUNCHER ${_target} ${_language}_COMPILER_LAUNCHER) - # set up COTIRE_TARGET_SOURCES - set (COTIRE_TARGET_SOURCES "") - foreach (_sourceFile ${_targetSources}) - get_source_file_property(_generated "${_sourceFile}" GENERATED) - if (_generated) - # use absolute paths for generated files only, retrieving the LOCATION property is an expensive operation - get_source_file_property(_sourceLocation "${_sourceFile}" LOCATION) - list (APPEND COTIRE_TARGET_SOURCES "${_sourceLocation}") - else() - list (APPEND COTIRE_TARGET_SOURCES "${_sourceFile}") - endif() - endforeach() - # copy variable definitions to cotire target script - get_cmake_property(_vars VARIABLES) - string (REGEX MATCHALL "COTIRE_[A-Za-z0-9_]+" _matchVars "${_vars}") - # omit COTIRE_*_INIT variables - string (REGEX MATCHALL "COTIRE_[A-Za-z0-9_]+_INIT" _initVars "${_matchVars}") - if (_initVars) - list (REMOVE_ITEM _matchVars ${_initVars}) - endif() - # omit COTIRE_VERBOSE which is passed as a CMake define on command line - list (REMOVE_ITEM _matchVars COTIRE_VERBOSE) - set (_contents "") - set (_contentsHasGeneratorExpressions FALSE) - foreach (_var IN LISTS _matchVars ITEMS - XCODE MSVC CMAKE_GENERATOR CMAKE_BUILD_TYPE CMAKE_CONFIGURATION_TYPES - CMAKE_${_language}_COMPILER_ID CMAKE_${_language}_COMPILER_VERSION - CMAKE_${_language}_COMPILER_LAUNCHER CMAKE_${_language}_COMPILER CMAKE_${_language}_COMPILER_ARG1 - CMAKE_INCLUDE_FLAG_${_language} CMAKE_INCLUDE_FLAG_SEP_${_language} - CMAKE_INCLUDE_SYSTEM_FLAG_${_language} - CMAKE_${_language}_FRAMEWORK_SEARCH_FLAG - CMAKE_${_language}_SYSTEM_FRAMEWORK_SEARCH_FLAG - CMAKE_${_language}_SOURCE_FILE_EXTENSIONS) - if (DEFINED ${_var}) - string (REPLACE "\"" "\\\"" _value "${${_var}}") - set (_contents "${_contents}set (${_var} \"${_value}\")\n") - if (NOT _contentsHasGeneratorExpressions) - if ("${_value}" MATCHES "\\$<.*>") - set (_contentsHasGeneratorExpressions TRUE) - endif() - endif() - endif() - endforeach() - # generate target script file - get_filename_component(_moduleName "${COTIRE_CMAKE_MODULE_FILE}" NAME) - set (_targetCotireScript "${CMAKE_CURRENT_BINARY_DIR}/${_target}_${_language}_${_moduleName}") - cotire_write_file("CMAKE" "${_targetCotireScript}" "${_contents}" FALSE) - if (_contentsHasGeneratorExpressions) - # use file(GENERATE ...) to expand generator expressions in the target script at CMake generate-time - set (_configNameOrNoneGeneratorExpression "$<$:None>$<$>:$>") - set (_targetCotireConfigScript "${CMAKE_CURRENT_BINARY_DIR}/${_target}_${_language}_${_configNameOrNoneGeneratorExpression}_${_moduleName}") - file (GENERATE OUTPUT "${_targetCotireConfigScript}" INPUT "${_targetCotireScript}") - else() - set (_targetCotireConfigScript "${_targetCotireScript}") - endif() - set (${_targetScriptVar} "${_targetCotireScript}" PARENT_SCOPE) - set (${_targetConfigScriptVar} "${_targetCotireConfigScript}" PARENT_SCOPE) -endfunction() - -function (cotire_setup_pch_file_compilation _language _target _targetScript _prefixFile _pchFile _hostFile) - set (_sourceFiles ${ARGN}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # for Visual Studio and Intel, we attach the precompiled header compilation to the host file - # the remaining files include the precompiled header, see cotire_setup_pch_file_inclusion - if (_sourceFiles) - set (_flags "") - cotire_add_pch_compilation_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" "${_hostFile}" _flags) - set_property (SOURCE ${_hostFile} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - set_property (SOURCE ${_hostFile} APPEND PROPERTY OBJECT_OUTPUTS "${_pchFile}") - # make object file generated from host file depend on prefix header - set_property (SOURCE ${_hostFile} APPEND PROPERTY OBJECT_DEPENDS "${_prefixFile}") - # mark host file as cotired to prevent it from being used in another cotired target - set_property (SOURCE ${_hostFile} PROPERTY COTIRE_TARGET "${_target}") - endif() - elseif ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # for makefile based generator, we add a custom command to precompile the prefix header - if (_targetScript) - cotire_set_cmd_to_prologue(_cmds) - list (APPEND _cmds -P "${COTIRE_CMAKE_MODULE_FILE}" "precompile" "${_targetScript}" "${_prefixFile}" "${_pchFile}" "${_hostFile}") - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_pchFile}" _pchFileLogPath) - else() - file (RELATIVE_PATH _pchFileLogPath "${CMAKE_BINARY_DIR}" "${_pchFile}") - endif() - # make precompiled header compilation depend on the actual compiler executable used to force - # re-compilation when the compiler executable is updated. This prevents "created by a different GCC executable" - # warnings when the precompiled header is included. - get_filename_component(_realCompilerExe "${CMAKE_${_language}_COMPILER}" ABSOLUTE) - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_pchFile} ${_cmds} DEPENDS ${_prefixFile} ${_realCompilerExe} IMPLICIT_DEPENDS ${_language} ${_prefixFile}") - endif() - set_property (SOURCE "${_pchFile}" PROPERTY GENERATED TRUE) - add_custom_command( - OUTPUT "${_pchFile}" - COMMAND ${_cmds} - DEPENDS "${_prefixFile}" "${_realCompilerExe}" - IMPLICIT_DEPENDS ${_language} "${_prefixFile}" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - COMMENT "Building ${_language} precompiled header ${_pchFileLogPath}" - VERBATIM) - endif() - endif() -endfunction() - -function (cotire_setup_pch_file_inclusion _language _target _wholeTarget _prefixFile _pchFile _hostFile) - if (CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # for Visual Studio and Intel, we include the precompiled header in all but the host file - # the host file does the precompiled header compilation, see cotire_setup_pch_file_compilation - set (_sourceFiles ${ARGN}) - list (LENGTH _sourceFiles _numberOfSourceFiles) - if (_numberOfSourceFiles GREATER 0) - # mark sources as cotired to prevent them from being used in another cotired target - set_source_files_properties(${_sourceFiles} PROPERTIES COTIRE_TARGET "${_target}") - set (_flags "") - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _flags) - set_property (SOURCE ${_sourceFiles} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - # make object files generated from source files depend on precompiled header - set_property (SOURCE ${_sourceFiles} APPEND PROPERTY OBJECT_DEPENDS "${_pchFile}") - endif() - elseif ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - set (_sourceFiles ${_hostFile} ${ARGN}) - if (NOT _wholeTarget) - # for makefile based generator, we force the inclusion of the prefix header for a subset - # of the source files, if this is a multi-language target or has excluded files - set (_flags "") - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _flags) - set_property (SOURCE ${_sourceFiles} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - # mark sources as cotired to prevent them from being used in another cotired target - set_source_files_properties(${_sourceFiles} PROPERTIES COTIRE_TARGET "${_target}") - endif() - # make object files generated from source files depend on precompiled header - set_property (SOURCE ${_sourceFiles} APPEND PROPERTY OBJECT_DEPENDS "${_pchFile}") - endif() -endfunction() - -function (cotire_setup_prefix_file_inclusion _language _target _prefixFile) - set (_sourceFiles ${ARGN}) - # force the inclusion of the prefix header for the given source files - set (_flags "") - set (_pchFile "") - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _flags) - set_property (SOURCE ${_sourceFiles} APPEND_STRING PROPERTY COMPILE_FLAGS " ${_flags} ") - # mark sources as cotired to prevent them from being used in another cotired target - set_source_files_properties(${_sourceFiles} PROPERTIES COTIRE_TARGET "${_target}") - # make object files generated from source files depend on prefix header - set_property (SOURCE ${_sourceFiles} APPEND PROPERTY OBJECT_DEPENDS "${_prefixFile}") -endfunction() - -function (cotire_get_first_set_property_value _propertyValueVar _type _object) - set (_properties ${ARGN}) - foreach (_property ${_properties}) - get_property(_propertyValue ${_type} "${_object}" PROPERTY ${_property}) - if (_propertyValue) - set (${_propertyValueVar} ${_propertyValue} PARENT_SCOPE) - return() - endif() - endforeach() - set (${_propertyValueVar} "" PARENT_SCOPE) -endfunction() - -function (cotire_setup_combine_command _language _targetScript _joinedFile _cmdsVar) - set (_files ${ARGN}) - set (_filesPaths "") - foreach (_file ${_files}) - get_filename_component(_filePath "${_file}" ABSOLUTE) - list (APPEND _filesPaths "${_filePath}") - endforeach() - cotire_set_cmd_to_prologue(_prefixCmd) - list (APPEND _prefixCmd -P "${COTIRE_CMAKE_MODULE_FILE}" "combine") - if (_targetScript) - list (APPEND _prefixCmd "${_targetScript}") - endif() - list (APPEND _prefixCmd "${_joinedFile}" ${_filesPaths}) - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_joinedFile} COMMAND ${_prefixCmd} DEPENDS ${_files}") - endif() - set_property (SOURCE "${_joinedFile}" PROPERTY GENERATED TRUE) - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_joinedFile}" _joinedFileLogPath) - else() - file (RELATIVE_PATH _joinedFileLogPath "${CMAKE_BINARY_DIR}" "${_joinedFile}") - endif() - get_filename_component(_joinedFileBaseName "${_joinedFile}" NAME_WE) - get_filename_component(_joinedFileExt "${_joinedFile}" EXT) - if (_language AND _joinedFileBaseName MATCHES "${COTIRE_UNITY_SOURCE_FILENAME_SUFFIX}$") - set (_comment "Generating ${_language} unity source ${_joinedFileLogPath}") - elseif (_language AND _joinedFileBaseName MATCHES "${COTIRE_PREFIX_HEADER_FILENAME_SUFFIX}$") - if (_joinedFileExt MATCHES "^\\.c") - set (_comment "Generating ${_language} prefix source ${_joinedFileLogPath}") - else() - set (_comment "Generating ${_language} prefix header ${_joinedFileLogPath}") - endif() - else() - set (_comment "Generating ${_joinedFileLogPath}") - endif() - add_custom_command( - OUTPUT "${_joinedFile}" - COMMAND ${_prefixCmd} - DEPENDS ${_files} - COMMENT "${_comment}" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - VERBATIM) - list (APPEND ${_cmdsVar} COMMAND ${_prefixCmd}) - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_target_pch_usage _languages _target _wholeTarget) - if (XCODE) - # for Xcode, we attach a pre-build action to generate the unity sources and prefix headers - set (_prefixFiles "") - foreach (_language ${_languages}) - get_property(_prefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER) - if (_prefixFile) - list (APPEND _prefixFiles "${_prefixFile}") - endif() - endforeach() - set (_cmds ${ARGN}) - list (LENGTH _prefixFiles _numberOfPrefixFiles) - if (_numberOfPrefixFiles GREATER 1) - # we also generate a generic, single prefix header which includes all language specific prefix headers - set (_language "") - set (_targetScript "") - cotire_make_prefix_file_path("${_language}" ${_target} _prefixHeader) - cotire_setup_combine_command("${_language}" "${_targetScript}" "${_prefixHeader}" _cmds ${_prefixFiles}) - else() - set (_prefixHeader "${_prefixFiles}") - endif() - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: TARGET ${_target} PRE_BUILD ${_cmds}") - endif() - # because CMake PRE_BUILD command does not support dependencies, - # we check dependencies explicity in cotire script mode when the pre-build action is run - add_custom_command( - TARGET "${_target}" - PRE_BUILD ${_cmds} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - COMMENT "Updating target ${_target} prefix headers" - VERBATIM) - # make Xcode precompile the generated prefix header with ProcessPCH and ProcessPCH++ - set_target_properties(${_target} PROPERTIES XCODE_ATTRIBUTE_GCC_PRECOMPILE_PREFIX_HEADER "YES") - set_target_properties(${_target} PROPERTIES XCODE_ATTRIBUTE_GCC_PREFIX_HEADER "${_prefixHeader}") - elseif ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # for makefile based generator, we force inclusion of the prefix header for all target source files - # if this is a single-language target without any excluded files - if (_wholeTarget) - set (_language "${_languages}") - # for Visual Studio and Intel, precompiled header inclusion is always done on the source file level - # see cotire_setup_pch_file_inclusion - if (NOT CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - get_property(_prefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER) - if (_prefixFile) - get_property(_pchFile TARGET ${_target} PROPERTY COTIRE_${_language}_PRECOMPILED_HEADER) - set (_options COMPILE_OPTIONS) - cotire_add_prefix_pch_inclusion_flags( - "${_language}" "${CMAKE_${_language}_COMPILER_ID}" "${CMAKE_${_language}_COMPILER_VERSION}" - "${_prefixFile}" "${_pchFile}" _options) - set_property(TARGET ${_target} APPEND PROPERTY ${_options}) - endif() - endif() - endif() - endif() -endfunction() - -function (cotire_setup_unity_generation_commands _language _target _targetScript _targetConfigScript _unityFiles _cmdsVar) - set (_dependencySources "") - cotire_get_unity_source_dependencies(${_language} ${_target} _dependencySources ${ARGN}) - foreach (_unityFile ${_unityFiles}) - set_property (SOURCE "${_unityFile}" PROPERTY GENERATED TRUE) - # set up compiled unity source dependencies via OBJECT_DEPENDS - # this ensures that missing source files are generated before the unity file is compiled - if (COTIRE_DEBUG AND _dependencySources) - message (STATUS "${_unityFile} OBJECT_DEPENDS ${_dependencySources}") - endif() - if (_dependencySources) - # the OBJECT_DEPENDS property requires a list of full paths - set (_objectDependsPaths "") - foreach (_sourceFile ${_dependencySources}) - get_source_file_property(_sourceLocation "${_sourceFile}" LOCATION) - list (APPEND _objectDependsPaths "${_sourceLocation}") - endforeach() - set_property (SOURCE "${_unityFile}" PROPERTY OBJECT_DEPENDS ${_objectDependsPaths}) - endif() - if (WIN32 AND CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # unity file compilation results in potentially huge object file, thus use /bigobj by default unter MSVC and Windows Intel - set_property (SOURCE "${_unityFile}" APPEND_STRING PROPERTY COMPILE_FLAGS "/bigobj") - endif() - cotire_set_cmd_to_prologue(_unityCmd) - list (APPEND _unityCmd -P "${COTIRE_CMAKE_MODULE_FILE}" "unity" "${_targetConfigScript}" "${_unityFile}") - if (CMAKE_VERSION VERSION_LESS "3.1.0") - set (_unityCmdDepends "${_targetScript}") - else() - # CMake 3.1.0 supports generator expressions in arguments to DEPENDS - set (_unityCmdDepends "${_targetConfigScript}") - endif() - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_unityFile}" _unityFileLogPath) - else() - file (RELATIVE_PATH _unityFileLogPath "${CMAKE_BINARY_DIR}" "${_unityFile}") - endif() - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_unityFile} COMMAND ${_unityCmd} DEPENDS ${_unityCmdDepends}") - endif() - add_custom_command( - OUTPUT "${_unityFile}" - COMMAND ${_unityCmd} - DEPENDS ${_unityCmdDepends} - COMMENT "Generating ${_language} unity source ${_unityFileLogPath}" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - VERBATIM) - list (APPEND ${_cmdsVar} COMMAND ${_unityCmd}) - endforeach() - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_prefix_generation_command _language _target _targetScript _prefixFile _unityFiles _cmdsVar) - set (_sourceFiles ${ARGN}) - set (_dependencySources "") - cotire_get_prefix_header_dependencies(${_language} ${_target} _dependencySources ${_sourceFiles}) - cotire_set_cmd_to_prologue(_prefixCmd) - list (APPEND _prefixCmd -P "${COTIRE_CMAKE_MODULE_FILE}" "prefix" "${_targetScript}" "${_prefixFile}" ${_unityFiles}) - set_property (SOURCE "${_prefixFile}" PROPERTY GENERATED TRUE) - # make prefix header generation depend on the actual compiler executable used to force - # re-generation when the compiler executable is updated. This prevents "file not found" - # errors for compiler version specific system header files. - get_filename_component(_realCompilerExe "${CMAKE_${_language}_COMPILER}" ABSOLUTE) - if (COTIRE_DEBUG) - message (STATUS "add_custom_command: OUTPUT ${_prefixFile} COMMAND ${_prefixCmd} DEPENDS ${_unityFile} ${_dependencySources} ${_realCompilerExe}") - endif() - if (MSVC_IDE) - file (TO_NATIVE_PATH "${_prefixFile}" _prefixFileLogPath) - else() - file (RELATIVE_PATH _prefixFileLogPath "${CMAKE_BINARY_DIR}" "${_prefixFile}") - endif() - get_filename_component(_prefixFileExt "${_prefixFile}" EXT) - if (_prefixFileExt MATCHES "^\\.c") - set (_comment "Generating ${_language} prefix source ${_prefixFileLogPath}") - else() - set (_comment "Generating ${_language} prefix header ${_prefixFileLogPath}") - endif() - # prevent pre-processing errors upon generating the prefix header when a target's generated include file does not yet exist - # we do not add a file-level dependency for the target's generated files though, because we only want to depend on their existence - # thus we make the prefix header generation depend on a custom helper target which triggers the generation of the files - set (_preTargetName "${_target}${COTIRE_PCH_TARGET_SUFFIX}_pre") - if (TARGET ${_preTargetName}) - # custom helper target has already been generated while processing a different language - list (APPEND _dependencySources ${_preTargetName}) - else() - get_target_property(_targetSourceFiles ${_target} SOURCES) - cotire_get_objects_with_property_on(_generatedSources GENERATED SOURCE ${_targetSourceFiles}) - if (_generatedSources) - add_custom_target("${_preTargetName}" DEPENDS ${_generatedSources}) - cotire_init_target("${_preTargetName}") - list (APPEND _dependencySources ${_preTargetName}) - endif() - endif() - add_custom_command( - OUTPUT "${_prefixFile}" "${_prefixFile}.log" - COMMAND ${_prefixCmd} - DEPENDS ${_unityFiles} ${_dependencySources} "${_realCompilerExe}" - COMMENT "${_comment}" - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - VERBATIM) - list (APPEND ${_cmdsVar} COMMAND ${_prefixCmd}) - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_prefix_generation_from_unity_command _language _target _targetScript _prefixFile _unityFiles _cmdsVar) - set (_sourceFiles ${ARGN}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # GNU and Clang require indirect compilation of the prefix header to make them honor the system_header pragma - cotire_prefix_header_to_source_file_path(${_language} "${_prefixFile}" _prefixSourceFile) - else() - set (_prefixSourceFile "${_prefixFile}") - endif() - cotire_setup_prefix_generation_command( - ${_language} ${_target} "${_targetScript}" - "${_prefixSourceFile}" "${_unityFiles}" ${_cmdsVar} ${_sourceFiles}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # set up generation of a prefix source file which includes the prefix header - cotire_setup_combine_command(${_language} "${_targetScript}" "${_prefixFile}" _cmds ${_prefixSourceFile}) - endif() - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_setup_prefix_generation_from_provided_command _language _target _targetScript _prefixFile _cmdsVar) - set (_prefixHeaderFiles ${ARGN}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # GNU and Clang require indirect compilation of the prefix header to make them honor the system_header pragma - cotire_prefix_header_to_source_file_path(${_language} "${_prefixFile}" _prefixSourceFile) - else() - set (_prefixSourceFile "${_prefixFile}") - endif() - cotire_setup_combine_command(${_language} "${_targetScript}" "${_prefixSourceFile}" _cmds ${_prefixHeaderFiles}) - if (CMAKE_${_language}_COMPILER_ID MATCHES "GNU|Clang") - # set up generation of a prefix source file which includes the prefix header - cotire_setup_combine_command(${_language} "${_targetScript}" "${_prefixFile}" _cmds ${_prefixSourceFile}) - endif() - set (${_cmdsVar} ${${_cmdsVar}} PARENT_SCOPE) -endfunction() - -function (cotire_init_cotire_target_properties _target) - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_ENABLE_PRECOMPILED_HEADER SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_ENABLE_PRECOMPILED_HEADER TRUE) - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_ADD_UNITY_BUILD SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_ADD_UNITY_BUILD TRUE) - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_ADD_CLEAN SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_ADD_CLEAN FALSE) - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH "${CMAKE_SOURCE_DIR}") - cotire_check_is_path_relative_to("${CMAKE_BINARY_DIR}" _isRelative "${CMAKE_SOURCE_DIR}") - if (NOT _isRelative) - set_property(TARGET ${_target} APPEND PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH "${CMAKE_BINARY_DIR}") - endif() - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PATH SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PATH "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_PRE_UNDEFS SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_PRE_UNDEFS "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_POST_UNDEFS SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_POST_UNDEFS "") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_LINK_LIBRARIES_INIT SET) - if (NOT _isSet) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_LINK_LIBRARIES_INIT "COPY_UNITY") - endif() - get_property(_isSet TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES SET) - if (NOT _isSet) - if (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES "${COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES}") - else() - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES "") - endif() - endif() -endfunction() - -function (cotire_make_target_message _target _languages _disableMsg _targetMsgVar) - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - get_target_property(_targetAddSCU ${_target} COTIRE_ADD_UNITY_BUILD) - string (REPLACE ";" " " _languagesStr "${_languages}") - math (EXPR _numberOfExcludedFiles "${ARGC} - 4") - if (_numberOfExcludedFiles EQUAL 0) - set (_excludedStr "") - elseif (COTIRE_VERBOSE OR _numberOfExcludedFiles LESS 4) - string (REPLACE ";" ", " _excludedStr "excluding ${ARGN}") - else() - set (_excludedStr "excluding ${_numberOfExcludedFiles} files") - endif() - set (_targetMsg "") - if (NOT _languages) - set (_targetMsg "Target ${_target} cannot be cotired.") - if (_disableMsg) - set (_targetMsg "${_targetMsg} ${_disableMsg}") - endif() - elseif (NOT _targetUsePCH AND NOT _targetAddSCU) - set (_targetMsg "${_languagesStr} target ${_target} cotired without unity build and precompiled header.") - if (_disableMsg) - set (_targetMsg "${_targetMsg} ${_disableMsg}") - endif() - elseif (NOT _targetUsePCH) - if (_excludedStr) - set (_targetMsg "${_languagesStr} target ${_target} cotired without precompiled header ${_excludedStr}.") - else() - set (_targetMsg "${_languagesStr} target ${_target} cotired without precompiled header.") - endif() - if (_disableMsg) - set (_targetMsg "${_targetMsg} ${_disableMsg}") - endif() - elseif (NOT _targetAddSCU) - if (_excludedStr) - set (_targetMsg "${_languagesStr} target ${_target} cotired without unity build ${_excludedStr}.") - else() - set (_targetMsg "${_languagesStr} target ${_target} cotired without unity build.") - endif() - else() - if (_excludedStr) - set (_targetMsg "${_languagesStr} target ${_target} cotired ${_excludedStr}.") - else() - set (_targetMsg "${_languagesStr} target ${_target} cotired.") - endif() - endif() - set (${_targetMsgVar} "${_targetMsg}" PARENT_SCOPE) -endfunction() - -function (cotire_choose_target_languages _target _targetLanguagesVar _wholeTargetVar) - set (_languages ${ARGN}) - set (_allSourceFiles "") - set (_allExcludedSourceFiles "") - set (_allCotiredSourceFiles "") - set (_targetLanguages "") - set (_pchEligibleTargetLanguages "") - get_target_property(_targetType ${_target} TYPE) - get_target_property(_targetSourceFiles ${_target} SOURCES) - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - get_target_property(_targetAddSCU ${_target} COTIRE_ADD_UNITY_BUILD) - set (_disableMsg "") - foreach (_language ${_languages}) - get_target_property(_prefixHeader ${_target} COTIRE_${_language}_PREFIX_HEADER) - get_target_property(_unityBuildFile ${_target} COTIRE_${_language}_UNITY_SOURCE) - if (_prefixHeader OR _unityBuildFile) - message (STATUS "cotire: target ${_target} has already been cotired.") - set (${_targetLanguagesVar} "" PARENT_SCOPE) - return() - endif() - if (_targetUsePCH AND "${_language}" MATCHES "^C|CXX$" AND DEFINED CMAKE_${_language}_COMPILER_ID) - if (CMAKE_${_language}_COMPILER_ID) - cotire_check_precompiled_header_support("${_language}" "${_target}" _disableMsg) - if (_disableMsg) - set (_targetUsePCH FALSE) - endif() - endif() - endif() - set (_sourceFiles "") - set (_excludedSources "") - set (_cotiredSources "") - cotire_filter_language_source_files(${_language} ${_target} _sourceFiles _excludedSources _cotiredSources ${_targetSourceFiles}) - if (_sourceFiles OR _excludedSources OR _cotiredSources) - list (APPEND _targetLanguages ${_language}) - endif() - if (_sourceFiles) - list (APPEND _allSourceFiles ${_sourceFiles}) - endif() - list (LENGTH _sourceFiles _numberOfSources) - if (NOT _numberOfSources LESS ${COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES}) - list (APPEND _pchEligibleTargetLanguages ${_language}) - endif() - if (_excludedSources) - list (APPEND _allExcludedSourceFiles ${_excludedSources}) - endif() - if (_cotiredSources) - list (APPEND _allCotiredSourceFiles ${_cotiredSources}) - endif() - endforeach() - set (_targetMsgLevel STATUS) - if (NOT _targetLanguages) - string (REPLACE ";" " or " _languagesStr "${_languages}") - set (_disableMsg "No ${_languagesStr} source files.") - set (_targetUsePCH FALSE) - set (_targetAddSCU FALSE) - endif() - if (_targetUsePCH) - if (_allCotiredSourceFiles) - cotire_get_source_file_property_values(_cotireTargets COTIRE_TARGET ${_allCotiredSourceFiles}) - list (REMOVE_DUPLICATES _cotireTargets) - string (REPLACE ";" ", " _cotireTargetsStr "${_cotireTargets}") - set (_disableMsg "Target sources already include a precompiled header for target(s) ${_cotireTargets}.") - set (_disableMsg "${_disableMsg} Set target property COTIRE_ENABLE_PRECOMPILED_HEADER to FALSE for targets ${_target},") - set (_disableMsg "${_disableMsg} ${_cotireTargetsStr} to get a workable build system.") - set (_targetMsgLevel SEND_ERROR) - set (_targetUsePCH FALSE) - elseif (NOT _pchEligibleTargetLanguages) - set (_disableMsg "Too few applicable sources.") - set (_targetUsePCH FALSE) - elseif (XCODE AND _allExcludedSourceFiles) - # for Xcode, we cannot apply the precompiled header to individual sources, only to the whole target - set (_disableMsg "Exclusion of source files not supported for generator Xcode.") - set (_targetUsePCH FALSE) - elseif (XCODE AND "${_targetType}" STREQUAL "OBJECT_LIBRARY") - # for Xcode, we cannot apply the required PRE_BUILD action to generate the prefix header to an OBJECT_LIBRARY target - set (_disableMsg "Required PRE_BUILD action not supported for OBJECT_LIBRARY targets for generator Xcode.") - set (_targetUsePCH FALSE) - endif() - endif() - set_property(TARGET ${_target} PROPERTY COTIRE_ENABLE_PRECOMPILED_HEADER ${_targetUsePCH}) - set_property(TARGET ${_target} PROPERTY COTIRE_ADD_UNITY_BUILD ${_targetAddSCU}) - cotire_make_target_message(${_target} "${_targetLanguages}" "${_disableMsg}" _targetMsg ${_allExcludedSourceFiles}) - if (_targetMsg) - if (NOT DEFINED COTIREMSG_${_target}) - set (COTIREMSG_${_target} "") - endif() - if (COTIRE_VERBOSE OR NOT "${_targetMsgLevel}" STREQUAL "STATUS" OR - NOT "${COTIREMSG_${_target}}" STREQUAL "${_targetMsg}") - # cache message to avoid redundant messages on re-configure - set (COTIREMSG_${_target} "${_targetMsg}" CACHE INTERNAL "${_target} cotire message.") - message (${_targetMsgLevel} "${_targetMsg}") - endif() - endif() - list (LENGTH _targetLanguages _numberOfLanguages) - if (_numberOfLanguages GREATER 1 OR _allExcludedSourceFiles) - set (${_wholeTargetVar} FALSE PARENT_SCOPE) - else() - set (${_wholeTargetVar} TRUE PARENT_SCOPE) - endif() - set (${_targetLanguagesVar} ${_targetLanguages} PARENT_SCOPE) -endfunction() - -function (cotire_compute_unity_max_number_of_includes _target _maxIncludesVar) - set (_sourceFiles ${ARGN}) - get_target_property(_maxIncludes ${_target} COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES) - if (_maxIncludes MATCHES "(-j|--parallel|--jobs) ?([0-9]*)") - set (_numberOfThreads "${CMAKE_MATCH_2}") - if (NOT _numberOfThreads) - # use all available cores - ProcessorCount(_numberOfThreads) - endif() - list (LENGTH _sourceFiles _numberOfSources) - math (EXPR _maxIncludes "(${_numberOfSources} + ${_numberOfThreads} - 1) / ${_numberOfThreads}") - elseif (NOT _maxIncludes MATCHES "[0-9]+") - set (_maxIncludes 0) - endif() - if (COTIRE_DEBUG) - message (STATUS "${_target} unity source max includes: ${_maxIncludes}") - endif() - set (${_maxIncludesVar} ${_maxIncludes} PARENT_SCOPE) -endfunction() - -function (cotire_process_target_language _language _configurations _target _wholeTarget _cmdsVar) - set (${_cmdsVar} "" PARENT_SCOPE) - get_target_property(_targetSourceFiles ${_target} SOURCES) - set (_sourceFiles "") - set (_excludedSources "") - set (_cotiredSources "") - cotire_filter_language_source_files(${_language} ${_target} _sourceFiles _excludedSources _cotiredSources ${_targetSourceFiles}) - if (NOT _sourceFiles AND NOT _cotiredSources) - return() - endif() - set (_cmds "") - # check for user provided unity source file list - get_property(_unitySourceFiles TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE_INIT) - if (NOT _unitySourceFiles) - set (_unitySourceFiles ${_sourceFiles} ${_cotiredSources}) - endif() - cotire_generate_target_script( - ${_language} "${_configurations}" ${_target} _targetScript _targetConfigScript ${_unitySourceFiles}) - # set up unity files for parallel compilation - cotire_compute_unity_max_number_of_includes(${_target} _maxIncludes ${_unitySourceFiles}) - cotire_make_unity_source_file_paths(${_language} ${_target} ${_maxIncludes} _unityFiles ${_unitySourceFiles}) - list (LENGTH _unityFiles _numberOfUnityFiles) - if (_numberOfUnityFiles EQUAL 0) - return() - elseif (_numberOfUnityFiles GREATER 1) - cotire_setup_unity_generation_commands( - ${_language} ${_target} "${_targetScript}" "${_targetConfigScript}" "${_unityFiles}" _cmds ${_unitySourceFiles}) - endif() - # set up single unity file for prefix header generation - cotire_make_single_unity_source_file_path(${_language} ${_target} _unityFile) - cotire_setup_unity_generation_commands( - ${_language} ${_target} "${_targetScript}" "${_targetConfigScript}" "${_unityFile}" _cmds ${_unitySourceFiles}) - cotire_make_prefix_file_path(${_language} ${_target} _prefixFile) - # set up prefix header - if (_prefixFile) - # check for user provided prefix header files - get_property(_prefixHeaderFiles TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER_INIT) - if (_prefixHeaderFiles) - cotire_setup_prefix_generation_from_provided_command( - ${_language} ${_target} "${_targetConfigScript}" "${_prefixFile}" _cmds ${_prefixHeaderFiles}) - else() - cotire_setup_prefix_generation_from_unity_command( - ${_language} ${_target} "${_targetConfigScript}" "${_prefixFile}" "${_unityFile}" _cmds ${_unitySourceFiles}) - endif() - # check if selected language has enough sources at all - list (LENGTH _sourceFiles _numberOfSources) - if (_numberOfSources LESS ${COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES}) - set (_targetUsePCH FALSE) - else() - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - endif() - if (_targetUsePCH) - cotire_make_pch_file_path(${_language} ${_target} _pchFile) - if (_pchFile) - # first file in _sourceFiles is passed as the host file - cotire_setup_pch_file_compilation( - ${_language} ${_target} "${_targetConfigScript}" "${_prefixFile}" "${_pchFile}" ${_sourceFiles}) - cotire_setup_pch_file_inclusion( - ${_language} ${_target} ${_wholeTarget} "${_prefixFile}" "${_pchFile}" ${_sourceFiles}) - endif() - elseif (_prefixHeaderFiles) - # user provided prefix header must be included unconditionally - cotire_setup_prefix_file_inclusion(${_language} ${_target} "${_prefixFile}" ${_sourceFiles}) - endif() - endif() - # mark target as cotired for language - set_property(TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE "${_unityFiles}") - if (_prefixFile) - set_property(TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER "${_prefixFile}") - if (_targetUsePCH AND _pchFile) - set_property(TARGET ${_target} PROPERTY COTIRE_${_language}_PRECOMPILED_HEADER "${_pchFile}") - endif() - endif() - set (${_cmdsVar} ${_cmds} PARENT_SCOPE) -endfunction() - -function (cotire_setup_clean_target _target) - set (_cleanTargetName "${_target}${COTIRE_CLEAN_TARGET_SUFFIX}") - if (NOT TARGET "${_cleanTargetName}") - cotire_set_cmd_to_prologue(_cmds) - get_filename_component(_outputDir "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_CFG_INTDIR}" ABSOLUTE) - list (APPEND _cmds -P "${COTIRE_CMAKE_MODULE_FILE}" "cleanup" "${_outputDir}" "${COTIRE_INTDIR}" "${_target}") - add_custom_target(${_cleanTargetName} - COMMAND ${_cmds} - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - COMMENT "Cleaning up target ${_target} cotire generated files" - VERBATIM) - cotire_init_target("${_cleanTargetName}") - endif() -endfunction() - -function (cotire_setup_pch_target _languages _configurations _target) - if ("${CMAKE_GENERATOR}" MATCHES "Make|Ninja") - # for makefile based generators, we add a custom target to trigger the generation of the cotire related files - set (_dependsFiles "") - foreach (_language ${_languages}) - set (_props COTIRE_${_language}_PREFIX_HEADER COTIRE_${_language}_UNITY_SOURCE) - if (NOT CMAKE_${_language}_COMPILER_ID MATCHES "MSVC|Intel") - # Visual Studio and Intel only create precompiled header as a side effect - list (INSERT _props 0 COTIRE_${_language}_PRECOMPILED_HEADER) - endif() - cotire_get_first_set_property_value(_dependsFile TARGET ${_target} ${_props}) - if (_dependsFile) - list (APPEND _dependsFiles "${_dependsFile}") - endif() - endforeach() - if (_dependsFiles) - set (_pchTargetName "${_target}${COTIRE_PCH_TARGET_SUFFIX}") - add_custom_target("${_pchTargetName}" DEPENDS ${_dependsFiles}) - cotire_init_target("${_pchTargetName}") - cotire_add_to_pch_all_target(${_pchTargetName}) - endif() - else() - # for other generators, we add the "clean all" target to clean up the precompiled header - cotire_setup_clean_all_target() - endif() -endfunction() - -function (cotire_filter_object_libraries _target _objectLibrariesVar) - set (_objectLibraries "") - foreach (_source ${ARGN}) - if (_source MATCHES "^\\$$") - list (APPEND _objectLibraries "${_source}") - endif() - endforeach() - set (${_objectLibrariesVar} ${_objectLibraries} PARENT_SCOPE) -endfunction() - -function (cotire_collect_unity_target_sources _target _languages _unityTargetSourcesVar) - get_target_property(_targetSourceFiles ${_target} SOURCES) - set (_unityTargetSources ${_targetSourceFiles}) - foreach (_language ${_languages}) - get_property(_unityFiles TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE) - if (_unityFiles) - # remove source files that are included in the unity source - set (_sourceFiles "") - set (_excludedSources "") - set (_cotiredSources "") - cotire_filter_language_source_files(${_language} ${_target} _sourceFiles _excludedSources _cotiredSources ${_targetSourceFiles}) - if (_sourceFiles OR _cotiredSources) - list (REMOVE_ITEM _unityTargetSources ${_sourceFiles} ${_cotiredSources}) - endif() - # add unity source files instead - list (APPEND _unityTargetSources ${_unityFiles}) - endif() - endforeach() - get_target_property(_linkLibrariesStrategy ${_target} COTIRE_UNITY_LINK_LIBRARIES_INIT) - if ("${_linkLibrariesStrategy}" MATCHES "^COPY_UNITY$") - cotire_filter_object_libraries(${_target} _objectLibraries ${_targetSourceFiles}) - if (_objectLibraries) - cotire_map_libraries("${_linkLibrariesStrategy}" _unityObjectLibraries ${_objectLibraries}) - list (REMOVE_ITEM _unityTargetSources ${_objectLibraries}) - list (APPEND _unityTargetSources ${_unityObjectLibraries}) - endif() - endif() - set (${_unityTargetSourcesVar} ${_unityTargetSources} PARENT_SCOPE) -endfunction() - -function (cotire_setup_unity_target_pch_usage _languages _target) - foreach (_language ${_languages}) - get_property(_unityFiles TARGET ${_target} PROPERTY COTIRE_${_language}_UNITY_SOURCE) - if (_unityFiles) - get_property(_userPrefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER_INIT) - get_property(_prefixFile TARGET ${_target} PROPERTY COTIRE_${_language}_PREFIX_HEADER) - if (_userPrefixFile AND _prefixFile) - # user provided prefix header must be included unconditionally by unity sources - cotire_setup_prefix_file_inclusion(${_language} ${_target} "${_prefixFile}" ${_unityFiles}) - endif() - endif() - endforeach() -endfunction() - -function (cotire_setup_unity_build_target _languages _configurations _target) - get_target_property(_unityTargetName ${_target} COTIRE_UNITY_TARGET_NAME) - if (NOT _unityTargetName) - set (_unityTargetName "${_target}${COTIRE_UNITY_BUILD_TARGET_SUFFIX}") - endif() - # determine unity target sub type - get_target_property(_targetType ${_target} TYPE) - if ("${_targetType}" STREQUAL "EXECUTABLE") - set (_unityTargetSubType "") - elseif (_targetType MATCHES "(STATIC|SHARED|MODULE|OBJECT)_LIBRARY") - set (_unityTargetSubType "${CMAKE_MATCH_1}") - else() - message (WARNING "cotire: target ${_target} has unknown target type ${_targetType}.") - return() - endif() - # determine unity target sources - set (_unityTargetSources "") - cotire_collect_unity_target_sources(${_target} "${_languages}" _unityTargetSources) - # handle automatic Qt processing - get_target_property(_targetAutoMoc ${_target} AUTOMOC) - get_target_property(_targetAutoUic ${_target} AUTOUIC) - get_target_property(_targetAutoRcc ${_target} AUTORCC) - if (_targetAutoMoc OR _targetAutoUic OR _targetAutoRcc) - # if the original target sources are subject to CMake's automatic Qt processing, - # also include implicitly generated _automoc.cpp file - if (CMAKE_VERSION VERSION_LESS "3.8.0") - list (APPEND _unityTargetSources "${_target}_automoc.cpp") - set_property (SOURCE "${_target}_automoc.cpp" PROPERTY GENERATED TRUE) - else() - list (APPEND _unityTargetSources "${_target}_autogen/moc_compilation.cpp") - set_property (SOURCE "${_target}_autogen/moc_compilation.cpp" PROPERTY GENERATED TRUE) - endif() - endif() - # prevent AUTOMOC, AUTOUIC and AUTORCC properties from being set when the unity target is created - set (CMAKE_AUTOMOC OFF) - set (CMAKE_AUTOUIC OFF) - set (CMAKE_AUTORCC OFF) - if (COTIRE_DEBUG) - message (STATUS "add target ${_targetType} ${_unityTargetName} ${_unityTargetSubType} EXCLUDE_FROM_ALL ${_unityTargetSources}") - endif() - # generate unity target - if ("${_targetType}" STREQUAL "EXECUTABLE") - add_executable(${_unityTargetName} ${_unityTargetSubType} EXCLUDE_FROM_ALL ${_unityTargetSources}) - else() - add_library(${_unityTargetName} ${_unityTargetSubType} EXCLUDE_FROM_ALL ${_unityTargetSources}) - endif() - if ("${CMAKE_GENERATOR}" MATCHES "Visual Studio") - # depend on original target's automoc target, if it exists - if (TARGET ${_target}_automoc) - add_dependencies(${_unityTargetName} ${_target}_automoc) - endif() - else() - if (_targetAutoMoc OR _targetAutoUic OR _targetAutoRcc) - # depend on the original target's implicity generated _automoc target - if (CMAKE_VERSION VERSION_LESS "3.8.0") - add_dependencies(${_unityTargetName} ${_target}_automoc) - else() - add_dependencies(${_unityTargetName} ${_target}_autogen) - endif() - endif() - endif() - # copy output location properties - set (_outputDirProperties - ARCHIVE_OUTPUT_DIRECTORY ARCHIVE_OUTPUT_DIRECTORY_ - LIBRARY_OUTPUT_DIRECTORY LIBRARY_OUTPUT_DIRECTORY_ - RUNTIME_OUTPUT_DIRECTORY RUNTIME_OUTPUT_DIRECTORY_) - if (COTIRE_UNITY_OUTPUT_DIRECTORY) - set (_setDefaultOutputDir TRUE) - if (IS_ABSOLUTE "${COTIRE_UNITY_OUTPUT_DIRECTORY}") - set (_outputDir "${COTIRE_UNITY_OUTPUT_DIRECTORY}") - else() - # append relative COTIRE_UNITY_OUTPUT_DIRECTORY to target's actual output directory - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} ${_outputDirProperties}) - cotire_resolve_config_properties("${_configurations}" _properties ${_outputDirProperties}) - foreach (_property ${_properties}) - get_property(_outputDir TARGET ${_target} PROPERTY ${_property}) - if (_outputDir) - get_filename_component(_outputDir "${_outputDir}/${COTIRE_UNITY_OUTPUT_DIRECTORY}" ABSOLUTE) - set_property(TARGET ${_unityTargetName} PROPERTY ${_property} "${_outputDir}") - set (_setDefaultOutputDir FALSE) - endif() - endforeach() - if (_setDefaultOutputDir) - get_filename_component(_outputDir "${CMAKE_CURRENT_BINARY_DIR}/${COTIRE_UNITY_OUTPUT_DIRECTORY}" ABSOLUTE) - endif() - endif() - if (_setDefaultOutputDir) - set_target_properties(${_unityTargetName} PROPERTIES - ARCHIVE_OUTPUT_DIRECTORY "${_outputDir}" - LIBRARY_OUTPUT_DIRECTORY "${_outputDir}" - RUNTIME_OUTPUT_DIRECTORY "${_outputDir}") - endif() - else() - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - ${_outputDirProperties}) - endif() - # copy output name - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - ARCHIVE_OUTPUT_NAME ARCHIVE_OUTPUT_NAME_ - LIBRARY_OUTPUT_NAME LIBRARY_OUTPUT_NAME_ - OUTPUT_NAME OUTPUT_NAME_ - RUNTIME_OUTPUT_NAME RUNTIME_OUTPUT_NAME_ - PREFIX _POSTFIX SUFFIX - IMPORT_PREFIX IMPORT_SUFFIX) - # copy compile stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - COMPILE_DEFINITIONS COMPILE_DEFINITIONS_ - COMPILE_FLAGS COMPILE_OPTIONS - Fortran_FORMAT Fortran_MODULE_DIRECTORY - INCLUDE_DIRECTORIES - INTERPROCEDURAL_OPTIMIZATION INTERPROCEDURAL_OPTIMIZATION_ - POSITION_INDEPENDENT_CODE - C_COMPILER_LAUNCHER CXX_COMPILER_LAUNCHER - C_INCLUDE_WHAT_YOU_USE CXX_INCLUDE_WHAT_YOU_USE - C_VISIBILITY_PRESET CXX_VISIBILITY_PRESET VISIBILITY_INLINES_HIDDEN - C_CLANG_TIDY CXX_CLANG_TIDY) - # copy compile features - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - C_EXTENSIONS C_STANDARD C_STANDARD_REQUIRED - CXX_EXTENSIONS CXX_STANDARD CXX_STANDARD_REQUIRED - COMPILE_FEATURES) - # copy interface stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - COMPATIBLE_INTERFACE_BOOL COMPATIBLE_INTERFACE_NUMBER_MAX COMPATIBLE_INTERFACE_NUMBER_MIN - COMPATIBLE_INTERFACE_STRING - INTERFACE_COMPILE_DEFINITIONS INTERFACE_COMPILE_FEATURES INTERFACE_COMPILE_OPTIONS - INTERFACE_INCLUDE_DIRECTORIES INTERFACE_SOURCES - INTERFACE_POSITION_INDEPENDENT_CODE INTERFACE_SYSTEM_INCLUDE_DIRECTORIES - INTERFACE_AUTOUIC_OPTIONS NO_SYSTEM_FROM_IMPORTED) - # copy link stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - BUILD_WITH_INSTALL_RPATH INSTALL_RPATH INSTALL_RPATH_USE_LINK_PATH SKIP_BUILD_RPATH - LINKER_LANGUAGE LINK_DEPENDS LINK_DEPENDS_NO_SHARED - LINK_FLAGS LINK_FLAGS_ - LINK_INTERFACE_LIBRARIES LINK_INTERFACE_LIBRARIES_ - LINK_INTERFACE_MULTIPLICITY LINK_INTERFACE_MULTIPLICITY_ - LINK_SEARCH_START_STATIC LINK_SEARCH_END_STATIC - STATIC_LIBRARY_FLAGS STATIC_LIBRARY_FLAGS_ - NO_SONAME SOVERSION VERSION - LINK_WHAT_YOU_USE BUILD_RPATH) - # copy cmake stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - IMPLICIT_DEPENDS_INCLUDE_TRANSFORM RULE_LAUNCH_COMPILE RULE_LAUNCH_CUSTOM RULE_LAUNCH_LINK) - # copy Apple platform specific stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - BUNDLE BUNDLE_EXTENSION FRAMEWORK FRAMEWORK_VERSION INSTALL_NAME_DIR - MACOSX_BUNDLE MACOSX_BUNDLE_INFO_PLIST MACOSX_FRAMEWORK_INFO_PLIST MACOSX_RPATH - OSX_ARCHITECTURES OSX_ARCHITECTURES_ PRIVATE_HEADER PUBLIC_HEADER RESOURCE XCTEST - IOS_INSTALL_COMBINED XCODE_EXPLICIT_FILE_TYPE XCODE_PRODUCT_TYPE) - # copy Windows platform specific stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - GNUtoMS - COMPILE_PDB_NAME COMPILE_PDB_NAME_ - COMPILE_PDB_OUTPUT_DIRECTORY COMPILE_PDB_OUTPUT_DIRECTORY_ - PDB_NAME PDB_NAME_ PDB_OUTPUT_DIRECTORY PDB_OUTPUT_DIRECTORY_ - VS_DESKTOP_EXTENSIONS_VERSION VS_DOTNET_REFERENCES VS_DOTNET_TARGET_FRAMEWORK_VERSION - VS_GLOBAL_KEYWORD VS_GLOBAL_PROJECT_TYPES VS_GLOBAL_ROOTNAMESPACE - VS_IOT_EXTENSIONS_VERSION VS_IOT_STARTUP_TASK - VS_KEYWORD VS_MOBILE_EXTENSIONS_VERSION - VS_SCC_AUXPATH VS_SCC_LOCALPATH VS_SCC_PROJECTNAME VS_SCC_PROVIDER - VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION - VS_WINRT_COMPONENT VS_WINRT_EXTENSIONS VS_WINRT_REFERENCES - WIN32_EXECUTABLE WINDOWS_EXPORT_ALL_SYMBOLS - DEPLOYMENT_REMOTE_DIRECTORY VS_CONFIGURATION_TYPE - VS_SDK_REFERENCES VS_USER_PROPS VS_DEBUGGER_WORKING_DIRECTORY) - # copy Android platform specific stuff - cotire_copy_set_properties("${_configurations}" TARGET ${_target} ${_unityTargetName} - ANDROID_API ANDROID_API_MIN ANDROID_GUI - ANDROID_ANT_ADDITIONAL_OPTIONS ANDROID_ARCH ANDROID_ASSETS_DIRECTORIES - ANDROID_JAR_DEPENDENCIES ANDROID_JAR_DIRECTORIES ANDROID_JAVA_SOURCE_DIR - ANDROID_NATIVE_LIB_DEPENDENCIES ANDROID_NATIVE_LIB_DIRECTORIES - ANDROID_PROCESS_MAX ANDROID_PROGUARD ANDROID_PROGUARD_CONFIG_PATH - ANDROID_SECURE_PROPS_PATH ANDROID_SKIP_ANT_STEP ANDROID_STL_TYPE) - # use output name from original target - get_target_property(_targetOutputName ${_unityTargetName} OUTPUT_NAME) - if (NOT _targetOutputName) - set_property(TARGET ${_unityTargetName} PROPERTY OUTPUT_NAME "${_target}") - endif() - # use export symbol from original target - cotire_get_target_export_symbol("${_target}" _defineSymbol) - if (_defineSymbol) - set_property(TARGET ${_unityTargetName} PROPERTY DEFINE_SYMBOL "${_defineSymbol}") - if ("${_targetType}" STREQUAL "EXECUTABLE") - set_property(TARGET ${_unityTargetName} PROPERTY ENABLE_EXPORTS TRUE) - endif() - endif() - cotire_init_target(${_unityTargetName}) - cotire_add_to_unity_all_target(${_unityTargetName}) - set_property(TARGET ${_target} PROPERTY COTIRE_UNITY_TARGET_NAME "${_unityTargetName}") -endfunction(cotire_setup_unity_build_target) - -function (cotire_target _target) - set(_options "") - set(_oneValueArgs "") - set(_multiValueArgs LANGUAGES CONFIGURATIONS) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - if (NOT _option_LANGUAGES) - get_property (_option_LANGUAGES GLOBAL PROPERTY ENABLED_LANGUAGES) - endif() - if (NOT _option_CONFIGURATIONS) - cotire_get_configuration_types(_option_CONFIGURATIONS) - endif() - # check if cotire can be applied to target at all - cotire_is_target_supported(${_target} _isSupported) - if (NOT _isSupported) - get_target_property(_imported ${_target} IMPORTED) - get_target_property(_targetType ${_target} TYPE) - if (_imported) - message (WARNING "cotire: imported ${_targetType} target ${_target} cannot be cotired.") - else() - message (STATUS "cotire: ${_targetType} target ${_target} cannot be cotired.") - endif() - return() - endif() - # resolve alias - get_target_property(_aliasName ${_target} ALIASED_TARGET) - if (_aliasName) - if (COTIRE_DEBUG) - message (STATUS "${_target} is an alias. Applying cotire to aliased target ${_aliasName} instead.") - endif() - set (_target ${_aliasName}) - endif() - # check if target needs to be cotired for build type - # when using configuration types, the test is performed at build time - cotire_init_cotire_target_properties(${_target}) - if (NOT CMAKE_CONFIGURATION_TYPES) - if (CMAKE_BUILD_TYPE) - list (FIND _option_CONFIGURATIONS "${CMAKE_BUILD_TYPE}" _index) - else() - list (FIND _option_CONFIGURATIONS "None" _index) - endif() - if (_index EQUAL -1) - if (COTIRE_DEBUG) - message (STATUS "CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} not cotired (${_option_CONFIGURATIONS})") - endif() - return() - endif() - endif() - # when not using configuration types, immediately create cotire intermediate dir - if (NOT CMAKE_CONFIGURATION_TYPES) - cotire_get_intermediate_dir(_baseDir) - file (MAKE_DIRECTORY "${_baseDir}") - endif() - # choose languages that apply to the target - cotire_choose_target_languages("${_target}" _targetLanguages _wholeTarget ${_option_LANGUAGES}) - if (NOT _targetLanguages) - return() - endif() - set (_cmds "") - foreach (_language ${_targetLanguages}) - cotire_process_target_language("${_language}" "${_option_CONFIGURATIONS}" ${_target} ${_wholeTarget} _cmd) - if (_cmd) - list (APPEND _cmds ${_cmd}) - endif() - endforeach() - get_target_property(_targetAddSCU ${_target} COTIRE_ADD_UNITY_BUILD) - if (_targetAddSCU) - cotire_setup_unity_build_target("${_targetLanguages}" "${_option_CONFIGURATIONS}" ${_target}) - endif() - get_target_property(_targetUsePCH ${_target} COTIRE_ENABLE_PRECOMPILED_HEADER) - if (_targetUsePCH) - cotire_setup_target_pch_usage("${_targetLanguages}" ${_target} ${_wholeTarget} ${_cmds}) - cotire_setup_pch_target("${_targetLanguages}" "${_option_CONFIGURATIONS}" ${_target}) - if (_targetAddSCU) - cotire_setup_unity_target_pch_usage("${_targetLanguages}" ${_target}) - endif() - endif() - get_target_property(_targetAddCleanTarget ${_target} COTIRE_ADD_CLEAN) - if (_targetAddCleanTarget) - cotire_setup_clean_target(${_target}) - endif() -endfunction(cotire_target) - -function (cotire_map_libraries _strategy _mappedLibrariesVar) - set (_mappedLibraries "") - foreach (_library ${ARGN}) - if (_library MATCHES "^\\$$") - set (_libraryName "${CMAKE_MATCH_1}") - set (_linkOnly TRUE) - set (_objectLibrary FALSE) - elseif (_library MATCHES "^\\$$") - set (_libraryName "${CMAKE_MATCH_1}") - set (_linkOnly FALSE) - set (_objectLibrary TRUE) - else() - set (_libraryName "${_library}") - set (_linkOnly FALSE) - set (_objectLibrary FALSE) - endif() - if ("${_strategy}" MATCHES "COPY_UNITY") - cotire_is_target_supported(${_libraryName} _isSupported) - if (_isSupported) - # use target's corresponding unity target, if available - get_target_property(_libraryUnityTargetName ${_libraryName} COTIRE_UNITY_TARGET_NAME) - if (TARGET "${_libraryUnityTargetName}") - if (_linkOnly) - list (APPEND _mappedLibraries "$") - elseif (_objectLibrary) - list (APPEND _mappedLibraries "$") - else() - list (APPEND _mappedLibraries "${_libraryUnityTargetName}") - endif() - else() - list (APPEND _mappedLibraries "${_library}") - endif() - else() - list (APPEND _mappedLibraries "${_library}") - endif() - else() - list (APPEND _mappedLibraries "${_library}") - endif() - endforeach() - list (REMOVE_DUPLICATES _mappedLibraries) - set (${_mappedLibrariesVar} ${_mappedLibraries} PARENT_SCOPE) -endfunction() - -function (cotire_target_link_libraries _target) - cotire_is_target_supported(${_target} _isSupported) - if (NOT _isSupported) - return() - endif() - get_target_property(_unityTargetName ${_target} COTIRE_UNITY_TARGET_NAME) - if (TARGET "${_unityTargetName}") - get_target_property(_linkLibrariesStrategy ${_target} COTIRE_UNITY_LINK_LIBRARIES_INIT) - if (COTIRE_DEBUG) - message (STATUS "unity target ${_unityTargetName} link strategy: ${_linkLibrariesStrategy}") - endif() - if ("${_linkLibrariesStrategy}" MATCHES "^(COPY|COPY_UNITY)$") - get_target_property(_linkLibraries ${_target} LINK_LIBRARIES) - if (_linkLibraries) - cotire_map_libraries("${_linkLibrariesStrategy}" _unityLinkLibraries ${_linkLibraries}) - set_target_properties(${_unityTargetName} PROPERTIES LINK_LIBRARIES "${_unityLinkLibraries}") - if (COTIRE_DEBUG) - message (STATUS "unity target ${_unityTargetName} link libraries: ${_unityLinkLibraries}") - endif() - endif() - get_target_property(_interfaceLinkLibraries ${_target} INTERFACE_LINK_LIBRARIES) - if (_interfaceLinkLibraries) - cotire_map_libraries("${_linkLibrariesStrategy}" _unityLinkInterfaceLibraries ${_interfaceLinkLibraries}) - set_target_properties(${_unityTargetName} PROPERTIES INTERFACE_LINK_LIBRARIES "${_unityLinkInterfaceLibraries}") - if (COTIRE_DEBUG) - message (STATUS "unity target ${_unityTargetName} interface link libraries: ${_unityLinkInterfaceLibraries}") - endif() - endif() - endif() - endif() -endfunction(cotire_target_link_libraries) - -function (cotire_cleanup _binaryDir _cotireIntermediateDirName _targetName) - if (_targetName) - file (GLOB_RECURSE _cotireFiles "${_binaryDir}/${_targetName}*.*") - else() - file (GLOB_RECURSE _cotireFiles "${_binaryDir}/*.*") - endif() - # filter files in intermediate directory - set (_filesToRemove "") - foreach (_file ${_cotireFiles}) - get_filename_component(_dir "${_file}" DIRECTORY) - get_filename_component(_dirName "${_dir}" NAME) - if ("${_dirName}" STREQUAL "${_cotireIntermediateDirName}") - list (APPEND _filesToRemove "${_file}") - endif() - endforeach() - if (_filesToRemove) - if (COTIRE_VERBOSE) - message (STATUS "cleaning up ${_filesToRemove}") - endif() - file (REMOVE ${_filesToRemove}) - endif() -endfunction() - -function (cotire_init_target _targetName) - if (COTIRE_TARGETS_FOLDER) - set_target_properties(${_targetName} PROPERTIES FOLDER "${COTIRE_TARGETS_FOLDER}") - endif() - set_target_properties(${_targetName} PROPERTIES EXCLUDE_FROM_ALL TRUE) - if (MSVC_IDE) - set_target_properties(${_targetName} PROPERTIES EXCLUDE_FROM_DEFAULT_BUILD TRUE) - endif() -endfunction() - -function (cotire_add_to_pch_all_target _pchTargetName) - set (_targetName "${COTIRE_PCH_ALL_TARGET_NAME}") - if (NOT TARGET "${_targetName}") - add_custom_target("${_targetName}" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - VERBATIM) - cotire_init_target("${_targetName}") - endif() - cotire_setup_clean_all_target() - add_dependencies(${_targetName} ${_pchTargetName}) -endfunction() - -function (cotire_add_to_unity_all_target _unityTargetName) - set (_targetName "${COTIRE_UNITY_BUILD_ALL_TARGET_NAME}") - if (NOT TARGET "${_targetName}") - add_custom_target("${_targetName}" - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - VERBATIM) - cotire_init_target("${_targetName}") - endif() - cotire_setup_clean_all_target() - add_dependencies(${_targetName} ${_unityTargetName}) -endfunction() - -function (cotire_setup_clean_all_target) - set (_targetName "${COTIRE_CLEAN_ALL_TARGET_NAME}") - if (NOT TARGET "${_targetName}") - cotire_set_cmd_to_prologue(_cmds) - list (APPEND _cmds -P "${COTIRE_CMAKE_MODULE_FILE}" "cleanup" "${CMAKE_BINARY_DIR}" "${COTIRE_INTDIR}") - add_custom_target(${_targetName} - COMMAND ${_cmds} - WORKING_DIRECTORY "${CMAKE_BINARY_DIR}" - COMMENT "Cleaning up all cotire generated files" - VERBATIM) - cotire_init_target("${_targetName}") - endif() -endfunction() - -function (cotire) - set(_options "") - set(_oneValueArgs "") - set(_multiValueArgs LANGUAGES CONFIGURATIONS) - cmake_parse_arguments(_option "${_options}" "${_oneValueArgs}" "${_multiValueArgs}" ${ARGN}) - set (_targets ${_option_UNPARSED_ARGUMENTS}) - foreach (_target ${_targets}) - if (TARGET ${_target}) - cotire_target(${_target} LANGUAGES ${_option_LANGUAGES} CONFIGURATIONS ${_option_CONFIGURATIONS}) - else() - message (WARNING "cotire: ${_target} is not a target.") - endif() - endforeach() - foreach (_target ${_targets}) - if (TARGET ${_target}) - cotire_target_link_libraries(${_target}) - endif() - endforeach() -endfunction() - -if (CMAKE_SCRIPT_MODE_FILE) - - # cotire is being run in script mode - # locate -P on command args - set (COTIRE_ARGC -1) - foreach (_index RANGE ${CMAKE_ARGC}) - if (COTIRE_ARGC GREATER -1) - set (COTIRE_ARGV${COTIRE_ARGC} "${CMAKE_ARGV${_index}}") - math (EXPR COTIRE_ARGC "${COTIRE_ARGC} + 1") - elseif ("${CMAKE_ARGV${_index}}" STREQUAL "-P") - set (COTIRE_ARGC 0) - endif() - endforeach() - - # include target script if available - if ("${COTIRE_ARGV2}" MATCHES "\\.cmake$") - # the included target scripts sets up additional variables relating to the target (e.g., COTIRE_TARGET_SOURCES) - include("${COTIRE_ARGV2}") - endif() - - if (COTIRE_DEBUG) - message (STATUS "${COTIRE_ARGV0} ${COTIRE_ARGV1} ${COTIRE_ARGV2} ${COTIRE_ARGV3} ${COTIRE_ARGV4} ${COTIRE_ARGV5}") - endif() - - if (NOT COTIRE_BUILD_TYPE) - set (COTIRE_BUILD_TYPE "None") - endif() - string (TOUPPER "${COTIRE_BUILD_TYPE}" _upperConfig) - set (_includeDirs ${COTIRE_TARGET_INCLUDE_DIRECTORIES_${_upperConfig}}) - set (_systemIncludeDirs ${COTIRE_TARGET_SYSTEM_INCLUDE_DIRECTORIES_${_upperConfig}}) - set (_compileDefinitions ${COTIRE_TARGET_COMPILE_DEFINITIONS_${_upperConfig}}) - set (_compileFlags ${COTIRE_TARGET_COMPILE_FLAGS_${_upperConfig}}) - # check if target has been cotired for actual build type COTIRE_BUILD_TYPE - list (FIND COTIRE_TARGET_CONFIGURATION_TYPES "${COTIRE_BUILD_TYPE}" _index) - if (_index GREATER -1) - set (_sources ${COTIRE_TARGET_SOURCES}) - set (_sourcesDefinitions ${COTIRE_TARGET_SOURCES_COMPILE_DEFINITIONS_${_upperConfig}}) - else() - if (COTIRE_DEBUG) - message (STATUS "COTIRE_BUILD_TYPE=${COTIRE_BUILD_TYPE} not cotired (${COTIRE_TARGET_CONFIGURATION_TYPES})") - endif() - set (_sources "") - set (_sourcesDefinitions "") - endif() - set (_targetPreUndefs ${COTIRE_TARGET_PRE_UNDEFS}) - set (_targetPostUndefs ${COTIRE_TARGET_POST_UNDEFS}) - set (_sourcesPreUndefs ${COTIRE_TARGET_SOURCES_PRE_UNDEFS}) - set (_sourcesPostUndefs ${COTIRE_TARGET_SOURCES_POST_UNDEFS}) - - if ("${COTIRE_ARGV1}" STREQUAL "unity") - - if (XCODE) - # executing pre-build action under Xcode, check dependency on target script - set (_dependsOption DEPENDS "${COTIRE_ARGV2}") - else() - # executing custom command, no need to re-check for dependencies - set (_dependsOption "") - endif() - - cotire_select_unity_source_files("${COTIRE_ARGV3}" _sources ${_sources}) - - cotire_generate_unity_source( - "${COTIRE_ARGV3}" ${_sources} - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - SOURCES_COMPILE_DEFINITIONS ${_sourcesDefinitions} - PRE_UNDEFS ${_targetPreUndefs} - POST_UNDEFS ${_targetPostUndefs} - SOURCES_PRE_UNDEFS ${_sourcesPreUndefs} - SOURCES_POST_UNDEFS ${_sourcesPostUndefs} - ${_dependsOption}) - - elseif ("${COTIRE_ARGV1}" STREQUAL "prefix") - - if (XCODE) - # executing pre-build action under Xcode, check dependency on unity file and prefix dependencies - set (_dependsOption DEPENDS "${COTIRE_ARGV4}" ${COTIRE_TARGET_PREFIX_DEPENDS}) - else() - # executing custom command, no need to re-check for dependencies - set (_dependsOption "") - endif() - - set (_files "") - foreach (_index RANGE 4 ${COTIRE_ARGC}) - if (COTIRE_ARGV${_index}) - list (APPEND _files "${COTIRE_ARGV${_index}}") - endif() - endforeach() - - cotire_generate_prefix_header( - "${COTIRE_ARGV3}" ${_files} - COMPILER_LAUNCHER "${COTIRE_TARGET_${COTIRE_TARGET_LANGUAGE}_COMPILER_LAUNCHER}" - COMPILER_EXECUTABLE "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER}" - COMPILER_ARG1 ${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ARG1} - COMPILER_ID "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ID}" - COMPILER_VERSION "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_VERSION}" - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - IGNORE_PATH "${COTIRE_TARGET_IGNORE_PATH};${COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_PATH}" - INCLUDE_PATH ${COTIRE_TARGET_INCLUDE_PATH} - IGNORE_EXTENSIONS "${CMAKE_${COTIRE_TARGET_LANGUAGE}_SOURCE_FILE_EXTENSIONS};${COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS}" - INCLUDE_PRIORITY_PATH ${COTIRE_TARGET_INCLUDE_PRIORITY_PATH} - INCLUDE_DIRECTORIES ${_includeDirs} - SYSTEM_INCLUDE_DIRECTORIES ${_systemIncludeDirs} - COMPILE_DEFINITIONS ${_compileDefinitions} - COMPILE_FLAGS ${_compileFlags} - ${_dependsOption}) - - elseif ("${COTIRE_ARGV1}" STREQUAL "precompile") - - set (_files "") - foreach (_index RANGE 5 ${COTIRE_ARGC}) - if (COTIRE_ARGV${_index}) - list (APPEND _files "${COTIRE_ARGV${_index}}") - endif() - endforeach() - - cotire_precompile_prefix_header( - "${COTIRE_ARGV3}" "${COTIRE_ARGV4}" "${COTIRE_ARGV5}" - COMPILER_LAUNCHER "${COTIRE_TARGET_${COTIRE_TARGET_LANGUAGE}_COMPILER_LAUNCHER}" - COMPILER_EXECUTABLE "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER}" - COMPILER_ARG1 ${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ARG1} - COMPILER_ID "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_ID}" - COMPILER_VERSION "${CMAKE_${COTIRE_TARGET_LANGUAGE}_COMPILER_VERSION}" - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - INCLUDE_DIRECTORIES ${_includeDirs} - SYSTEM_INCLUDE_DIRECTORIES ${_systemIncludeDirs} - COMPILE_DEFINITIONS ${_compileDefinitions} - COMPILE_FLAGS ${_compileFlags}) - - elseif ("${COTIRE_ARGV1}" STREQUAL "combine") - - if (COTIRE_TARGET_LANGUAGE) - set (_combinedFile "${COTIRE_ARGV3}") - set (_startIndex 4) - else() - set (_combinedFile "${COTIRE_ARGV2}") - set (_startIndex 3) - endif() - set (_files "") - foreach (_index RANGE ${_startIndex} ${COTIRE_ARGC}) - if (COTIRE_ARGV${_index}) - list (APPEND _files "${COTIRE_ARGV${_index}}") - endif() - endforeach() - - if (XCODE) - # executing pre-build action under Xcode, check dependency on files to be combined - set (_dependsOption DEPENDS ${_files}) - else() - # executing custom command, no need to re-check for dependencies - set (_dependsOption "") - endif() - - if (COTIRE_TARGET_LANGUAGE) - cotire_generate_unity_source( - "${_combinedFile}" ${_files} - LANGUAGE "${COTIRE_TARGET_LANGUAGE}" - ${_dependsOption}) - else() - cotire_generate_unity_source("${_combinedFile}" ${_files} ${_dependsOption}) - endif() - - elseif ("${COTIRE_ARGV1}" STREQUAL "cleanup") - - cotire_cleanup("${COTIRE_ARGV2}" "${COTIRE_ARGV3}" "${COTIRE_ARGV4}") - - else() - message (FATAL_ERROR "cotire: unknown command \"${COTIRE_ARGV1}\".") - endif() - -else() - - # cotire is being run in include mode - # set up all variable and property definitions - - if (NOT DEFINED COTIRE_DEBUG_INIT) - if (DEFINED COTIRE_DEBUG) - set (COTIRE_DEBUG_INIT ${COTIRE_DEBUG}) - else() - set (COTIRE_DEBUG_INIT FALSE) - endif() - endif() - option (COTIRE_DEBUG "Enable cotire debugging output?" ${COTIRE_DEBUG_INIT}) - - if (NOT DEFINED COTIRE_VERBOSE_INIT) - if (DEFINED COTIRE_VERBOSE) - set (COTIRE_VERBOSE_INIT ${COTIRE_VERBOSE}) - else() - set (COTIRE_VERBOSE_INIT FALSE) - endif() - endif() - option (COTIRE_VERBOSE "Enable cotire verbose output?" ${COTIRE_VERBOSE_INIT}) - - set (COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS "inc;inl;ipp" CACHE STRING - "Ignore headers with the listed file extensions from the generated prefix header.") - - set (COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_PATH "" CACHE STRING - "Ignore headers from these directories when generating the prefix header.") - - set (COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS "m;mm" CACHE STRING - "Ignore sources with the listed file extensions from the generated unity source.") - - set (COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES "3" CACHE STRING - "Minimum number of sources in target required to enable use of precompiled header.") - - if (NOT DEFINED COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT) - if (DEFINED COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES) - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT ${COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES}) - elseif ("${CMAKE_GENERATOR}" MATCHES "JOM|Ninja|Visual Studio") - # enable parallelization for generators that run multiple jobs by default - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT "-j") - else() - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT "0") - endif() - endif() - set (COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES "${COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES_INIT}" CACHE STRING - "Maximum number of source files to include in a single unity source file.") - - if (NOT COTIRE_PREFIX_HEADER_FILENAME_SUFFIX) - set (COTIRE_PREFIX_HEADER_FILENAME_SUFFIX "_prefix") - endif() - if (NOT COTIRE_UNITY_SOURCE_FILENAME_SUFFIX) - set (COTIRE_UNITY_SOURCE_FILENAME_SUFFIX "_unity") - endif() - if (NOT COTIRE_INTDIR) - set (COTIRE_INTDIR "cotire") - endif() - if (NOT COTIRE_PCH_ALL_TARGET_NAME) - set (COTIRE_PCH_ALL_TARGET_NAME "all_pch") - endif() - if (NOT COTIRE_UNITY_BUILD_ALL_TARGET_NAME) - set (COTIRE_UNITY_BUILD_ALL_TARGET_NAME "all_unity") - endif() - if (NOT COTIRE_CLEAN_ALL_TARGET_NAME) - set (COTIRE_CLEAN_ALL_TARGET_NAME "clean_cotire") - endif() - if (NOT COTIRE_CLEAN_TARGET_SUFFIX) - set (COTIRE_CLEAN_TARGET_SUFFIX "_clean_cotire") - endif() - if (NOT COTIRE_PCH_TARGET_SUFFIX) - set (COTIRE_PCH_TARGET_SUFFIX "_pch") - endif() - if (MSVC) - # MSVC default PCH memory scaling factor of 100 percent (75 MB) is too small for template heavy C++ code - # use a bigger default factor of 170 percent (128 MB) - if (NOT DEFINED COTIRE_PCH_MEMORY_SCALING_FACTOR) - set (COTIRE_PCH_MEMORY_SCALING_FACTOR "170") - endif() - endif() - if (NOT COTIRE_UNITY_BUILD_TARGET_SUFFIX) - set (COTIRE_UNITY_BUILD_TARGET_SUFFIX "_unity") - endif() - if (NOT DEFINED COTIRE_TARGETS_FOLDER) - set (COTIRE_TARGETS_FOLDER "cotire") - endif() - if (NOT DEFINED COTIRE_UNITY_OUTPUT_DIRECTORY) - if ("${CMAKE_GENERATOR}" MATCHES "Ninja") - # generated Ninja build files do not work if the unity target produces the same output file as the cotired target - set (COTIRE_UNITY_OUTPUT_DIRECTORY "unity") - else() - set (COTIRE_UNITY_OUTPUT_DIRECTORY "") - endif() - endif() - - # define cotire cache variables - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_PATH" - BRIEF_DOCS "Ignore headers from these directories when generating the prefix header." - FULL_DOCS - "The variable can be set to a semicolon separated list of include directories." - "If a header file is found in one of these directories or sub-directories, it will be excluded from the generated prefix header." - "If not defined, defaults to empty list." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS" - BRIEF_DOCS "Ignore includes with the listed file extensions from the generated prefix header." - FULL_DOCS - "The variable can be set to a semicolon separated list of file extensions." - "If a header file extension matches one in the list, it will be excluded from the generated prefix header." - "Includes with an extension in CMAKE__SOURCE_FILE_EXTENSIONS are always ignored." - "If not defined, defaults to inc;inl;ipp." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS" - BRIEF_DOCS "Exclude sources with the listed file extensions from the generated unity source." - FULL_DOCS - "The variable can be set to a semicolon separated list of file extensions." - "If a source file extension matches one in the list, it will be excluded from the generated unity source file." - "Source files with an extension in CMAKE__IGNORE_EXTENSIONS are always excluded." - "If not defined, defaults to m;mm." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES" - BRIEF_DOCS "Minimum number of sources in target required to enable use of precompiled header." - FULL_DOCS - "The variable can be set to an integer > 0." - "If a target contains less than that number of source files, cotire will not enable the use of the precompiled header for the target." - "If not defined, defaults to 3." - ) - - define_property( - CACHED_VARIABLE PROPERTY "COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES" - BRIEF_DOCS "Maximum number of source files to include in a single unity source file." - FULL_DOCS - "This may be set to an integer >= 0." - "If 0, cotire will only create a single unity source file." - "If a target contains more than that number of source files, cotire will create multiple unity source files for it." - "Can be set to \"-j\" to optimize the count of unity source files for the number of available processor cores." - "Can be set to \"-j jobs\" to optimize the number of unity source files for the given number of simultaneous jobs." - "Is used to initialize the target property COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES." - "Defaults to \"-j\" for the generators Visual Studio, JOM or Ninja. Defaults to 0 otherwise." - ) - - # define cotire directory properties - - define_property( - DIRECTORY PROPERTY "COTIRE_ENABLE_PRECOMPILED_HEADER" - BRIEF_DOCS "Modify build command of cotired targets added in this directory to make use of the generated precompiled header." - FULL_DOCS - "See target property COTIRE_ENABLE_PRECOMPILED_HEADER." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_ADD_UNITY_BUILD" - BRIEF_DOCS "Add a new target that performs a unity build for cotired targets added in this directory." - FULL_DOCS - "See target property COTIRE_ADD_UNITY_BUILD." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_ADD_CLEAN" - BRIEF_DOCS "Add a new target that cleans all cotire generated files for cotired targets added in this directory." - FULL_DOCS - "See target property COTIRE_ADD_CLEAN." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_PREFIX_HEADER_IGNORE_PATH" - BRIEF_DOCS "Ignore headers from these directories when generating the prefix header." - FULL_DOCS - "See target property COTIRE_PREFIX_HEADER_IGNORE_PATH." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PATH" - BRIEF_DOCS "Honor headers from these directories when generating the prefix header." - FULL_DOCS - "See target property COTIRE_PREFIX_HEADER_INCLUDE_PATH." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH" - BRIEF_DOCS "Header paths matching one of these directories are put at the top of the prefix header." - FULL_DOCS - "See target property COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_SOURCE_PRE_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file before the inclusion of each source file." - FULL_DOCS - "See target property COTIRE_UNITY_SOURCE_PRE_UNDEFS." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_SOURCE_POST_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file after the inclusion of each source file." - FULL_DOCS - "See target property COTIRE_UNITY_SOURCE_POST_UNDEFS." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES" - BRIEF_DOCS "Maximum number of source files to include in a single unity source file." - FULL_DOCS - "See target property COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES." - ) - - define_property( - DIRECTORY PROPERTY "COTIRE_UNITY_LINK_LIBRARIES_INIT" - BRIEF_DOCS "Define strategy for setting up the unity target's link libraries." - FULL_DOCS - "See target property COTIRE_UNITY_LINK_LIBRARIES_INIT." - ) - - # define cotire target properties - - define_property( - TARGET PROPERTY "COTIRE_ENABLE_PRECOMPILED_HEADER" INHERITED - BRIEF_DOCS "Modify this target's build command to make use of the generated precompiled header." - FULL_DOCS - "If this property is set to TRUE, cotire will modify the build command to make use of the generated precompiled header." - "Irrespective of the value of this property, cotire will setup custom commands to generate the unity source and prefix header for the target." - "For makefile based generators cotire will also set up a custom target to manually invoke the generation of the precompiled header." - "The target name will be set to this target's name with the suffix _pch appended." - "Inherited from directory." - "Defaults to TRUE." - ) - - define_property( - TARGET PROPERTY "COTIRE_ADD_UNITY_BUILD" INHERITED - BRIEF_DOCS "Add a new target that performs a unity build for this target." - FULL_DOCS - "If this property is set to TRUE, cotire creates a new target of the same type that uses the generated unity source file instead of the target sources." - "Most of the relevant target properties will be copied from this target to the new unity build target." - "Target dependencies and linked libraries have to be manually set up for the new unity build target." - "The unity target name will be set to this target's name with the suffix _unity appended." - "Inherited from directory." - "Defaults to TRUE." - ) - - define_property( - TARGET PROPERTY "COTIRE_ADD_CLEAN" INHERITED - BRIEF_DOCS "Add a new target that cleans all cotire generated files for this target." - FULL_DOCS - "If this property is set to TRUE, cotire creates a new target that clean all files (unity source, prefix header, precompiled header)." - "The clean target name will be set to this target's name with the suffix _clean_cotire appended." - "Inherited from directory." - "Defaults to FALSE." - ) - - define_property( - TARGET PROPERTY "COTIRE_PREFIX_HEADER_IGNORE_PATH" INHERITED - BRIEF_DOCS "Ignore headers from these directories when generating the prefix header." - FULL_DOCS - "The property can be set to a list of directories." - "If a header file is found in one of these directories or sub-directories, it will be excluded from the generated prefix header." - "Inherited from directory." - "If not set, this property is initialized to \${CMAKE_SOURCE_DIR};\${CMAKE_BINARY_DIR}." - ) - - define_property( - TARGET PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PATH" INHERITED - BRIEF_DOCS "Honor headers from these directories when generating the prefix header." - FULL_DOCS - "The property can be set to a list of directories." - "If a header file is found in one of these directories or sub-directories, it will be included in the generated prefix header." - "If a header file is both selected by COTIRE_PREFIX_HEADER_IGNORE_PATH and COTIRE_PREFIX_HEADER_INCLUDE_PATH," - "the option which yields the closer relative path match wins." - "Inherited from directory." - "If not set, this property is initialized to the empty list." - ) - - define_property( - TARGET PROPERTY "COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH" INHERITED - BRIEF_DOCS "Header paths matching one of these directories are put at the top of prefix header." - FULL_DOCS - "The property can be set to a list of directories." - "Header file paths matching one of these directories will be inserted at the beginning of the generated prefix header." - "Header files are sorted according to the order of the directories in the property." - "If not set, this property is initialized to the empty list." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_SOURCE_PRE_UNDEFS" INHERITED - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file before the inclusion of each target source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file before each target source file." - "Inherited from directory." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_SOURCE_POST_UNDEFS" INHERITED - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file after the inclusion of each target source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file after each target source file." - "Inherited from directory." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES" INHERITED - BRIEF_DOCS "Maximum number of source files to include in a single unity source file." - FULL_DOCS - "This may be set to an integer > 0." - "If a target contains more than that number of source files, cotire will create multiple unity build files for it." - "If not set, cotire will only create a single unity source file." - "Inherited from directory." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE__UNITY_SOURCE_INIT" - BRIEF_DOCS "User provided unity source file to be used instead of the automatically generated one." - FULL_DOCS - "If set, cotire will only add the given file(s) to the generated unity source file." - "If not set, cotire will add all the target source files to the generated unity source file." - "The property can be set to a user provided unity source file." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE__PREFIX_HEADER_INIT" - BRIEF_DOCS "User provided prefix header file to be used instead of the automatically generated one." - FULL_DOCS - "If set, cotire will add the given header file(s) to the generated prefix header file." - "If not set, cotire will generate a prefix header by tracking the header files included by the unity source file." - "The property can be set to a user provided prefix header file (e.g., stdafx.h)." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_LINK_LIBRARIES_INIT" INHERITED - BRIEF_DOCS "Define strategy for setting up unity target's link libraries." - FULL_DOCS - "If this property is empty or set to NONE, the generated unity target's link libraries have to be set up manually." - "If this property is set to COPY, the unity target's link libraries will be copied from this target." - "If this property is set to COPY_UNITY, the unity target's link libraries will be copied from this target with considering existing unity targets." - "Inherited from directory." - "Defaults to empty." - ) - - define_property( - TARGET PROPERTY "COTIRE__UNITY_SOURCE" - BRIEF_DOCS "Read-only property. The generated unity source file(s)." - FULL_DOCS - "cotire sets this property to the path of the generated single computation unit source file for the target." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE__PREFIX_HEADER" - BRIEF_DOCS "Read-only property. The generated prefix header file." - FULL_DOCS - "cotire sets this property to the full path of the generated language prefix header for the target." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE__PRECOMPILED_HEADER" - BRIEF_DOCS "Read-only property. The generated precompiled header file." - FULL_DOCS - "cotire sets this property to the full path of the generated language precompiled header binary for the target." - "Defaults to empty string." - ) - - define_property( - TARGET PROPERTY "COTIRE_UNITY_TARGET_NAME" - BRIEF_DOCS "The name of the generated unity build target corresponding to this target." - FULL_DOCS - "This property can be set to the desired name of the unity target that will be created by cotire." - "If not set, the unity target name will be set to this target's name with the suffix _unity appended." - "After this target has been processed by cotire, the property is set to the actual name of the generated unity target." - "Defaults to empty string." - ) - - # define cotire source properties - - define_property( - SOURCE PROPERTY "COTIRE_EXCLUDED" - BRIEF_DOCS "Do not modify source file's build command." - FULL_DOCS - "If this property is set to TRUE, the source file's build command will not be modified to make use of the precompiled header." - "The source file will also be excluded from the generated unity source file." - "Source files that have their COMPILE_FLAGS property set will be excluded by default." - "Defaults to FALSE." - ) - - define_property( - SOURCE PROPERTY "COTIRE_DEPENDENCY" - BRIEF_DOCS "Add this source file to dependencies of the automatically generated prefix header file." - FULL_DOCS - "If this property is set to TRUE, the source file is added to dependencies of the generated prefix header file." - "If the file is modified, cotire will re-generate the prefix header source upon build." - "Defaults to FALSE." - ) - - define_property( - SOURCE PROPERTY "COTIRE_UNITY_SOURCE_PRE_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file before the inclusion of this source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file before this file is included." - "Defaults to empty string." - ) - - define_property( - SOURCE PROPERTY "COTIRE_UNITY_SOURCE_POST_UNDEFS" - BRIEF_DOCS "Preprocessor undefs to place in the generated unity source file after the inclusion of this source file." - FULL_DOCS - "This may be set to a semicolon-separated list of preprocessor symbols." - "cotire will add corresponding #undef directives to the generated unit source file after this file is included." - "Defaults to empty string." - ) - - define_property( - SOURCE PROPERTY "COTIRE_START_NEW_UNITY_SOURCE" - BRIEF_DOCS "Start a new unity source file which includes this source file as the first one." - FULL_DOCS - "If this property is set to TRUE, cotire will complete the current unity file and start a new one." - "The new unity source file will include this source file as the first one." - "This property essentially works as a separator for unity source files." - "Defaults to FALSE." - ) - - define_property( - SOURCE PROPERTY "COTIRE_TARGET" - BRIEF_DOCS "Read-only property. Mark this source file as cotired for the given target." - FULL_DOCS - "cotire sets this property to the name of target, that the source file's build command has been altered for." - "Defaults to empty string." - ) - - message (STATUS "cotire ${COTIRE_CMAKE_MODULE_VERSION} loaded.") - -endif() diff --git a/src/ANCREC.CPP b/src/ANCREC.CPP index af15809a9..854a3aafe 100644 --- a/src/ANCREC.CPP +++ b/src/ANCREC.CPP @@ -26,13 +26,14 @@ // do statSetup() setup from constructor: would fit uses; rcdef changes needed? // above comment is pre-multi-run (1993), less clear with multi-run and DLL use. -#include - +#include "cnglob.h" +#include "ancrec.h" #include "cse.h" -#include // MH_X0050 -#include +#include "msghans.h" // MH_X0050 +#include "messages.h" // msgIsHan +#include "exman.h" #include "cvpak.h" -#include // SFIR +#include "srd.h" // SFIR //*************************************************************************************************************************** @@ -390,6 +391,254 @@ RC record::CkSet( // verify that required member has been set } return balErrCount; } // record::ReportBalErrorsIf + + +/////////////////////////////////////////////////////////////////////////////// +// record data checking member functions +/////////////////////////////////////////////////////////////////////////////// +RC record::limitCheck( // range check, issue warning or error msg + int fn, // field + double vMin, // min allowed value + double vMax, // max allowed value + double vMinWarn /*=-DBL_MAX*/, // min for warning + double vMaxWarn /*=DBL_MAX*/) // max for warning +// return RCOK if field not set or value is in range or warning msg +// else RCxx if value out of range (msg issued) +{ + RC rc = RCOK; + if (IsVal(fn)) + { + int dt = DType(fn); + void* pV = field(fn); + double v = 0.; + if (dt == DTFLOAT) + v = *(FLOAT*)pV; + else if (dt == DTDBL) + v = *(DBL*)pV; + else + err(PWRN, "record::limitCheck -- unsupported dt=%d", dt); + if (v < vMin || v > vMax) + rc = oer("%s (%g) must be in range %g - %g", + mbrIdTx(fn), v, vMin, vMax); + else if (v < vMinWarn || v > vMaxWarn) + { // warning (do not return RCBAD) + // use vMin / vMax instead of default DBL_MAX (avoid showing 10e+308) + // if here, at most one can be DBL_MAX + if (vMinWarn == -DBL_MAX) + vMinWarn = vMin; + else if (vMaxWarn == DBL_MAX) + vMaxWarn = vMax; + oWarn("dubious %s (%g) typically should be in range %g - %g", + mbrIdTx(fn), v, vMinWarn, vMaxWarn); + } + } + return rc; +} // record::limitCheck +//----------------------------------------------------------------------------- +RC record::limitCheckFix( // range check, msg, set to min/max + int fn, // field + float vMin, // min allowed value + float vMax, // max allowed value + int erOp /*=ERR*/) // WRN/ERR/IGN etc + // note IGNX bit: limit only (don't msg) +// return RCOK if field not set or value is in range or warning msg +// else RCxx if value out of range (msg issued) +{ + RC rc = RCOK; + void* p = field(fn); + if (!ISNANDLEP(p)) + { + float* pV = (float*)p; + float v = *pV; + if (v < vMin || v > vMax) + { + rc = orMsg(erOp, "%s (%g) must be in range %g - %g", + mbrIdTx(fn), v, vMin, vMax); + *pV = bracket(vMin, v, vMax); + } + } + return rc; +} // record::limitCheck +//============================================================================= + +/////////////////////////////////////////////////////////////////////////////// +// 'record' MEMBER FUNCTIONS TO REQUIRE/DISALLOW FIELDS (class declaration: ancrec.h) +/////////////////////////////////////////////////////////////////////////////// +RC record::checkN( // general purpose check multiple fields + const char* when, // message insert. message handle ok (see messages.cpp). + RC(record::* checkFcn)(int fn, const char* when), // check function called for each field + va_list ap) // int field numbers, 0 ends list REMEMBER THE 0! +{ + RC rc = RCOK; + char whenBuf[1000]; + if (!msgIsHan(when)) // not if handle given + if (when) // copy arg to local buffer in case in Tmpstr[], ... + when = strncpy0(whenBuf, when, sizeof(whenBuf)); // so any (possible future) strtprintf's in following loop + // won't overwrite it, 7-92. + for (; ; ) + { + int fn = va_arg(ap, int); + if (!fn) + break; + if (fn > 1024) + rc |= oer((char*)MH_S0495, // "cncult2.cpp:%s Internal error: field # %nd: probable unterminated arg list" + "checkN", fn); + rc |= (this->*checkFcn)(fn, when); + } + return rc; +} // checkN +//----------------------------------------------------------------------------- +RC record::disallowN( // issue "not allowed" message for each given field in 0-terminated list of field numbers + const char* when /*=NULL*/, // message insert. message handle ok (see messages.cpp). + ...) // int field numbers, 0 ends list REMEMBER THE 0! +{ + va_list ap; + va_start(ap, when); + RC rc = checkN(when, &record::disallow, ap); + return rc; +} // disallowN +//----------------------------------------------------------------------------- +RC record::disallow( // issue message if field is given + int fn, + const char* when /*=NULL*/) // message insert, worded for work context "Can't give ", handle ok +{ + if (IsSet(fn)) // if value for field given in user input (test field status byte) + return cantGiveEr(fn, when); + return RCOK; +} // disallow +//----------------------------------------------------------------------------- +RC record::requireN( // issue "missing" message for each omitted field in 0-terminated list of field numbers + const char* when /*=NULL*/, // message insert (message handle ok) + ...) // int field numbers, 0 ends list REMEMBER THE 0! +{ + va_list ap; + va_start(ap, when); + RC rc = checkN(when, &record::require, ap); + return rc; +} // requireN +//----------------------------------------------------------------------------- +RC record::require( // issue message if field is not given + int fn, + const char* when /*=NULL*/) // NULL or message insert (msghan ok), worded for work context " missing: required " +{ + if (!IsSet(fn)) // if value for field not given in user input + return notGivenEr(fn, when); + return RCOK; +} // require +//------------------------------------------------------------------------------- +RC record::ignoreN( // issue "ignored" message for each given field in 0-terminated list of field numbers + const char* when /*=NULL*/, // message insert. message handle ok (see messages.cpp). + ...) // int field numbers, 0 ends list REMEMBER THE 0! +{ + va_list ap; + va_start(ap, when); + RC rc = checkN(when, &record::ignore, ap); + return rc; +} // ignoreN +//----------------------------------------------------------------------------- +RC record::ignore( // issue message if field is given + int fn, + const char* when /*=NULL*/) // message insert, worded for work context "Can't give ", handle ok +{ + if (IsSet(fn)) // if value for field given in user input + return ignoreInfo(fn, when); + return RCOK; +} // ignore +//============================================================================ + +/**************************************************************************************************************************** +* 'record' MEMBER FUNCTIONS TO MAKE CHANGE FLAG ENTRIES IN RUNTIME TABLES (class declaration: ancrec.h) +****************************************************************************************************************************/ +void CDEC record::chafSelf( // say increment change flag IN SAME RECORD on change in list of fields of record + SI chafFn, // field NUMBER of change flag: an SI field in same record + ...) // 0-terminated list of field numbers in record to monitor for change if contain expressions +{ + va_list ap; + va_start(ap, chafFn); + chafNV(this->b, ss, b->fir[chafFn].off, ap); +} // record::chafSelf +//============================================================================================================================ +void CDEC record::chafN( // say increment specified flag during run on change in list of fields in curr record + + BP b, TI i, USI off, // location of SI change flag: anchor, record subscript, offset in record + ...) // 0-terminated list of field numbers + +/* for each given field which contains an expression handle, make expression manager runtime table entry + to increment flag at b-i-off when value of that expression changes. */ +{ + va_list ap; + va_start(ap, off); + chafNV(b, i, off, ap); +} // record::chafN +//=========================================================================== +void record::chafNV( // say increment specified flag during run on change in var list of fields in curr record + + BP b, TI i, USI off, // location of SI change flag: anchor, record subscript, offset in record + va_list ap) // pointer to 0-terminated list of field numbers + +// var arg list level for flexibility +{ + for (; ; ) + { + int fn = va_arg(ap, int); + if (!fn) + break; + if (fn > 1024) + oer((char*)MH_S0495, // "cncult2.cpp:%s Internal error: field # %d: probable unterminated arg list" + "chavNV", (INT)fn); + addChafIf((NANDAT*)field(fn), b->ancN, i, off); /* test pointed to field contents, add increment-on-change + table entry if is expr handle. exman.cpp. */ + } +} // record::chafNV +//============================================================================= + +/////////////////////////////////////////////////////////////////////////////// +// FUNCTIONS TO ISSUE SPECIFIC ERROR MESSAGES +/////////////////////////////////////////////////////////////////////////////// +//----------------------------------------------------------------------------- +RC record::cantGiveEr( // issue message (using ooer) for disallowed field that user gave + int fn, + const char* when /*=NULL*/) // NULL or message insert, worded for work context "Can't give " +{ + return ooer(fn, // message for record & field if 1st error for field, & flag bad. + (char*)MH_S0496, // "Can't give '%s' %s" + mbrIdTx(fn), // input name (id) + when ? strtprintf(when) : ""); // user's explanatory insert, eg "when no local heat". + // use strtprintf to retrieve text (to Tmpstr) if handle given. +} // cantGiveEr +//----------------------------------------------------------------------------- +RC record::notGivenEr( // issue message (using ooer) for disallowed field that user gave + int fn, + const char* when /*=NULL*/) // NULL or message insert, worded for work context " missing: required " +{ + if (when) + return ooer(fn, // message if 1st error for record & field, & flag field bad + (char*)MH_S0497, // handle of message "'%s' missing: required %s" + mbrIdTx(fn), // input name (id) + strtprintf(when)); // user's explanatory insert, eg "when tuTLh given" + // use strtprintf to retrieve text (to Tmpstr) if handle given. + return ooer(fn, (char*)MH_S0498, // "'%s' missing" + mbrIdTx(fn)); +} // record::notGivenEr +//----------------------------------------------------------------------------- +RC record::ignoreInfo( // issue info message for ignored field + int fn, + const char* when /*=NULL*/) // NULL or message insert + // worded for context " is ignored " +{ + const char* msg = strtprintf( + when ? "'%s' is ignored %s" : "ignoring '%s'", + mbrIdTx(fn), + strtprintf(when)); // when might be handle + return oerI(1, 1, 2, msg, NULL); // do msg using vbl arg list flavor of oer +} // record::ignoreInfo +//----------------------------------------------------------------------------- +RC record::notGzEr(int fn) // issue error message for field not greater than 0. finds user name in CULTs. +{ + return ooer(fn, (char*)MH_S0499, mbrIdTx(fn)); // "'%s' must be > 0" +} + + //============================================================================= /////////////////////////////////////////////////////////////////////////////// diff --git a/src/ANCREC.H b/src/ANCREC.H index 5083d6b10..3f419db50 100644 --- a/src/ANCREC.H +++ b/src/ANCREC.H @@ -228,7 +228,9 @@ class record // base class for records // input-checking support functions in cncult2.cpp // require/disallow fields - RC checkN(const char* when, RC (*checkFcn)(int fn, const char* when), va_list ap); + // RC checkN(const char* when, RC (*checkFcn)(record* pRec, int fn, const char* when), va_list ap); + // typedef RC (record::* RecCheckFcn)(int fn, const char* when); + RC checkN(const char* when, RC(record::* checkFcn)(int fn, const char* when), va_list ap); RC disallowN( const char* when=NULL, ...); RC disallow( int fn, const char* when); RC requireN( const char* when=NULL, ...); diff --git a/src/CGRESULT.CPP b/src/CGRESULT.CPP index b11f1c8bb..7e5587b2c 100644 --- a/src/CGRESULT.CPP +++ b/src/CGRESULT.CPP @@ -511,18 +511,7 @@ void FC cgReportsDaySetup() // Init all zns re day/hour/subhour reports this day RLUP( DvriB, dvrip) // loop over DVRI records (generated by cncult4.cpp) { // Test whether report active on current simulation date. - // To handle runs and reports that cross year end, eg Dec 1 to Jan 31, ie end Day Of Year < start, - // add 365 to dates < run start, ie in 2nd year of run. - DOY jDay = Top.jDay; - if (jDay < Top.tp_begDay) - jDay += 365; - DOY rpDayBeg = dvrip->rpDayBeg; - if (rpDayBeg < Top.tp_begDay) - rpDayBeg += 365; - DOY rpDayEnd = dvrip->rpDayEnd; - if (rpDayEnd < Top.tp_begDay) - rpDayEnd += 365; - if (jDay >= rpDayBeg && jDay <= rpDayEnd) // if report active + if (dvrip->dv_IsReportActive( Top.jDay)) { // put report on active linked list for its frequency TI *dvri = &Top.dvriY + dvrip->rpFreq - 1; // subscript by rpFreq to point at list head Top.dvriY,M,D,H,S,or HS. @@ -544,7 +533,20 @@ o close to contiguous in virtual report spool file. */ Top.shrxFlg = Top.dvriS | Top.dvriHS; // if any each subhour. tested for speed in cnguts.cpp:doIvlReports. } // cgReportsDaySetup +//----------------------------------------------------------------------------- +bool DVRI::dv_IsReportActive( // check if report is active + DOY jDay) const // simulation day of year (1 - 365/366) +// returns true iff this report should output on day jDay +{ + bool bActive{ false }; + if (rpDayEnd >= rpDayBeg) + bActive = jDay >= rpDayBeg && jDay <= rpDayEnd; + else + bActive = jDay >= rpDayBeg || jDay <= rpDayEnd; + + return bActive; +} // DVRI::dv_IsReportActive //********************************** RESULTS PRINTING FUNCTIONS ********************************* diff --git a/src/CGWTHR.CPP b/src/CGWTHR.CPP index a0836736c..dea858e17 100644 --- a/src/CGWTHR.CPP +++ b/src/CGWTHR.CPP @@ -15,7 +15,6 @@ #include "solar.h" #include #include -#include // FsSET 6-95 #include // decls for this file diff --git a/src/CNAH1.CPP b/src/CNAH1.CPP index f8b2928c9..c27c23135 100644 --- a/src/CNAH1.CPP +++ b/src/CNAH1.CPP @@ -53,7 +53,6 @@ #include // psyEnthalpy #include // rer -#include // FsSET #include // AhiB #include // Decls for this file; ZrB MDS_FLOAT diff --git a/src/CNCULT2.CPP b/src/CNCULT2.CPP index f88b76b75..2537fa470 100644 --- a/src/CNCULT2.CPP +++ b/src/CNCULT2.CPP @@ -8,24 +8,22 @@ // search NUMS for messages just added 6-95... exman.cpp too. grep NUMS! /*------------------------------- INCLUDES --------------------------------*/ -#include // USI SI LI. includes cndefns.h, for ZHX_TULHC, - -#include // SFIR, -#include // record: base class for rccn.h classes -#include // TOPRATstr ZNRstr SFIstr SDIstr -#include // MH_S0470 - -#include // msgIsHan -#include // addChafIf -#include // tdHoliDate tddtis tddyi -#include // getChoiTx -#include // wfOpen wfClose 1-95 -#include // psyAltitude PsyRAir +#include "cnglob.h" // USI SI LI. includes cndefns.h, for ZHX_TULHC, + +#include "srd.h" // SFIR, +#include "ancrec.h" // record: base class for rccn.h classes +#include "rccn.h" // TOPRATstr ZNRstr SFIstr SDIstr +#include "msghans.h" // MH_S0470 +#include "messages.h" // msgIsHan +#include "exman.h" +#include "tdpak.h" // tdHoliDate tddtis tddyi +#include "cvpak.h" // getChoiTx +#include "wfpak.h" // wfOpen wfClose 1-95 +#include "psychro.h" // psyAltitude PsyRAir #include "solar.h" -#include // ensystd +#include "envpak.h" // ensystd #include "impf.h" -// #include "cse.h" #include "cnguts.h" // Top ZrB Wfile #include "xmodule.h" @@ -33,18 +31,18 @@ #include "comfort/comfort.h" #endif -#include // ppFindFile -#include // per -#include // CULT oer ooer oWarn -#include // cupfree cupIncRef -#include // evf's and variabilities: EVF____ defines: EVFFAZ +#include "pp.h" // ppFindFile +#include "cuparse.h" // per +#include "cul.h" // CULT oer ooer oWarn +#include "cueval.h" // cupfree cupIncRef +#include "cuevf.h" // evf's and variabilities: EVF____ defines: EVFFAZ -//declaration for this file: -#include // use classes, globally used functions -#include // declarations of input record arrays (rats) -#include // cncult internal functions shared only amoung cncult,2,3,4.cpp +// declaration for this file: +#include "cncult.h" // use classes, globally used functions +#include "irats.h" // declarations of input record arrays (rats) +#include "cnculti.h" // cncult internal functions shared only amoung cncult,2,3,4.cpp -#include // access to Kiva objects +#include "Foundation.h" // access to Kiva objects /*-------------------------------- DEFINES --------------------------------*/ @@ -2006,292 +2004,6 @@ LOCAL RC badRefMsg( // message for bad reference (rat subscript) : "" ); } // badRefMsg -/////////////////////////////////////////////////////////////////////////////// -// record data checking member functions -/////////////////////////////////////////////////////////////////////////////// -RC record::limitCheck( // range check, issue warning or error msg - int fn, // field - double vMin, // min allowed value - double vMax, // max allowed value - double vMinWarn /*=-DBL_MAX*/, // min for warning - double vMaxWarn /*=DBL_MAX*/) // max for warning -// return RCOK if field not set or value is in range or warning msg -// else RCxx if value out of range (msg issued) -{ - RC rc = RCOK; - if (IsVal( fn)) - { int dt = DType( fn); - void* pV = field( fn); - double v = 0.; - if (dt == DTFLOAT) - v = *(FLOAT *)pV; - else if (dt == DTDBL) - v = *(DBL *)pV; - else - err( PWRN, "record::limitCheck -- unsupported dt=%d", dt); - if (v < vMin || v > vMax) - rc = oer( "%s (%g) must be in range %g - %g", - mbrIdTx( fn), v, vMin, vMax); - else if (v < vMinWarn || v > vMaxWarn) - { // warning (do not return RCBAD) - // use vMin / vMax instead of default DBL_MAX (avoid showing 10e+308) - // if here, at most one can be DBL_MAX - if (vMinWarn == -DBL_MAX) - vMinWarn = vMin; - else if (vMaxWarn == DBL_MAX) - vMaxWarn = vMax; - oWarn( "dubious %s (%g) typically should be in range %g - %g", - mbrIdTx( fn), v, vMinWarn, vMaxWarn); - } - } - return rc; -} // record::limitCheck -//----------------------------------------------------------------------------- -RC record::limitCheckFix( // range check, msg, set to min/max - int fn, // field - float vMin, // min allowed value - float vMax, // max allowed value - int erOp /*=ERR*/) // WRN/ERR/IGN etc - // note IGNX bit: limit only (don't msg) -// return RCOK if field not set or value is in range or warning msg -// else RCxx if value out of range (msg issued) -{ - RC rc = RCOK; - void* p = field(fn); - if (!ISNANDLEP( p)) - { float* pV = (float *)p; - float v = *pV; - if (v < vMin || v > vMax) - { rc = orMsg(erOp, "%s (%g) must be in range %g - %g", - mbrIdTx(fn), v, vMin, vMax); - *pV = bracket(vMin, v, vMax); - } - } - return rc; -} // record::limitCheck -//============================================================================= - -/////////////////////////////////////////////////////////////////////////////// -// 'record' MEMBER FUNCTIONS TO REQUIRE/DISALLOW FIELDS (class declaration: ancrec.h) -/////////////////////////////////////////////////////////////////////////////// -RC record::checkN( - const char* when, // message insert. message handle ok (see messages.cpp). - RC (*checkFcn)(int fn, const char* when), - va_list ap) -{ - RC rc = RCOK; - char whenBuf[200]; - if (!msgIsHan(when)) // not if handle given - if (when) // copy arg to local buffer in case in Tmpstr[], ... - when = strncpy0(whenBuf, when, sizeof(whenBuf)); // so any (possible future) strtprintf's in following loop - // won't overwrite it, 7-92. - for (; ; ) - { - int fn = va_arg(ap, int); - if (!fn) - break; - if (fn > 1024) - rc |= oer((char*)MH_S0495, // "cncult2.cpp:%s Internal error: field # %nd: probable unterminated arg list" - "checkN", fn); - rc |= (*checkFcn)(fn, when); - } - return rc; -} // checkN -//----------------------------------------------------------------------------- -RC record::disallowN( // issue "not allowed" message for each given field in 0-terminated list of field numbers - const char* when /*=NULL*/, // message insert. message handle ok (see messages.cpp). - ... ) // int field numbers, 0 ends list REMEMBER THE 0! -{ - RC rc=RCOK; - va_list ap; - va_start( ap, when); -#if 0 - rc = checkN(when, [this](int fn, const char* when)->RC { return this->disallow(fn, when); }, ap); -#else - char whenBuf[200]; - if (!msgIsHan(when)) // not if handle given, lib\messages.cpp, 7-10-92 - if (when) // copy arg to local buffer in case in Tmpstr[], ... - when = strncpy0( whenBuf, when, sizeof(whenBuf)); // so any (possible future) strtprintf's in following loop - // won't overwrite it, 7-92. - for ( ; ; ) - { int fn = va_arg( ap, int); - if (!fn) - break; - if (fn > 1024) - rc |= oer( (char *)MH_S0495, // "cncult2.cpp:%s Internal error: field # %nd: probable unterminated arg list" - "disallowN", fn); - rc |= disallow( fn, when); - } -#endif - return rc; -} // disallowN -//----------------------------------------------------------------------------- -RC record::disallow( // issue message if field is given - int fn, - const char* when /*=NULL*/) // message insert, worded for work context "Can't give ", handle ok -{ - if (fStat(fn) & FsSET) // if value for field given in user input (test field status byte) - return cantGiveEr( fn, when); - return RCOK; -} // disallow -//----------------------------------------------------------------------------- -RC record::requireN( // issue "missing" message for each omitted field in 0-terminated list of field numbers - const char* when /*=NULL*/, // message insert (message handle ok) - ... ) // int field numbers, 0 ends list REMEMBER THE 0! -{ - RC rc=RCOK; - va_list ap; - va_start( ap, when); - char whenBuf[ 200]; - if (!msgIsHan(when)) // not if handle given - if (when) // copy arg to local buffer in case in Tmpstr[], ... - when = strncpy0( whenBuf, when, sizeof(whenBuf)); // so any (possible future) strtprintf's in following loop - // won't overwrite it - for ( ; ; ) - { int fn = va_arg( ap, int); - if (!fn) - break; - if (fn > 1024) - rc |= oer( (char *)MH_S0495, // "cncult2.cpp:%s Internal error: field # %d: probable unterminated arg list" - "requireN", fn); - rc |= require( fn, when); - } - return rc; -} // requireN -//----------------------------------------------------------------------------- -RC record::require( // issue message if field is not given - int fn, - const char* when /*=NULL*/ ) // NULL or message insert (msghan ok), worded for work context " missing: required " -{ - if ( !(fStat(fn) & FsSET) ) // if value for field not given in user input (test field status byte) - return notGivenEr( fn, when); - return RCOK; -} // require -//------------------------------------------------------------------------------- -RC record::ignoreN( // issue "ignored" message for each given field in 0-terminated list of field numbers - const char* when /*=NULL*/, // message insert. message handle ok (see messages.cpp). - ... ) // int field numbers, 0 ends list REMEMBER THE 0! -{ - RC rc=RCOK; - va_list ap; - va_start( ap, when); - char whenBuf[200]; - if (!msgIsHan(when)) // not if handle given - if (when) // copy arg to local buffer in case in Tmpstr[], ... - when = strncpy0( whenBuf, when, sizeof(whenBuf)); // so any (possible future) strtprintf's in following loop - // won't overwrite it, 7-92. - for ( ; ; ) - { int fn = va_arg( ap, int); - if (!fn) - break; - if (fn > 1024) - rc |= oer( (char *)MH_S0495, // "cncult2.cpp:%s Internal error: field # %nd: probable unterminated arg list" - "ignoreN", fn); - rc |= ignore( fn, when); - } - return rc; -} // ignoreN -//----------------------------------------------------------------------------- -RC record::ignore( // issue message if field is given - int fn, - const char* when /*=NULL*/) // message insert, worded for work context "Can't give ", handle ok -{ - if (IsSet( fn)) // if value for field given in user input - return ignoreInfo( fn, when); - return RCOK; -} // ignore -//============================================================================ - -/**************************************************************************************************************************** -* 'record' MEMBER FUNCTIONS TO MAKE CHANGE FLAG ENTRIES IN RUNTIME TABLES (class declaration: ancrec.h) -****************************************************************************************************************************/ -void CDEC record::chafSelf( // say increment change flag IN SAME RECORD on change in list of fields of record - SI chafFn, // field NUMBER of change flag: an SI field in same record - ... ) // 0-terminated list of field numbers in record to monitor for change if contain expressions -{ - va_list ap; - va_start( ap, chafFn); - chafNV( this->b, ss, b->fir[chafFn].off, ap); -} // record::chafSelf -//============================================================================================================================ -void CDEC record::chafN( // say increment specified flag during run on change in list of fields in curr record - - BP b, TI i, USI off, // location of SI change flag: anchor, record subscript, offset in record - ... ) // 0-terminated list of field numbers - -/* for each given field which contains an expression handle, make expression manager runtime table entry - to increment flag at b-i-off when value of that expression changes. */ -{ - va_list ap; - va_start( ap, off); - chafNV( b, i, off, ap); -} // record::chafN -//============================================================================================================================ -void record::chafNV( // say increment specified flag during run on change in var list of fields in curr record - - BP b, TI i, USI off, // location of SI change flag: anchor, record subscript, offset in record - va_list ap ) // pointer to 0-terminated list of field numbers - -// var arg list level for flexibility -{ - for ( ; ; ) - { int fn = va_arg( ap, int); - if (!fn) - break; - if (fn > 1024) - oer( (char *)MH_S0495, // "cncult2.cpp:%s Internal error: field # %d: probable unterminated arg list" - "chavNV", (INT)fn); - addChafIf( (NANDAT *)field(fn), b->ancN, i, off); /* test pointed to field contents, add increment-on-change - table entry if is expr handle. exman.cpp. */ - } -} // record::chafNV -//============================================================================= - -/////////////////////////////////////////////////////////////////////////////// -// FUNCTIONS TO ISSUE SPECIFIC ERROR MESSAGES -/////////////////////////////////////////////////////////////////////////////// -//----------------------------------------------------------------------------- -RC record::cantGiveEr( // issue message (using ooer) for disallowed field that user gave - int fn, - const char* when /*=NULL*/ ) // NULL or message insert, worded for work context "Can't give " -{ - return ooer( fn, // message for record & field if 1st error for field, & flag bad. - (char *)MH_S0496, // "Can't give '%s' %s" - mbrIdTx( fn), // input name (id) - when ? strtprintf(when) : ""); // user's explanatory insert, eg "when no local heat". - // use strtprintf to retrieve text (to Tmpstr) if handle given. -} // cantGiveEr -//----------------------------------------------------------------------------- -RC record::notGivenEr( // issue message (using ooer) for disallowed field that user gave - int fn, - const char* when /*=NULL*/ ) // NULL or message insert, worded for work context " missing: required " -{ - if (when) - return ooer( fn, // message if 1st error for record & field, & flag field bad - (char *)MH_S0497, // handle of message "'%s' missing: required %s" - mbrIdTx( fn), // input name (id) - strtprintf(when) ); // user's explanatory insert, eg "when tuTLh given" - // use strtprintf to retrieve text (to Tmpstr) if handle given. - return ooer( fn, (char *)MH_S0498, // "'%s' missing" - mbrIdTx( fn) ); -} // record::notGivenEr -//----------------------------------------------------------------------------- -RC record::ignoreInfo( // issue info message for ignored field - int fn, - const char* when /*=NULL*/ ) // NULL or message insert - // worded for context " is ignored " -{ - const char* msg = strtprintf( - when ? "'%s' is ignored %s" : "ignoring '%s'", - mbrIdTx( fn), - strtprintf( when)); // when might be handle - return oerI( 1, 1, 2, msg, NULL); // do msg using vbl arg list flavor of oer -} // record::ignoreInfo -//----------------------------------------------------------------------------- -RC record::notGzEr( int fn) // issue error message for field not greater than 0. finds user name in CULTs. -{ - return ooer( fn, (char *)MH_S0499, mbrIdTx( fn) ); // "'%s' must be > 0" -} /*********************************************** IF-OUTS ****************************************************/ diff --git a/src/CNDTYPES.DEF b/src/CNDTYPES.DEF index c80fb85f7..15ad0ceb8 100644 --- a/src/CNDTYPES.DEF +++ b/src/CNDTYPES.DEF @@ -481,6 +481,11 @@ PIPESEGP -- "class PIPESEG*" 4 none NYLEC185AC_SP "NyleC185A_CWP_SP" NYLEC250AC_SP "NyleC250A_CWP_SP" + RHEEM_HPHD60HNU_201_MP "Rheem_HPHD60HNU_MP" + RHEEM_HPHD60VNU_201_MP "Rheem_HPHD60VNU_MP" + RHEEM_HPHD135HNU_483_MP "Rheem_HPHD135HNU_MP" + RHEEM_HPHD135VNU_483_MP "Rheem_HPHD135VNU_MP" + SCALABLE_SP "Scalable_SP" // scalable type for autosized standard design } diff --git a/src/CNGUTS.CPP b/src/CNGUTS.CPP index 6c2f364af..71d797478 100644 --- a/src/CNGUTS.CPP +++ b/src/CNGUTS.CPP @@ -1522,7 +1522,7 @@ LOCAL void FC NEAR doIvlAccum() DUCTSEGRES* pDSRSum = DsResR.p + DsResR.n; DUCTSEGRES* pDSR; - RLUP(DsResR, pDSR) // loop DUCTSYSRES, last is sum + RLUP(DsResR, pDSR) // loop DUCTSEGRES, last is sum { if (pDSR->ss < DsResR.n) pDSRSum->curr.S.dsr_Accum(&pDSR->curr.S, pDSR->ss == 1, (pDSR->ss == DsResR.n - 1)); pDSR->curr.H.dsr_Accum(&pDSR->curr.S, Top.isBegHour, Top.isEndHour); // accumulate subhr to hour @@ -1887,7 +1887,7 @@ void ZNRES_IVL_SUB::zr_Init1( // float members to sum #define rsysRes(m) offsetof( RSYSRES_IVL_SUB, m) #define RRs1 hrsOn // first float member to sum (energies) -#define RRnS ((rsysRes(qcSenNet) - rsysRes( RRs1))/sizeof(float) + 1) // number of float members to sum +#define RRnS ((sizeof( RSYSRES_IVL_SUB) - rsysRes( RRs1))/sizeof(float)) //----------------------------------------------------------------------------- void RSYSRES_IVL_SUB::rsr_Accum( // Accumulate RSYS results @@ -1967,12 +1967,15 @@ void DUCTSEGRES_IVL_SUB::dsr_Accum( // Accumulate RSYS results #endif } // DUCTSEGRES_IVL_SUB::dsr_Accum //----------------------------------------------------------------------------- +#if 0 // future: if needed, 11-21 +// add suitable calls to ::doIvlPrior() void DUCTSEGRES_IVL_SUB::dsr_SetPrior() const // copy to prior { BYTE* d = ((BYTE*)this + (offsetof(DUCTSEGRES, prior) - offsetof(DUCTSEGRES, curr))); memcpy(d, this, sizeof(DUCTSEGRES_IVL_SUB)); } // DUCTSEGRES_IVL_SUB::dsr_SetPrior +#endif //============================================================================= /////////////////////////////////////////////////////////////////////////////// diff --git a/src/CNLOADS.CPP b/src/CNLOADS.CPP index 5ffc73ab8..70e6137c5 100644 --- a/src/CNLOADS.CPP +++ b/src/CNLOADS.CPP @@ -739,7 +739,7 @@ RC ZNR::zn_InitSubhr() since terminal loads are of form b * t - a. Insurance 12-94 -- need was not proven at subhour level when all masses hourly (b4 aMassSh added). But it did something: eliminated undercooling in hour 13 in S1LOH test run, 12-5-94, so keep. */ - zn_xqs = zn_bLdSh * tz - zn_aqLdSh; + zn_xqs = zn_bLdSh * tzls - zn_aqLdSh; // convective-radiant zone terms double nAirSh = @@ -1117,8 +1117,8 @@ x printf( "1B\n"); if (rsAvail >= 2) { // mode is possible - rc |= zn_AirRequest( rs); // determine air requirement given - // rs_asSup + rc |= zn_AirRequest( rs, 1); // determine air requirement given rs_asSup + // 1: msg if bad supply temp // zone temp calc'd in zn_CondixCR2() } else if (rsAvail == 1) @@ -1128,7 +1128,7 @@ x printf( "1B\n"); #if defined( ZNHVACFCONV) zn_QsHvacCR( tz, zn_fConv); #else - zn_QsHvacCR(tz); + zn_QAirCR(tz); #endif } // else system not available @@ -1147,7 +1147,7 @@ x printf( "1B\n"); zn_fConv = zn_fConvC; zn_qsHvac = zn_QsHvacCR(tz, zn_fConv); #else - zn_qsHvac = zn_QsHvacCR(tz); + zn_qsHvac = zn_QAirCR(tz); #endif if (fabs( zn_qsHvac) > fabs( qcCap)) { zn_qsHvac = qcCap; @@ -1169,7 +1169,7 @@ x printf( "1B\n"); zn_fConv = zn_fConvH; zn_qsHvac = zn_QsHvacCR(tz, zn_fConv); #else - zn_qsHvac = zn_QsHvacCR( tz); + zn_qsHvac = zn_QAirCR( tz); #endif if (zn_qsHvac > qhCap) { // heat at heating capacity, find resulting tz. @@ -1197,22 +1197,33 @@ x printf( "1B\n"); } // ZNR::zn_CondixCR //----------------------------------------------------------------------------- RC ZNR::zn_AirRequest( // determine air requirement given rs_asSup - RSYS* rs) // zone's RSYS + RSYS* rs, // zone's RSYS + int options /*=0*/) // option bits + // 1: report "flipped" supply temps // Prereq: rs->rs_SupplyAirState() at current speed // returns RCOK iff success { RC rc = RCOK; double tSup0 = rs->rs_asSup.as_tdb; #if 1 && defined( _DEBUG) - if ((!Top.isWarmup && - (zn_hcMode == RSYS::rsmCOOL && tSup0 >= zn_tzsp) - || (zn_hcMode == RSYS::rsmHEAT && tSup0 <= zn_tzsp && !rs->rs_IsASHP()))) + if ((options & 1) && !Top.isWarmup && rs->rs_speedF > 0.99f + && ( (zn_hcMode == RSYS::rsmCOOL && tSup0 >= zn_tzsp) + || (zn_hcMode == RSYS::rsmHEAT && tSup0 <= zn_tzsp))) { - printf("Zone '%s': Flipped tSup RSYS='%s', tOut=%f, tSup=%f, tSP=%f, tZone=%f\n", name, rs->name, rs->rs_asOut.as_tdb, tSup0, zn_tzsp, tz); - rs->rs_SupplyAirState(zn_hcMode); // debug aid + orWarn("Flipped tSup RSYS='%s', tPln=%0.3f, tSup=%0.3f, tSP=%0.1f, tZn=%0.3f\n", + rs->name, rs->rs_asOut.as_tdb, tSup0, zn_tzsp, tz); } - #endif +#endif + double amfSup0 = zn_AmfHvacCR(zn_tzsp, tSup0); // dry air mass flow rate required to hold +#if 0 && defined(_DEBUG) + double qLoad = zn_QAirCR(zn_tzsp); + // load at system, Btuh + double qLoad0 = rs->rs_asOut.as_QSenDiff2(rs->rs_asIn, amfSup0); + if (fabs(qLoad - qLoad0) > 5.) + printf("\nzn_AirRequest mismatch"); +#endif + zn_rsAmfSysReq[0] = rs->rs_ZoneAirRequest(amfSup0, 0); // notify system of requirement CHECKFP(zn_rsAmfSysReq[0]); // check for NaN etc (debug only) @@ -1280,6 +1291,7 @@ RC ZNR::zn_CondixCR2() // zone conditions, part 2 double tSup = rs->rs_asSup.as_tdb; tz = zn_TAirCR( mCp*tSup, mCp); zn_qsHvac = mCp*(tSup - tz); + // zn_qsHvac = zn_QAirCR(tzls); experiment, same results 11-21 zn_sysAirI.af_AccumDry( zn_rsAmfSup, rs->rs_asSup); if (zn_hcMode == RSYS::rsmOAV) zn_OAVRlfO.af_AccumDry( -zn_rsAmfSup, tz, wzls); // w not used @@ -1461,17 +1473,6 @@ double ZNR::zn_QsHvacCR( // sensible hvac heat/cool requirements return qs; } // ZNR::zn_QsHvacCR //------------------------------------------------------------------------------ -double ZNR::zn_QsHvacCR( // sensible hvac heat/cool requirements - double tza) const // zone air temp, F -// assume no vent (HVAC active) -// does NOT change ZNR state -// HVAC source assumed all convective -// returns sensible power rqd to hold tza, Btuh -{ - double qs = (zn_balC2*tza - zn_balC1) / (zn_dRadSh + zn_cxSh); - return qs; -} // ZNR::zn_QsHvacCR -//------------------------------------------------------------------------------ double ZNR::zn_AmfHvacCR( // sensible hvac air requirements w/ add'l radiant heat double tza, // zone air temp, F double tSup, // available supply air temp, F @@ -1686,8 +1687,9 @@ RC ZNR::zn_ComfortCR() // calculate comfort conditions, conv/radiant model /*virtual*/ RSYS::~RSYS() { cupfree( DMPP( rs_desc)); - delete rs_pRgiHtg; - rs_pRgiHtg = nullptr; + delete rs_pRgiHtg[0]; + delete rs_pRgiHtg[1]; + rs_pRgiHtg[0] = rs_pRgiHtg[1] = nullptr; delete rs_pRgiClg; rs_pRgiClg = nullptr; @@ -1720,14 +1722,6 @@ RC RSYS::rs_CkF() else rc |= requireN(when, RSYS_SEER, 0); - // cooling model air flow correlations have limited validity range - // verify air flow 150 - 550 cfm/ton (per Proctor Engineering) - rc |= limitCheck( RSYS_VFPERTON, 150., 550.); - - // rsFanPwrC (W/cfm): error if >5, warn if >2 - rc |= limitCheck( RSYS_FANPWRC, 0., 5., 0., 2.); - - rc |= rs_CkFCd(rsmCOOL); if (!IsAusz(RSYS_CAP95)) { // rs_cap95 not AUTOSIZEd (altho may be expression), use as rs_capNomC default @@ -1751,14 +1745,13 @@ RC RSYS::rs_CkF() rc |= ignoreN("when rsType is not ASHPVC (VCHP2)", RSYS_COPMIN05, RSYS_COPMIN17, RSYS_COPMIN35, RSYS_COPMIN47, RSYS_LOADFMIN05, RSYS_LOADFMIN17, RSYS_LOADFMIN47, 0); + // cooling? rs_loadFMin05 = rs_loadFMin17 = rs_loadFMin47 = 1.f; } else { - if (!IsSet(RSYS_LOADFMIN82)) - rs_loadFMin82 = rs_loadFMin95; - if (!IsSet(RSYS_LOADFMIN115)) - rs_loadFMin115 = rs_loadFMin95; + FldCopyIf(RSYS_LOADFMIN95, RSYS_LOADFMIN82); + FldCopyIf(RSYS_LOADFMIN95, RSYS_LOADFMIN115); } } @@ -1787,13 +1780,9 @@ RC RSYS::rs_CkF() RSYS_FANPWRH, RSYS_CDH, RSYS_LOADFMIN47, RSYS_CAPRAT1747, 0); FldSet( RSYS_CAPNOMH, 0.f); // insurance } - else - { // general heating checks - // rsFanPwrH (W/cfm): error if >5, warn if >2 - rc |= limitCheck( RSYS_FANPWRH, 0., 5., 0., 2.); - - - } + // else + // { // general heating checks + // } if (rs_IsASHP()) { @@ -1801,8 +1790,6 @@ RC RSYS::rs_CkF() rs_AFUE = 0.f; // drop possibly confusing default - rc |= rs_CkFCd( rsmHEAT); // heating Cd - if (rs_IsASHPHydronic()) { // ASHPHydronic: air-to-water heat pump // approximated with air-to-air model @@ -1824,14 +1811,6 @@ RC RSYS::rs_CkF() if (!IsSet(RSYS_CAP47) && !IsSet(RSYS_CAP95)) rc |= oer("at least one of rsCap47 and rsCapC must be specified %s", when); -#if 0 - // save input value of rs_capAuxH - // estimated rs_capAuxH used during autosize - rs_capAuxHInp = rs_capAuxH; - if (IsAusz(RSYS_CAPAUXH)) - rs_capAuxH = 0.f; // overwrite NANDLE -#endif - if (!IsAusz(RSYS_CAP47)) // rs_cap47 not AUTOSIZEd (altho may be expression), use it as rs_capNomH default // see DefaultCapNomsIf() @@ -1899,11 +1878,14 @@ RC RSYS::rs_CkF() FldCopyIf( RSYS_CAPH, RSYS_CAPNOMH); } - // parasitics -- issue info message if no associated meter - if (IsSet( RSYS_PARELEC) && !IsSet( RSYS_ELECMTRI)) - oInfo( "rsElecMtr not specified -- rsParElec has no effect"); - if (IsSet( RSYS_PARFUEL) && !IsSet( RSYS_FUELMTRI)) - oInfo( "rsFuelMtr not specified -- rsParFuel has no effect"); +#if 0 +x Parasitics are accumlated to RSYSRES also, 11-2021 +x // parasitics -- issue info message if no associated meter +x if (IsSet( RSYS_PARELEC) && !IsSet( RSYS_ELECMTRI)) +x oInfo( "rsElecMtr not specified -- rsParElec has no effect"); +x if (IsSet( RSYS_PARFUEL) && !IsSet( RSYS_FUELMTRI)) +x oInfo( "rsFuelMtr not specified -- rsParFuel has no effect"); +#endif // OAV if (rs_OAVType == C_RSYSOAVTYCH_NONE) @@ -1976,7 +1958,7 @@ RC RSYS::rs_CkFAuxHeat() // check aux heat rs_capAuxHInp = rs_capAuxH; if (IsAusz(RSYS_CAPAUXH)) rs_capAuxH = 0.f; // overwrite NANDLE - if (rs_typeAuxH == C_AUXHEATTY_FURN) + if (rs_IsFuelAuxH()) { rs_effAuxH = rs_AFUEAuxH; if (!IsSet(RSYS_CTRLAUXH)) rs_ctrlAuxH = C_AUXHEATCTRL_ALT; @@ -1986,6 +1968,24 @@ RC RSYS::rs_CkFAuxHeat() // check aux heat return rc; } // RSYS::rs_CkFAuxHeat //----------------------------------------------------------------------------- +#if 0 +// incomplete idea, 11-21 +RC RSYS::rs_CheckCapAuxH() // check for sufficient aux heat capacity +// issues msg if rs_capAuxH is too small to be useful +{ + RC rc = RCOK; + if (rs_capAuxH > 0.f && rs_ctrlAuxH != C_AUXHEATCTRL_CYCLE) + { // 1. user has provided aux capacity + // 2. aux and primary will not run simultaneously + float capMax = std::max({ rs_cap47, rs_cap35, rs_cap17, rs_cap05 }); + + if (rs_capAuxH <= capMax) + rc |= oWarn("Insufficient auxiliary capacity"); + } + return rc; +} // RSYS::rs_CheckCapAuxH +#endif +//----------------------------------------------------------------------------- RC RSYS::rs_TopRSys1() // check RSYS, initial set up for run { RC rc = RCOK; @@ -2000,7 +2000,16 @@ RC RSYS::rs_TopRSys1() // check RSYS, initial set up for run } if (rs_CanCool()) - { // default/harmonize 95 F COP + { // cooling model air flow correlations have limited validity range + // verify air flow 150 - 550 cfm/ton (per Proctor Engineering) + rc |= limitCheck(RSYS_VFPERTON, 150., 550.); + + // rsFanPwrC (W/cfm): error if >5, warn if >2 + rc |= limitCheck(RSYS_FANPWRC, 0., 5., 0., 2.); + + rc |= rs_CkFCd(rsmCOOL); + + // default/harmonize 95 F COP // inter-default rs_COP95 <-> rs_EER95 // if both input, values can be different // rs_COP95 used for VCHP2, rs_EER95 used for single speed @@ -2038,18 +2047,27 @@ RC RSYS::rs_TopRSys1() // check RSYS, initial set up for run // during autosize search } - if (IsAusz( RSYS_CAP47) || IsAusz( RSYS_CAPAUXH)) - { rs_auszH.az_active = TRUE; // ASHP autosizes rs_capH - // capacities derived in rs_AuszFinal - rs_fxCapHAsF = 1.2f; // working oversize factor - } + if (rs_CanHeat()) + { + // rsFanPwrH (W/cfm): error if >5, warn if >2 + rc |= limitCheck(RSYS_FANPWRH, 0., 5., 0., 2.); + + if (rs_IsASHP()) + rc |= rs_CkFCd(rsmHEAT); - // + if (IsAusz(RSYS_CAP47) || IsAusz(RSYS_CAPAUXH)) + { + rs_auszH.az_active = TRUE; // ASHP autosizes rs_capH + // capacities derived in rs_AuszFinal + rs_fxCapHAsF = 1.2f; // working oversize factor + } - else if (IsAusz( RSYS_CAPH)) - // other checking? - { rs_auszH.az_active = TRUE; - rs_fxCapHAsF = 1.4f; + else if (IsAusz(RSYS_CAPH)) + // other checking? + { + rs_auszH.az_active = TRUE; + rs_fxCapHAsF = 1.4f; + } } // loop all zones served by this RSYS @@ -2551,7 +2569,7 @@ int RSYS::rs_OAVAttempt() // leave rs_mode as rsmOAV RLUPC( ZrB, zp, rs_IsZoneServed( zp)) { zp->zn_hcMode = rsmOAV; // say this zone has been successfully OAVed - // most further this-step HVAC modelling is skipped + // most further this-step HVAC modelling is skipped if (ZnresB[ zp->ss].curr.S.nShVentH) { const int WARNMAX = 20; int warnCount = ZnresB[ zp->ss].zr_GetRunTotalLI( ZNRES_IVL_SUB_NSHVENTH); @@ -2645,7 +2663,7 @@ void RSYS::rs_SetMTRPtrs() // set runtime pointers to meters rs_pMtrElec = MtrB.GetAtSafe( rs_elecMtri); // elec mtr or NULL rs_pMtrFuel = MtrB.GetAtSafe( rs_fuelMtri); // fuel mtr or NULL rs_pMtrHeat = rs_IsElecHeat() ? rs_pMtrElec : rs_pMtrFuel; // heat mtr or NULL - rs_pMtrAux = rs_typeAuxH == C_AUXHEATTY_FURN ? rs_pMtrFuel : rs_pMtrElec; + rs_pMtrAux = rs_IsFuelAuxH() ? rs_pMtrFuel : rs_pMtrElec; } // RSYS::rs_SetMTRPtrs //----------------------------------------------------------------------------- RC RSYS::rs_SetupSizes( // derive capacity-dependent values @@ -2865,6 +2883,7 @@ RC RSYS::rs_BegSubhr() rs_tSupLs = rs_asSup.as_tdb; rs_mode = rsmOFF; // mode not yet known rs_ClearSubhrResults(); + RsResR[ss].curr.S.rsr_Zero(); // clear associated RSYSRES results rs_fxCap[ 0] = rs_fxCap[ 1] = 0.f; // excess capacity not known @@ -2884,6 +2903,7 @@ RC RSYS::rs_EndSubhr() RC rc = RCOK; // track excess capacity for day + // used in re autosizing if (rs_fxCap[ 0] > 0.f) { if (rs_mode == rsmHEAT) { if (rs_fxCap[ 0] < rs_fxCapHDay) @@ -2897,40 +2917,89 @@ RC RSYS::rs_EndSubhr() // populate results RSYSRES_IVL_SUB& R = RsResR[ ss].curr.S; - // RSYSRES_IVL_SUB& RH = RsResR[ ss].curr.H; - - R.qFan = rs_outFan * Top.tp_subhrDur; // fan can operate either prim or aux - float qhFan = 0.f; // fan heat assigned to heating (primary and/or aux) - float qcFan = 0.f; // fan heat assigned to cooling - if (rs_runFAux == 0.f) // if no aux - R.hrsOnAux = R.qAux = 0.f; - else - { R.hrsOnAux = rs_runFAux * Top.tp_subhrDur; - R.qAux = rs_outAux * Top.tp_subhrDur; - qhFan = R.qFan; // also set if primary heating + R.fhTot = R.fhParasitic = rs_parFuel * Top.tp_subhrDur; // assign fuel parasitics to heating + if (rs_parElec > 0.f) + { // assign electrical parasitics per current mode or last active mode + float ePar = rs_parElec * BtuperWh * Top.tp_subhrDur; + int modeX = rs_mode != rsmOFF ? rs_mode : rs_modeLastActive; + if (modeX <= rsmHEAT) + R.ehTot = R.ehParasitic = ePar; // rsmOFF and rsmHEAT -> heating + else if (modeX == rsmCOOL) + R.ecTot = R.ecParasitic = ePar; + else + R.evTot = R.evParasitic = ePar; } - if (rs_runF == 0.f) // if no primary - R.hrsOn = R.qh = R.qcSen = R.qcLat = R.qDefrost = 0.f; - else - { R.hrsOn = rs_runF * Top.tp_subhrDur; - if (rs_outSen >= 0.) - { R.qh = rs_outSen * Top.tp_subhrDur; - qhFan = R.qFan; // also set if aux - R.qDefrost = rs_outDefrost * Top.tp_subhrDur; - R.qcSen = R.qcLat = 0.f; + R.hrsOn = rs_runF * Top.tp_subhrDur; + float qFan = rs_outFan * Top.tp_subhrDur; + float eFan = rs_inFan * Top.tp_subhrDur; + + if (rs_mode == rsmHEAT) + { + R.hrsOnAux = rs_runFAux * Top.tp_subhrDur; + R.qhPrimary = rs_outSen * Top.tp_subhrDur; + R.qhDefrost = rs_outDefrost * Top.tp_subhrDur; + R.qhAux = rs_outAux * Top.tp_subhrDur; + R.qhFan = qFan; + R.qhNet = R.qhPrimary + R.qhDefrost + R.qhAux + R.qhFan; + + // heating input electricity and fuel (rs_xxx values are Btuh) + (rs_IsElecHeat() ? R.ehPrimary : R.fhPrimary) = rs_inPrimary * Top.tp_subhrDur; + if (rs_IsFuelAuxH()) + { R.fhDefrost = rs_inDefrost * Top.tp_subhrDur; + R.fhAux = rs_inAux * Top.tp_subhrDur; } else - { R.qcSen = rs_outSen * Top.tp_subhrDur; - R.qcLat = rs_outLat * Top.tp_subhrDur; - qcFan = R.qFan; - R.qh = R.qDefrost = 0.f; + { R.ehDefrost = rs_inDefrost * Top.tp_subhrDur; + R.ehAux = rs_inAux * Top.tp_subhrDur; } + R.ehFan = eFan; + R.ehTot += R.ehPrimary + R.ehDefrost + R.ehAux + R.ehFan; + /* + R.ehParasitic see above */ + R.fhTot += R.fhPrimary + R.fhDefrost + R.fhAux /* + R.fhParasitic*/; + } + else if (rs_mode == rsmCOOL) + { + R.qcSen = rs_outSen * Top.tp_subhrDur; + R.qcLat = rs_outLat * Top.tp_subhrDur; + R.qcFan = qFan; + R.qcSenNet = R.qcSen + R.qcFan; + + R.ecPrimary = rs_inPrimary * Top.tp_subhrDur; + R.ecFan = eFan; + + R.ecTot += R.ecPrimary + R.ecFan /* + R.ecParasitic, see above */; } + else if (rs_mode == rsmOAV) + { // sensible "output" = fan power + R.evFan = eFan; + R.evTot += R.evFan; /* + R.evParasitic, see above */ + } + + // verify RSYSRES_IVL_SUB layout at compile time + // fixed sequence allows array access by rs_mode (see code below) + // rsmHEAT/rsmCOOL/rsmOAV definitions must be consistent with member sequences. +#define QZONECHK( m, oDif) static_assert( &((RSYSRES_IVL_SUB *)0)->m-&((RSYSRES_IVL_SUB *)0)->qhZoneSen == oDif, "Bad seq " #m) + QZONECHK(qhZoneSen, (rsmHEAT - 1) * 2); + QZONECHK(qhZoneLat, (rsmHEAT - 1) * 2 + 1); + QZONECHK(qcZoneSen, (rsmCOOL - 1) * 2); + QZONECHK(qcZoneLat, (rsmCOOL - 1) * 2 + 1); + QZONECHK(qvZoneSen, (rsmOAV - 1) * 2); + QZONECHK(qvZoneLat, (rsmOAV - 1) * 2 + 1); + static_assert(rsmCOUNT == 4, "Bad rsm enum"); +#undef QZONECHK - R.qhNet = R.qh + qhFan + R.qAux + R.qDefrost; - R.qcSenNet = R.qcSen + qcFan; + if (rs_mode != rsmOFF) + { // heat transfers from this RSYS to all zones (including duct losses) + const ZNR* zp; + int iMX = 2 * (rs_mode - 1); + RLUPC(ZrB, zp, rs_IsZoneServed(zp)) + { + (&R.qhZoneSen)[iMX] += float(zp->zn_qsHvac * Top.tp_subhrDur); + (&R.qhZoneLat)[iMX] += float(zp->zn_qlHvac * Top.tp_subhrDur); + } + } return rc; } // RSYS::rs_EndSubhr @@ -2940,6 +3009,8 @@ RC RSYS::rs_AfterSubhr() // set 'prior interval' variables etc: if done sooner, probes come out wrong. { rs_modeLs = rs_mode; + if (rs_mode != rsmOFF) + rs_modeLastActive = rs_mode; rs_loadFLs = rs_loadF; return RCOK; } // RSYS::rs_AfterSubhr @@ -3172,6 +3243,7 @@ x rs_asOut = asSav; rs_asOut.as_AddQSen( rs_speedF*rs_fanHeatC, rs_amf); rs_asSup = rs_asOut; rs_SupplyDSEAndDucts( rs_asSup); + rs_capSenNetFS = rs_capSenCt / rs_speedF + rs_fanHeatC; // net full speed sensible capacity #if defined( _DEBUG) if (!Top.isWarmup) @@ -3527,22 +3599,35 @@ float RSYS::rs_PerfASHP2( // ASHP performance // multiplies final COP result // returns compressor-only full-speed COP (as adjusted by COPAdjF) { - capDfHt = 0.f; + capDfHt = capDfHtMin = 0.f; BOOL bDoDefrost = (ashpModel & 0x100) == 0 && rs_defrostModel == C_RSYSDEFROSTMODELCH_REVCYCLEAUX; ashpModel &= 0xff; if (ashpModel == 0) - { + { + int iDefrost = rs_HasDefrost() && tdbOut > 17.f && tdbOut < 45.f; // 1 if defrost, else 0 if (rs_IsASHPVC()) { // retrieve min/max cap and input at tdbOut // values include fan heat/power - /* rc = */ rs_GetPerfBtwxt( rs_pRgiHtg, tdbOut, capHt, inpHt, capHtMin, inpHtMin); + /* rc = */ rs_GetPerfBtwxt(rs_pRgiHtg[ 0], tdbOut, capHt, inpHt, capHtMin, inpHtMin); #if defined( _DEBUG) if (capHt < capHtMin) printf("\ncapHt < capHtMin"); #endif rs_speedFMin = capHt <= 0.f ? 1.f : capHtMin / capHt; + if (iDefrost && bDoDefrost) + { // C_RSYSDEFROSTMODELCH_REVCYCLEAUX + // include sufficient aux heat to make up for ASHP cooling + // = steady-state cap - integrated cap + // limit to available aux heat capacity + // Note: does NOT over-commit aux because compressor + // and aux do not run simultaneously. + float capHtSS, capHtSSMin, inpSink; + /* rc = */ rs_GetPerfBtwxt(rs_pRgiHtg[1], tdbOut, capHtSS, inpSink, capHtSSMin, inpSink); + capDfHt = bracket(0.f, capHtSS - capHt, rs_capAuxH); + capDfHtMin = bracket(0.f, capHtSSMin - capHtMin, rs_capAuxH); + } capHt -= fanHAdj; inpHt -= fanHAdj; capHtMin -= fanHAdj * rs_speedFMin; @@ -3552,7 +3637,6 @@ float RSYS::rs_PerfASHP2( // ASHP performance { // CSE AHRI 210/240 model // input power and heating capacity at current conditions (Btuh) - int iDefrost = rs_HasDefrost() && tdbOut > 17.f && tdbOut < 45.f; // 1 if defrost, else 0 float tdbM17 = tdbOut - 17.f; inpHt = rs_inp17 + rs_ASHPInpF[iDefrost] * tdbM17 - fanHAdj; capHt = rs_cap17 + rs_ASHPCapF[iDefrost] * tdbM17 - fanHAdj; @@ -3679,6 +3763,7 @@ static const double epEIR[ 6][ 6] = { COP = COPAdjF * capHt / inpHt; // compressor-only efficiency capHt += capDfHt; // include defrost heat in capacity + capHtMin += capDfHtMin; if (!rs_IsASHPVC()) { // single speed @@ -3692,7 +3777,7 @@ static const double epEIR[ 6][ 6] = { //----------------------------------------------------------------------------- RC RSYS::rs_SetupASHP() // set ASHP defaults and derived parameters // caution: all required args assumed present and >0 -// call at during autosize or later +// call during autosize or later // redundant calls OK { RC rc = RCOK; @@ -3791,11 +3876,16 @@ RC RSYS::rs_SetupASHP() // set ASHP defaults and derived parameters #endif // setup ASHP runtime data - // calls MinSpdDefaultsHtg // makes slope data and Btwxt perf map - rs_CalcInputsAndSlopesASHP(); + rc |= rs_SetRunConstantsASHP(); -#if 1 && defined( _DEBUG) +#if 0 + // issue message if rs_capAuxH <= compressor cap + if (!rs_isAuszH) + rc |= rs_CheckCapAuxH(); +#endif + +#if defined( _DEBUG) // back-calc checks float COP; float capHt = rs_PerfASHP(0, 47.f, COP); @@ -3892,7 +3982,6 @@ RC RSYS::rs_SetDefaultsClg() { RC rc = RCOK; - if (rs_IsVCClg()) { if (!IsSet(rs_cap115)) rs_cap115 = rs_Cap115Default(rs_cap95, rs_cap82); @@ -3906,10 +3995,36 @@ RC RSYS::rs_SetDefaultsClg() } // RSYS::rs_SetDefaultsClg() //----------------------------------------------------------------------------- -RC RSYS::rs_MinSpdDefaultsHtg() // default heating min spd values +// helper performance point re btwxt setup +// = temperature + array of perf values +struct VSPERFP +{ + enum { ppCAPHS, ppINPHS, ppCAPLS, ppINPLS, ppCOUNT }; + VSPERFP(float temp, float capHS, float COPHS, float capLS, float COPLS) + : pp_temp(temp) + { + pp_data[ppCAPHS] = capHS; + pp_data[ppINPHS] = abs(capHS / max(COPHS, .1f)); + pp_data[ppCAPLS] = capLS; + pp_data[ppINPLS] = abs(capLS / max(COPLS, .1f)); + } + + double pp_temp; // temp for this point, F + std::array< double, ppCOUNT> pp_data{ 0. }; // data + double operator [](int i) const { return pp_data[i]; } + static int NData() { return ppCOUNT; } +}; // struct VSPERFP +//----------------------------------------------------------------------------- +RC RSYS::rs_SetRunConstantsASHP() // finalize constant data for simulation +// uses: rs_cap/COP 47/35/17/05 +// sets: rs_inp17/35/47, rs_COP35 (if needed), slopes, performance map(s), + +// returns RCOK iff success { RC rc = RCOK; + // min speed defaults + // WHY: multiple calls possible with different rs_COP17 (at least) if (!IsSet(RSYS_COPMIN47)) rs_COPMin47 = rs_COP47; if (!IsSet(RSYS_COPMIN17)) @@ -3917,15 +4032,6 @@ RC RSYS::rs_MinSpdDefaultsHtg() // default heating min spd values if (!IsSet(RSYS_COPMIN05)) rs_COPMin05 = rs_COP05; - return rc; -} // RSYS::rs_MinSpdDefaultsHtg -//----------------------------------------------------------------------------- -RC RSYS::rs_CalcInputsAndSlopesASHP() -// uses: rs_cap/COP 47/17 -// sets: rs_inp17/35/47, rs_COP35 (if needed), and slopes -{ - RC rc = rs_MinSpdDefaultsHtg(); // min spd defaults - rs_inp47 = rs_cap47 / max( rs_COP47, .1f); // full speed input power, Btuh rs_inp17 = rs_cap17 / max( rs_COP17, .1f); @@ -3944,56 +4050,34 @@ RC RSYS::rs_CalcInputsAndSlopesASHP() // Btwxt performance map setup // initially used for ASHPVC only - rc |= rs_SetupBtwxtHtg(); - - return rc; -} // RSYS::rs_CalcInputsAndSlopesASHP -//----------------------------------------------------------------------------- -// helper performance point re btwxt setup -// = temperature + array of perf values -struct VSPERFP -{ - enum { ppCAPHS, ppINPHS, ppCAPLS, ppINPLS, ppCOUNT }; - VSPERFP(float temp, float capHS, float COPHS, float capLS, float COPLS) - : pp_temp(temp) - { - pp_data[ppCAPHS] = capHS; - pp_data[ppINPHS] = abs(capHS / max(COPHS, .1f)); - pp_data[ppCAPLS] = capLS; - pp_data[ppINPLS] = abs(capLS / max(COPLS, .1f)); - } - - double pp_temp; // temp for this point, F - std::array< double, ppCOUNT> pp_data{ 0. }; // data - double operator [](int i) const { return pp_data[i]; } - static int NData() { return ppCOUNT; } -}; // struct VSPERFP -//----------------------------------------------------------------------------- -RC RSYS::rs_SetupBtwxtHtg() -{ - RC rc = RCOK; - float capMin35 = rs_Cap35Default(rs_CapMin47(), rs_CapMin17()); if (!IsSet(RSYS_COPMIN35)) - { float inpMin47 = rs_CapMin47() / max(rs_COPMin47, .1f); + { + float inpMin47 = rs_CapMin47() / max(rs_COPMin47, .1f); float inpMin17 = rs_CapMin17() / max(rs_COPMin17, .1f); float inpMin35 = rs_Inp35Default(inpMin47, inpMin17); rs_COPMin35 = capMin35 / max(inpMin35, .1f); } - // vector of performance points + // integrated performance (including defrost degradation) std::vector< VSPERFP> ppV; ppV.emplace_back(5.f, rs_cap05, rs_COP05, rs_CapMin05(), rs_COPMin05); ppV.emplace_back(17.f, rs_cap17, rs_COP17, rs_CapMin17(), rs_COPMin17); ppV.emplace_back(35.f, rs_cap35, rs_COP35, capMin35, rs_COPMin35); ppV.emplace_back(47.f, rs_cap47, rs_COP47, rs_CapMin47(), rs_COPMin47); + rc |= rs_SetupBtwxt(rs_pRgiHtg[ 0], ppV); - // Populate Btwxt interpolator grid data from performance points - rc |= rs_SetupBtwxt(rs_pRgiHtg, ppV); + // steady-state performance (no defrost degradation) + // linear w/o 35 F point + // used iff temp in 17 - 45 F range + ppV.clear(); + ppV.emplace_back(17.f, rs_cap17, rs_COP17, rs_CapMin17(), rs_COPMin17); + ppV.emplace_back(47.f, rs_cap47, rs_COP47, rs_CapMin47(), rs_COPMin47); + rc |= rs_SetupBtwxt(rs_pRgiHtg[1], ppV); return rc; -} // RSYS::rs_SetupBtwxtHtg +} // RSYS::rs_SetRunConstantsASHP //----------------------------------------------------------------------------- RC RSYS::rs_SetupBtwxtClg() { @@ -4012,11 +4096,26 @@ RC RSYS::rs_SetupBtwxtClg() return rc; } // RSYS::rs_SetupBtwxtClg //----------------------------------------------------------------------------- -float RSYS::rs_CapHtCurSpeedF() const -{ +float RSYS::rs_CapHtCurSpeedF() const // heating cap at current speed +// valid for rs_speedFMin <= rs_speedF <= 1 +// returns non-cycling heating capacity (including fan and defrost aux), Btuh +{ +// cap = rs_capHtMin +// + (rs_capHt - rs_capHtMin) * (rs_speedF - rs_speedFMin) / (1.f - rs_speedFMin); +// and rs_speedFMin = rs_capHtMin / rs_capHt +// thus cap reduces to ... return rs_capHt * rs_speedF; } // RSYS::rs_CapHtCurSpeedF //----------------------------------------------------------------------------- +float RSYS::rs_CapDfHtCurSpeedF() const +{ + float capDfHt = rs_speedF == 1.f + ? rs_capDfHt + : rs_capDfHtMin + + (rs_capDfHt - rs_capDfHtMin) * (rs_speedF - rs_speedFMin) / (1.f - rs_speedFMin); + return capDfHt; +} // RSYS::rs_capDfHtCurSpeedF() +//----------------------------------------------------------------------------- float RSYS::rs_InpHtCurSpeedF() const { float inpHt = rs_speedF == 1.f @@ -4052,7 +4151,8 @@ RC RSYS::rs_SetupBtwxt( // init/populate btwxt for heating runtime interpolation } } - Btwxt::GridAxis dbtRange(gridODB); + // single grid variable = dry-bulb temp (CONSTANT sez "don't extrapolate") + Btwxt::GridAxis dbtRange(gridODB, Btwxt::Method::CONSTANT); std::vector dbt{ dbtRange }; Btwxt::GriddedData perfMapHtg(dbt, values); @@ -4167,7 +4267,7 @@ float RSYS::rs_CapEffASHP2() // performance at current conditions (no defaults) if (COP17 < 1.01) COP17 = 1.01; // prevent impossible pRS->rs_COP17 = COP17; - pRS->rs_CalcInputsAndSlopesASHP(); + pRS->rs_SetRunConstantsASHP(); int ashpModel = 0; double hspf = pRS->rs_HSPFCheckASHP( ashpModel); return hspf; @@ -4179,7 +4279,7 @@ RC RSYS::rs_HSPFMatchASHP() // adjust COP17 to yield user's HSPF // returns RCOK iff COP17 found { int rc = RCOK; - rs_CalcInputsAndSlopesASHP(); // ensure consistent starting point + rs_SetRunConstantsASHP(); // ensure consistent starting point int ashpModel = 0; double hspf = rs_HSPFCheckASHP( ashpModel); double COP17 = rs_COP17; @@ -4347,7 +4447,7 @@ double RSYS::rs_CapHtForCap47( // inner function re ASHP sizing } // RSYS::rs_CapHtForCap47 //------------------------------------------------------------------------------- RC RSYS::rs_SizeASHP( // size ASHP - float dsnLoad, // required output, Btuh + float dsnLoad, // required output, Btuh float tdbOut) // outdoor dry-bulb temp, F // sets rs_cap47 (and dependent members) such that @@ -4433,6 +4533,7 @@ void RSYS::rs_ClearSubhrResults( // 1: limited clear for speed retry { rs_amfReq[0] = rs_amfReq[1] = 0.; + rs_znLoad[0] = rs_znLoad[1] = 0.; rs_asRet.as_Init(); rs_asIn.as_Init(); rs_twbIn = 0.; @@ -4445,12 +4546,13 @@ void RSYS::rs_ClearSubhrResults( return; // all modes - rs_loadF = rs_runF = rs_speedF = rs_runFAux = rs_PLF = 0.f; + rs_loadF = rs_PLR = rs_runF = rs_speedF = rs_runFAux = rs_PLF = rs_capSenNetFS = 0.f; rs_outSen = rs_outLat = rs_outFan = rs_outAux = rs_outDefrost = rs_outSenTot = rs_inPrimary = rs_inFan = rs_inAux = rs_inDefrost = 0.; // heating - rs_capHt = rs_effHt = rs_COPHtAdj = 0.f; + rs_effHt = rs_COPHtAdj = 0.f; + rs_capHt = rs_capHtMin = rs_capDfHt = rs_capDfHtMin = 0.f; // cooling rs_tdbCoilIn = 0.f; @@ -4461,7 +4563,7 @@ void RSYS::rs_ClearSubhrResults( rs_fCondSEER = rs_fCondEER = 0.f; rs_SEERnf = rs_EERnf = rs_EERt = rs_effCt = 0.f; -} // RSYS::rs_ClearSubrResults +} // RSYS::rs_ClearSubhrResults //---------------------------------------------------------------------------- int RSYS::rs_IsModeAvailable( int rsMode) // desired mode (rsmHEAT or rsmCOOL) @@ -4627,9 +4729,12 @@ int RSYS::rs_SupplyAirState( // current conditioning capabilities rs_EnteringAirState(); if (rs_mode == rsmCOOL) - rs_Cooling( auszMode); + { ++rs_calcCount[1]; + rs_Cooling(auszMode); + } else if (rs_mode == rsmHEAT) - { rs_asOut = rs_asIn; // init to entering state + { ++rs_calcCount[0]; + rs_asOut = rs_asIn; // init to entering state if (auszMode == rsmHEAT && Top.tp_pass1A) { // autosize warmup: assume fixed temp rise rs_asOut.as_tdb = rs_asRet.as_tdb + rs_tdDesH; @@ -4655,6 +4760,7 @@ int RSYS::rs_SupplyAirState( // current conditioning capabilities // add aux heat and apply duct losses if (rs_speedF == 1.f) // skip if not full speed { + double tdbWas = rs_asOutAux.as_tdb; float fanHeatAux; if (rs_ctrlAuxH == C_AUXHEATCTRL_CYCLE) { // aux cycles: aux out = prim out + aux heat @@ -4762,7 +4868,7 @@ void RSYS::rs_SupplyDSEAndDuctsRev( // reverse supply duct and DSE losses double RSYS::rs_ZoneAirRequest( // air quantity needed by zone double znSupReq, // dry-air mass flow rate required at supply register, lbm/hr int iAux /*=0*/) // 0 = primary mode (compressor) - // 1 = aux mode (aux alonemain+aux (ASHP heating only) + // 1 = aux mode (aux alone or main+aux (ASHP heating only) // each zone needing conditioning requests air // returns RSYS (not supply register) amf needed to provide zone requirement { @@ -4787,12 +4893,28 @@ double RSYS::rs_ZoneAirRequest( // air quantity needed by zone : 2. * rs_amf; // simulation: request "a lot" #endif + // air required at system double znAmfSys = znSupReq / rs_ducts[ rs_DsHC()].ductLkXF[ 0]; rs_amfReq[ iAux] += znAmfSys; // all-zone total at system + + // load at system, Btuh + rs_znLoad[ iAux] += + (iAux ? rs_asOutAux : rs_asOut).as_QSenDiff2(rs_asIn, znAmfSys); + #if 0 && defined( _DEBUG) + if (iAux == 1) + { + const char* msg = fabs(rs_znLoad[0] - rs_znLoad[1]) > 1.f + ? "rs_znLoad mismatch" + : "rs_znLoad OK"; + printf("\n%s rs_amf=%0.1f rs_amfReq[ 0]=%0.1f rs_amfReg[ 1]=%0.1f", + msg, rs_amf, rs_amfReq[0], rs_amfReq[1]); + } +#if 0 if (rs_amfReq[ iAux] > 200000. && !Top.isWarmup) printf( "rs_ZoneAirRequest: Excessive AMF=%0.f aux=%d\n", rs_amfReq[ iAux], iAux); +#endif #endif return znAmfSys; } // RSYS::rs_ZoneAirRequest @@ -4819,7 +4941,8 @@ int rsysIterCount = 0; // count secant method call-backs #endif #endif //----------------------------------------------------------------------------- -RC RSYS::rs_AllocateZoneAir() +RC RSYS::rs_AllocateZoneAir() // finalize zone air flows +// { if (rs_mode == rsmOAV) return RCOK; // OAV: allocation done by rs_OAVAttempt @@ -4830,6 +4953,7 @@ RC RSYS::rs_AllocateZoneAir() #endif RC rc = RCOK; + ASSERT(rs_fxCap[0] == 0.f && rs_fxCap[1] == 0.f); if (rs_amfReq[ 0] > 0.) // if any air requested (by any zone) rs_fxCap[ 0] = rs_amf / rs_amfReq[ 0]; // >1 = excess capacity // else rs_fxCap = 0 @@ -4840,13 +4964,26 @@ RC RSYS::rs_AllocateZoneAir() bool bAux = rs_mode == rsmHEAT && rs_capAuxH > 0.f && (rs_effHt == 0.f || (fSize > 0. && fSize < 1.)); + if (bAux && rs_ctrlAuxH != C_AUXHEATCTRL_CYCLE) + { // check that aux will be helpful + // _CYCLE: any rs_capAuxH > 0 helps (> 0.f check is above) + // _LO, _ALT: aux supply temp must be greater than primary + if (rs_asSupAux.as_tdb <= rs_asSup.as_tdb) + { orWarn("Aux heat supply temperature (%0.1f F) <= primary supply temperature (%0.1f F)." + "\n Aux heat is not helpful. rs_capAuxH should be increased.", + rs_asSupAux.as_tdb, rs_asSup.as_tdb); + // bAux = false; no: real controls would run aux even if not helpful + } + } + ZNR* zp; if (!bAux) { // aux not available or not needed - if (rs_IsVC() && fSize == 1. && !rs_IsAutoSizing() /* && rs_mode == rsmHEAT */) - // variable capacity with excess capacity - { - rc |= rs_AllocateZoneAirVC(); + if (rs_IsVC() && fSize == 1. && !rs_IsAutoSizing()) + { // variable capacity with excess capacity + // find intermediate speed + rc |= rs_FindRequiredSpeedF(); + // now rs_speedFMin <= rs_speedF < 1 fSize = min(rs_fxCap[0], 1.); } RLUPC(ZrB, zp, rs_IsZoneServed(zp)) @@ -4867,13 +5004,20 @@ RC RSYS::rs_AllocateZoneAir() if (rs_asSup != rs_asSupAux) printf( "rs_asSupAux mismatch!\n"); #endif - rs_runFAux = 1.; // aux is at full cap + rs_runFAux = 1.; // aux is at full cap + if (rs_ctrlAuxH == C_AUXHEATCTRL_LO) + rs_effHt = 0.f; // force compressor off + // rs_speedF = 0.; // dicey: fan is at full speed RLUPC( ZrB, zp, rs_IsZoneServed( zp)) zp->zn_SetRSYSAmf( rs_fxCap[ 1], 1); // tell zones how much they get } else if (rs_effHt == 0.f || rs_ctrlAuxH == C_AUXHEATCTRL_LO) { // compressor is unavailable // meet load with aux alone +#if 0 && defined( _DEBUG) + if (Top.jDay == 336) + printf("\nHit %s", Top.dateStr); +#endif rs_effHt = 0.f; // force compressor off (for _LO case) rs_fxCap[ 1] = rs_amf / rs_amfReq[ 1]; // x/0 impossible rs_runFAux = 1.f / rs_fxCap[ 1]; @@ -4904,6 +5048,10 @@ RC RSYS::rs_AllocateZoneAir() // 1/amf is linear-ish with tSup, reduces iterations #if defined( RSYSITERCOUNT) rsysPartAuxCount++; +#endif +#if 0 && defined( _DEBUG) + if (Top.jDay == 336) + printf("\nHit %s", Top.dateStr); #endif double tSup = max(rs_asSup.as_tdb, rs_tSupLs); // use last result as guess double amfX = DBL_MIN; @@ -4983,100 +5131,210 @@ RC RSYS::rs_AllocateZoneAir() return rc; } // RSYS::rs_AllocateZoneAir //---------------------------------------------------------------------------- -RC RSYS::rs_AllocateZoneAirVC() // -// rs_fxCap[] known +RC RSYS::rs_FindRequiredSpeedF() // find VC intermediate speed +// at call: RSYS in full speed state (excess capacity, rs_fxCap[ 0]==1) +// returns RCBAD iff search fail (unexpected) +// else RCOK and RSYS at intermediate speed state +// if rs_fxCap[ 0] == 1, pegged at rs_speedFMin (must cycle below min) { #if defined( _DEBUG) if (rs_fxCap[0] < 1.f) printf("\nrs_AllocateZoneAirVC: rs_fxCap[ 0] < 1"); #endif + float fxCapFullSpd = rs_fxCap[0]; // save full speed cap rat RC rc = RCOK; + assert(!rs_IsAutoSizing()); + // try minimum speed - rc |= rs_TotalAirRequest( rs_speedFMin); + rc |= rs_TotalAirRequestForSpeedF( rs_speedFMin); - if (rs_fxCap[0] < 1.f) - rs_FindAirFlow(); + if (rc || rs_fxCap[0] >= 1.f) + return rc; // error or rs_speedFMin is sufficient + + // rs_speedFMin not sufficient, search for intermediate speed + + float fxCapMinSpd = rs_fxCap[0]; + + float speedFEst = rs_speedFMin + (1.f - rs_speedFMin) * (1.f - fxCapMinSpd) / (fxCapFullSpd - fxCapMinSpd); + + double speedF, f1; +#if 1 + speedF = min(1., speedFEst * 1.2); + f1 = DBL_MIN; +#elif 0 + if (speedFEst > 0.5f * rs_speedFMin + 0.5f) + { + speedF = 1.; + f1 = fxCapFullSpd; + } + else + { + speedF = rs_speedFMin; + f1 = fxCapMinSpd; + } + +#elif 0 + speedF = rs_speedFMin; + f1 = fxCapMinSpd; +#else + speedF = double( 0.5f * rs_speedFMin + 0.5f); + f1 = DBL_MIN; +#endif + +#if defined( _DEBUG) + printf("\nStart speedFMin=%0.4f fxCapMinSpd=%0.4f fxCapFullSpd=%0.4f speedFEst=%0.4f", + rs_speedFMin, fxCapMinSpd, fxCapFullSpd, speedFEst); +#endif + + // search for speedF that produces fxCap = 1. + // this RSYS is left in the corresponding state via rc_TotalAirRequestForSpeed() calls + // (secant results not directly returned) + int ret = secant([](void* pO, double& speedF) { return ((RSYS*)pO)->rs_FxCapForSpeedF(speedF); }, + this, + 1., .0005, // target=rs_fxCap[0]=1 within .0005 + speedF, f1, // x1, f1 + speedFEst, DBL_MIN); // x2, f2 (not known) + if (ret) // if secant failed (unexpected) + // leave RSYS is speedFEst state (= semi-decent result) + rc |= rs_TotalAirRequestForSpeedF(speedFEst); + +#if defined( _DEBUG) + if (ret) + printf("\nrs_FindRequiredSpeedF: secant ret=%d rsMode=%d", ret, rs_mode); + if (rs_speedF < rs_speedFMin || rs_speedF > 1.f) + printf("\nrs_FindRequiredSpeedF bad rs_speedF=%0.2f", rs_speedF); + printf("\nDone speedF=%0.4f fxCap=%0.4f", rs_speedF, rs_fxCap[0]); +#endif return rc; -} // RSYS::AllocateZoneAirVC() +} // RSYS::rs_FindRequiredSpeedF() //----------------------------------------------------------------------------- -RC RSYS::rs_TotalAirRequest( // all-zone air request at speedF - float speedF) +RC RSYS::rs_TotalAirRequestForSpeedF( // all-zone air request at speedF + float speedF, // speed to attempt + int options /*=0*/) // option bits + // 1: report zn_AirRequest errors +// returns RCOK iff valid result (rs_fxCap[ 0] set) +// else RCBAD, rs_fxCap[ 0] = 0 { RC rc = RCOK; if (speedF != rs_speedF) { - rs_ClearSubhrResults(1); // init for speed re-try int ret = rs_SupplyAirState(rs_mode, speedF); ZNR* zp; RLUPC(ZrB, zp, rs_IsZoneServed(zp)) - zp->zn_AirRequest(this); + rc |= zp->zn_AirRequest(this, options); - if (rs_amfReq[0] <= 0.) // if any air requested (by any zone) + if (rc || rs_amfReq[0] <= 0.) { - printf("\nrs_AirRequest: rs_amfReq[ 0] <= 0."); - return RCBAD; +#if defined( _DEBUG) + printf("\nrs_TotalAirRequestForSpeed: rs_amfReq[ 0] <= 0."); +#endif + rs_fxCap[0] = 0.f; + rc = RCBAD; } - - rs_fxCap[0] = rs_amf / rs_amfReq[0]; // >1 = excess capacity + else + rs_fxCap[0] = rs_amf / rs_amfReq[0]; // >1 = excess capacity } return rc; -} // RSYS::rs_TotalAirRequest +} // RSYS::rs_TotalAirRequestForSpeedF //----------------------------------------------------------------------------- -double RSYS::rs_SpeedFMismatch( // call-back fcn for secant method - double& speedF) -// returns required AMF - RSYS AMF +double RSYS::rs_FxCapForSpeedF( // call-back fcn for secant method + double& speedF) // trial speedF (may be returned modified) +// returns required rs_fxCap[ 0] (= rs_amf / amfReq), >1 = excess capacity { - speedF = bracket(double( rs_speedFMin), speedF, 1.); - - rs_TotalAirRequest(float(speedF)); - - double amfError = rs_amfReq[0] - rs_amf; +#if defined( _DEBUG) + double speedFWas = speedF; + static double speedFLastCall = 0.; + static float fxLastCall = 0.; + float rsSpeedFWas = rs_speedF; +#endif + speedF = bracket(double(rs_speedFMin), speedF, 1.); +#if defined( _DEBUG) + if (speedF != speedFWas) + printf("\nrs_FxCapForSpeedF limit: speedFWas=%0.4f speedF=%0.4f", + speedFWas, speedF); +#endif - return amfError; -} // RSYS::rs_SpeedFMismatch -//----------------------------------------------------------------------------- -double RSYS::rs_FindAirFlow() -{ - RC rc = RCOK; + // options: report bad supply temps iff near solution + // (when far from solution errors are common and not meaningful + int arOptions = abs(rs_fxCap[0] - 1.f) < .01f; - if (rs_IsAutoSizing()) - return -1.f; // bad call + RC rc = rs_TotalAirRequestForSpeedF(float(speedF), arOptions); - double fAmf = .5; - double f1 = DBL_MIN; - int ret = secant([](void* pO, double& speedF) { return ((RSYS*)pO)->rs_SpeedFMismatch(speedF); }, - this, 0., 1., - fAmf, f1, // x1, f1 - 1.); // x2 (f2) + // if rc != RCOK, rs_fxCap[0] is 0 #if defined( _DEBUG) - if (ret) - printf("\nrs_FindAirFlow(): secant ret=%d rsMode=%d", ret, rs_mode); - if (rs_speedF < rs_speedFMin || rs_speedF > 1.f) - printf("\nrs_FindAirFlow() rs_speedF=%0.2f", rs_speedF); + bool bDup = speedF != speedFLastCall && rs_fxCap[0] == fxLastCall; + printf("\n speedF=%0.4f f=%0.4f tSup=%0.3f rs_amf=%0.3f rs_amfReq=%0.3f (speedFLastCall=%0.4f rsSpeedFWas=%0.4f)%s", + speedF, rs_fxCap[0], rs_asSup.as_tdb, rs_amf, rs_amfReq[ 0], speedFLastCall, rsSpeedFWas, bDup ? " Dup" : ""); + if (bDup) + { + rs_speedF = rsSpeedFWas; + rs_TotalAirRequestForSpeedF(float(speedF), arOptions); + } + + if (rc) + printf("\nrs_FxCapForSpeedF: rs_TotalAirRequestForSpeedF() fail"); + speedFLastCall = speedF; + fxLastCall = rs_fxCap[0]; +#else + // ignore rc, return rs_fxCap[ 0] = 0 #endif - return rs_amf; -} // RSYS::rs_FindAirFlow -//---------------------------------------------------------------------------- + return double(rs_fxCap[0]); +} // RSYS::rs_FxCapForSpeedF +//----------------------------------------------------------------------------- +#if 0 // incomplete/unused ideas void RSYS::rs_AvgZoneCond() { -#if 0 const ZNR* zp; AIRFLOW asZn; RLUPC(ZrB, zp, rs_IsZoneServed(zp)) { asZn.af_Mix(zp->zn_sysAirO); } rs_asZn = ?? -#endif } // RSYS::rs_AvgZoneCond //---------------------------------------------------------------------------- +float RSYS::rs_SenHeatDelivered() +{ + float qSenTot = 0.f; + const ZNR* zp; + RLUPC(ZrB, zp, rs_IsZoneServed(zp)) + { + qSenTot += zp->zn_qsHvac; + } + return qSenTot * Top.tp_subhrDur; +} // RSYS::rs_SenHeatDelivered +//---------------------------------------------------------------------------- +void RSYS::rs_HeatDelivered( // heat delivered to zone(s) by this RSYS + float& qhSen, // heating sensible, Btu (>= 0) + float& qcSen, // cooling sensible, Btu (< 0) + float& qcLat) // cooling latent, Btu + // (generally <0, can be >0 due to duct leakage +{ + qhSen = qcSen = qcLat = 0.f; + const ZNR* zp; + RLUPC(ZrB, zp, rs_IsZoneServed(zp)) + { + if (zp->zn_qsHvac >= 0.) + qhSen += float(zp->zn_qsHvac); + // ignore latent if no sensible cooling + else + { qcSen += float(zp->zn_qsHvac); + qcLat += float(zp->zn_qlHvac); + } + } + qhSen *= Top.tp_subhrDur; + qcSen *= Top.tp_subhrDur; + qcLat *= Top.tp_subhrDur; +} // RSYS::rs_SenHeatDelivered +#endif +//---------------------------------------------------------------------------- double RSYS::rs_AmfRequired( // find all-zone total AMF required for tSup double tSup) // proposed supply air temp, F { @@ -5108,16 +5366,18 @@ float RSYS::rs_ACReqCap95( // required rated capacity to meet sensible load RC RSYS::rs_FinalizeSh() // rs_speedF known { + // determine run fraction + // Note: rs_runF modified below for ASHP C_AUXHEATCTRL_ALT double amfRun = min( rs_amfReq[ 0], rs_amf); if (amfRun < .0001) rs_mode = rsmOFF; // no air actually delivered if (rs_mode == rsmOFF) rs_SetModeAndClear( rsmOFF, 0.f); - // rs_loadF = 0.f; // in rs_SetModeAndClear + // rs_runF = 0.f; // rs_ClearSubhrResults else if (rs_amf > 0.) // rs_SetModeAndClear() called in rs_SupplyAirState - rs_loadF = amfRun / rs_amf; - // else rs_loadF = 0.f + rs_runF = amfRun / rs_amf; + // else rs_runF = 0.f #if 0 // restore if needed @@ -5131,20 +5391,18 @@ RC RSYS::rs_FinalizeSh() float runFFan = 0.f; // subhour fan run fraction if (rs_mode == rsmCOOL) { - rs_outSen = rs_loadF * rs_capSenCt; // average output w/o fan (= gross cooling), Btuh (< 0) - rs_outLat = rs_loadF * rs_capLatCt; - rs_outFan = rs_inFan = rs_loadF * rs_speedF * rs_fanHeatC; // all fan heat to air - runFFan = rs_loadF; + rs_outSen = rs_runF * rs_capSenCt; // average output w/o fan (= gross cooling), Btuh (< 0) + rs_outLat = rs_runF * rs_capLatCt; + rs_outFan = rs_inFan = rs_runF * rs_speedF * rs_fanHeatC; // all fan heat to air + runFFan = rs_runF; rs_outSenTot = rs_outSen + rs_outFan; // net cooling output, Btuh (generally < 0) if (!rs_IsVCClg() || rs_speedF == 1.f) - { rs_runF = rs_loadF; - rs_PLF = 1.f - rs_CdC * (1.f - rs_runF); + { rs_PLF = 1.f - rs_CdC * (1.f - rs_runF); rs_inPrimary = fabs(rs_outSen / max(.01f, rs_effCt * rs_PLF)); // compressor power, Btuh } else if (rs_speedF <= rs_speedFMin) { // variable capacity: cycling at min speed - rs_runF = rs_loadF; rs_PLF = 1.f - rs_CdC * (1.f - rs_runF); rs_inPrimary = fabs(rs_outSen / max(.01f, rs_effCt * rs_PLF)); @@ -5152,15 +5410,11 @@ RC RSYS::rs_FinalizeSh() else { // variable capacity: intermediate speed -#if 0 - rs_outSen = rs_capSenCt; // average output w/o fan, Btuh (< 0) - rs_outLat = rs_capLatCt; - rs_outFan = rs_inFan = rs_speedF * rs_fanHeatC; // all fan heat to air - runFFan = rs_speedF; - rs_outSenTot = rs_outSen + rs_outFan; // gross output +#if defined(_DEBUG) + if (fabs(rs_runF - 1.f) > 0.001f) + printf("\nUnexpected rs_runF"); #endif rs_PLF = 1.f; - rs_runF = 1.f; rs_inPrimary = fabs(rs_outSen / max(.01f, rs_effCt)); // compressor power, Btuh } @@ -5176,44 +5430,71 @@ RC RSYS::rs_FinalizeSh() else if (rs_mode == rsmHEAT) { if (rs_IsASHP()) { // rs_runFAux known at this point - // rs_runF not known? if (rs_effHt == 0.f) // if compressor is off { // rs_inPrimary = 0.; // rs_COPHtAdj = 0.f; runFFan = rs_runFAux; rs_outFan = rs_runFAux * rs_fanHeatH; rs_outAux = rs_runFAux * rs_capAuxH; - rs_loadF = 0.f; - rs_runF = 0.f; - rs_PLF = 0.f; + rs_runF = rs_PLF = 0.f; + rs_capHt = rs_capHtMin = rs_capDfHt = rs_capDfHtMin = 0.f; // clear values for reports // aux may be on, handled below } else { - float fFanHeatPrim; + float fFanHeatPrim; // run fraction for both fan and primary if (rs_runFAux > 0.f && rs_ctrlAuxH == C_AUXHEATCTRL_ALT) - { fFanHeatPrim = rs_runF = 1.f - rs_runFAux; + { // aux/primary alternate: primary runs when aux does not + rs_runF = 1.f - rs_runFAux; + fFanHeatPrim = rs_runF; // fan heat allocation to primary runFFan = 1.f; +#if defined( _DEBUG) + if (rs_speedF != 1.f) + printf("\nUnexpected rs_speedF = %0.3f", rs_speedF); +#endif } else - { rs_runF = rs_loadF; - runFFan = rs_runF; + { runFFan = rs_runF; fFanHeatPrim = 1.f; } + rs_capSenNetFS = rs_capHt - rs_capDfHt; // full-speed net capacity + double outTot = rs_runF * rs_CapHtCurSpeedF(); // total primary output (incl fan and defrost), Btuh rs_outAux = rs_runFAux * rs_capAuxH; rs_outFan = min( outTot+rs_outAux, runFFan * rs_speedF * rs_fanHeatH); // fan output, Btuh // insurance: limit to total output - rs_outDefrost = rs_runF * rs_capDfHt; - - rs_outSen = outTot - rs_outFan*fFanHeatPrim - rs_outDefrost; // compressor output - // rs_outLat = 0.; // total latent output + rs_outSen = outTot - rs_outFan*fFanHeatPrim; // compressor sensible output (note defrost adjustment below) + // rs_outLat = 0.; // total latent output +#if defined( _DEBUG) + // some checking if aux is running + if (rs_runFAux > 0.f) + { + if (rs_ctrlAuxH == C_AUXHEATCTRL_LO) + { + if (rs_runF > 0.f) + printf("\nAux LO: compressor running"); + } + else if (rs_ctrlAuxH == C_AUXHEATCTRL_ALT) + { + if (abs( rs_runFAux + rs_runF - 1.f) > 0.0001f) + printf("\nAux alt: bad runF+runFAux"); + } + else + { + if (rs_runF != 1.f || rs_speedF != 1.f) + printf("\nAux cycle: not full speed"); + } + } +#endif if (!rs_IsASHPVC() || rs_speedF == 1.f) { // single speed or variable speed at max + // variable speed can cycle at max due to C_AUXHEATCTRL_ALT + rs_outDefrost = rs_runF * rs_capDfHt; + rs_outSen -= rs_outDefrost; rs_PLF = 1.f - rs_CdH * (1.f - rs_runF); rs_COPHtAdj = rs_effHt * rs_PLF; // full load efficiency modified by PLF rs_inPrimary = rs_outSen / rs_COPHtAdj; @@ -5221,6 +5502,8 @@ RC RSYS::rs_FinalizeSh() } else if (rs_speedF <= rs_speedFMin) { // variable capacity: cycling at min speed + rs_outDefrost = rs_runF * rs_capDfHtMin; + rs_outSen -= rs_outDefrost; rs_PLF = 1.f - rs_CdH * (1.f - rs_runF); rs_COPHtAdj = rs_inpHtMin <= 0.f ? 2.5f // rs_inpHtMin can be 0 during autosize @@ -5229,6 +5512,8 @@ RC RSYS::rs_FinalizeSh() } else { // variable capacity: intermediate speed + rs_outDefrost = rs_CapDfHtCurSpeedF(); + rs_outSen -= rs_outDefrost; rs_inPrimary = rs_InpHtCurSpeedF() / rs_fEffH; rs_COPHtAdj = rs_inPrimary <= 0.f ? 2.5f // rs_inPrimary can be 0 during autosize @@ -5257,21 +5542,21 @@ x rs_inPrimary = rs_outSen / (rs_effHt * rs_PLF); #endif } - rs_inDefrost = rs_outDefrost / rs_effAuxH; rs_inAux = rs_outAux / rs_effAuxH; + rs_inDefrost = rs_outDefrost / rs_effAuxH; if (rs_pMtrAux) rs_pMtrAux->H.hpBU += (rs_inAux + rs_inDefrost) * Top.tp_subhrDur; } else { // non-ASHP - double outTot = rs_loadF * rs_capHt; // total output (incl fan), Btuh + rs_capSenNetFS = rs_capHt; // net capacity, Btuh + double outTot = rs_runF * rs_capHt; // total output (incl fan), Btuh // rs_outLat = 0.; // total latent output - rs_outFan = min( outTot, rs_loadF * rs_fanHeatH); // fan output, Btuh + rs_outFan = min( outTot, rs_runF * rs_fanHeatH); // fan output, Btuh // insurance: limit to total output - runFFan = rs_loadF; + runFFan = rs_runF; rs_outSen = outTot - rs_outFan; rs_PLF = 1.f; - rs_runF = rs_loadF; rs_inPrimary = rs_outSen / rs_effHt; } @@ -5284,13 +5569,22 @@ x rs_inPrimary = rs_outSen / (rs_effHt * rs_PLF); rs_outSenTot = rs_outSen + rs_outDefrost + rs_outAux + rs_outFan; } else if (rs_mode == rsmOAV) - { runFFan = rs_runF = rs_loadF; + { runFFan = rs_runF; rs_outSenTot = rs_outFan = rs_inFan = rs_fanHeatOAV * rs_runF; if (rs_pMtrElec) rs_pMtrElec->H.fanC += rs_inFan * Top.tp_subhrDur; } // else if (rs_Mode == rsmOFF) + if (rs_capSenNetFS != 0.f) + { rs_loadF = (rs_outSen + rs_outFan) / rs_capSenNetFS; + rs_PLR = rs_znLoad[0] / rs_capSenNetFS; +#if defined( _DEBUG) + if (rs_loadF < 0.f) + printf("\nNeg rs_loadF"); +#endif + } + // parasitic consumption if (rs_pMtrElec) rs_pMtrElec->H.aux += rs_parElec * Top.tp_subhrDur * BtuperWh; @@ -5645,6 +5939,10 @@ RC ZNR::zn_AfterSubhr() // end-subhour after-exprs/reports stuff for loads: set 'prior interval' variables etc // if done sooner, probes come out wrong. { +#if 0 && defined( _DEBUG) + if (Top.iHr == 7) + printf("\niHr=%d", Top.iHr); +#endif tzlsDelta = tz - tzls; // last subhour t delta: may be used to extrapolate next tz tzls = tz; // last subhr zone air temp for next subHour wzlsDelta = wz - wzls; // last subhour w delta: may be used to extrapolate next wz diff --git a/src/CNRECS.DEF b/src/CNRECS.DEF index fe6d720ad..7dd4d4913 100644 --- a/src/CNRECS.DEF +++ b/src/CNRECS.DEF @@ -1744,6 +1744,7 @@ RECORD DVRI "dvri" *hideall *RAT // Date-dependent Virtual Report Info -- at run *ovrcopy *declare "void dv_vpDHWMtrRow( RXPORTINFO *rxt, TI dhwMtri=-1);" *declare "void dv_vpAfMtrRow( RXPORTINFO *rxt, TI afMtri=-1);" + *declare "bool dv_IsReportActive( DOY jDay) const;" // from inputs to RiB/XiB .ownTi is zone subscript or TI_SUM or ?TI_ALL. *r TI mtri // meter to report/export. can be TI_SUM, TI_ALL. @@ -2217,7 +2218,6 @@ RECORD ZNR "zone" *RAT // zone runtime info RAT. Set mainly from separate ZNI *declare "double zn_QAirCR( double tza, double qRad) const;" *declare "double zn_QAirCR( double tza) const;" *declare "double zn_QsHvacCR( double tza, float fConv) const;" - *declare "double zn_QsHvacCR( double tza) const;" *declare "double zn_AmfHvacCR( double tza, double tSup, double qRad) const;" *declare "double zn_AmfHvacCR( double tza, double tSup) const;" *declare "void zn_TAirFloatCR() { tz = zn_balC1 / zn_balC2; }" @@ -2229,7 +2229,7 @@ RECORD ZNR "zone" *RAT // zone runtime info RAT. Set mainly from separate ZNI *declare "int zn_OAVAttempt( double tSup);" *declare "int zn_FVentCR();" *declare "RC zn_CondixCR( ULI ventAvail);" - *declare "RC zn_AirRequest( RSYS* rs);" + *declare "RC zn_AirRequest( RSYS* rs, int options=0);" *declare "RC zn_AirX();" *declare "RC zn_MoistureBalCR();" *declare "RC zn_ComfortCR();" @@ -2548,7 +2548,7 @@ RECORD ZNR "zone" *RAT // zone runtime info RAT. Set mainly from separate ZNI *s *e *hide DBL/*CFLOW*/ cM // 0 if floating or or active-zhx heat cap flow to zone (after leaks) for current mode (Btuh/F) *s *e *hide DBL qM // 0 if floating or power of active zhx: q to yeild setpoint (Btuh). *s *e *hide CFLOW cTot // total air heat/cool flow (heat cap units) to zone (after duct leaks): bSo+bStO[md]+cM. - *s *e DBL zn_qsHvac // subhour total (sensible) power of all hvac (Btuh) + *s *e DBL zn_qsHvac // subhour total (sensible) power of all hvac, Btuh // NB: power (Btuh) q is *subhrDur'd to yield energy (Btu) q's for results. *s *e DBL zn_qlHvac // subhour total latent power (Btuh) (moisture * 1061) likewise #if 0 // unused, 9-12 @@ -3057,21 +3057,24 @@ RECORD DUCTSEGRES_IVL_SUB "DUCTSEG interval results sub" *SUBSTRUCT // DUCTSEGre *declare "void dsr_Clear() { memset(this, 0, sizeof(DUCTSEGRES_IVL_SUB)); }" *declare "void dsr_Accum( const DUCTSEGRES_IVL_SUB* src, int firstFlg, int lastFlg);" +#if 0 // future: if needed *declare "void dsr_SetPrior() const;" +#endif INT n // number of intervals added together in this one (divisor for averages) // (maintained but unused) // float members: qhCond is first, xx is last (see code) // heating values when rsmHEAT, cooling otherwise (rsmCOOL or rsmOAV) - ENERGY qhCond // heating conduction - ENERGY qhLeakSen // heating leakage sensible - ENERGY qhTotSen // heating total sensible + // + = out of duct + ENERGY qhCond // heating conduction, Btu + ENERGY qhLeakSen // heating leakage sensible, Btu + ENERGY qhTotSen // heating total sensible, Btu - ENERGY qcCond // cooling conduction - ENERGY qcLeakSen // cooling leakage sensible - ENERGY qcTotSen // cooling total sensible - ENERGY qcLeakLat // cooling leakage latent + ENERGY qcCond // cooling conduction, Btu + ENERGY qcLeakSen // cooling leakage sensible, Btu + ENERGY qcTotSen // cooling total sensible, Btu + ENERGY qcLeakLat // cooling leakage latent, Btu *END // DUCTSEGRES_IVL_SUB //============================================================================= @@ -3089,8 +3092,10 @@ RECORD DUCTSEGRES_SUB "DUCTSEG results sub" *SUBSTRUCT RECORD DUCTSEGRES "DUCTSEGRes" *RAT // holds DUCTSEG and all-DUCTSEG simulation results (later at subscript #DUCTSEG + 1) // name: same as corresponding DUCTSEG, or sum_of_DUCTSEG. *e *noname *nest DUCTSEGRES_SUB curr // current year,month,day,hour,subhr results, stored at end each interval +#if 0 // future: if needed *nest DUCTSEGRES_SUB prior // prior year,month,day,hour,subhr results, available throughout interval // CAUTION: code assumes prior and curr arranged so can offset from curr to prior. eg in cnguts.cpp. +#endif *END // DUCTSEGRES //============================================================================= RECORD RSYS "RSYS" *RAT // residential HVAC system @@ -3141,11 +3146,14 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *declare "float rs_TsupVarFlow( float fAmf, AIRSTATE& as);" *declare "double rs_ZoneAirRequest( double znAmfSup, int iAux=0);" *declare "RC rs_AllocateZoneAir();" -*declare "RC rs_AllocateZoneAirVC();" -*declare "RC rs_TotalAirRequest( float speedF);" -*declare "double rs_SpeedFMismatch( double& speedF);" -*declare "double rs_FindAirFlow();" +*declare "RC rs_TotalAirRequestForSpeedF( float speedF, int options=0);" +*declare "double rs_FxCapForSpeedF( double& speedF);" +*declare "RC rs_FindRequiredSpeedF();" +#if 0 // incomplete/unused ideas *declare "void rs_AvgZoneCond();" +#declare "float rs_SenHeatDelivered();" +*declare "void rs_HeatDelivered( float& qhSen, float& qcSen, float& qcLat);" +#endif *declare "double rs_AmfRequired( double tSup);" *declare "float rs_ACReqCap95( float senLoad);" *declare "RC rs_FinalizeSh();" @@ -3167,7 +3175,8 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *declare "bool rs_IsVCClg() const { return rs_IsASHPVC(); }" *declare "bool rs_IsVC() const { return rs_IsASHPVC(); }" *declare "bool rs_IsASHPVC() const { return rs_type == C_RSYSTYCH_ASHPVC; }" -*declare "bool rs_IsElecHeat() const { return rs_type==C_RSYSTYCH_ACRES || rs_type==C_RSYSTYCH_ACPKGRMRES || rs_type==C_RSYSTYCH_RES || rs_IsASHP(); }" +*declare "bool rs_IsElecHeat() const { return rs_IsASHP() || rs_type==C_RSYSTYCH_ACRES || rs_type==C_RSYSTYCH_ACPKGRMRES || rs_type==C_RSYSTYCH_RES; }" +*declare "bool rs_IsFuelAuxH() const { return rs_typeAuxH == C_AUXHEATTY_FURN; }" *declare "bool rs_IsPkgRoom() const { return rs_IsASHPPkgRoom() || rs_IsACPkgRoom(); }" *declare "bool rs_IsASHPPkgRoom() const { return rs_type==C_RSYSTYCH_ASHPPKGRM; }" *declare "bool rs_IsACPkgRoom() const { return rs_type==C_RSYSTYCH_ACPKGRM || rs_type==C_RSYSTYCH_ACPKGRMFURN || rs_type==C_RSYSTYCH_ACPKGRMRES; }" @@ -3185,22 +3194,21 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *declare "float rs_HSPFCheckASHP( int options=0);" *declare "static float rs_DHR( float capHt);" *declare "RC rs_SetupASHP();" +*declare "RC rs_SetRunConstantsASHP();" *declare "float rs_CapRat1747() const;" *declare "float rs_CapRat0547() const;" *declare "float rs_Cap35Default( float cap47, float cap17) const;" *declare "float rs_Inp35Default( float inp47, float inp17) const;" *declare "float rs_Cap05Default( float cap47, float cap17) const;" -*declare "RC rs_MinSpdDefaultsHtg();" *declare "float rs_CapHtCurSpeedF() const;" +*declare "float rs_CapDfHtCurSpeedF() const;" *declare "float rs_InpHtCurSpeedF() const;" -*declare "RC rs_CalcInputsAndSlopesASHP();" -*declare "RC rs_SetupBtwxtHtg();" *declare "float rs_Cap115Default( float cap95, float cap82) const;" *declare "float rs_Inp115Default( float inp95, float inp82) const;" *declare "RC rs_SetDefaultsClg();" *declare "RC rs_SetupBtwxtClg();" *declare "RC rs_SetupBtwxt( class Btwxt::RegularGridInterpolator* &pRgi, const std::vector ppV);" -*declare "RC rs_GetPerfBtwxt( class Btwxt::RegularGridInterpolator* pRgi, float tdbOut, float& capH, float& inp, float& capHt, float& inpHt);" +*declare "RC rs_GetPerfBtwxt( class Btwxt::RegularGridInterpolator* pRgi, float tdbOut, float& cap, float& inp, float& capMin, float& inpMin);" *declare "void rs_AuszFinalASHP();" *declare "float rs_CapEffASHP( float tdbout=-999.f, int ashpModel=0, float fanHRtd=-1.f, float fanHOpr=-1.f, float COPAdjF=-1.f);" *declare "float rs_CapEffASHP2();" @@ -3338,9 +3346,12 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *array 2 *r FLOAT rs_ASHPCapF // capacity slope: cap(T) = cap17 + CapF*(T - 17) *array 2 *r FLOAT rs_ASHPInpF // input slope: inp(T) = inp17 + InpF*(T - 17) -*declare "class Btwxt::RegularGridInterpolator* rs_pRgiHtg;" // ASHPVC heating performance map +*declare "class Btwxt::RegularGridInterpolator* rs_pRgiHtg[ 2];" // ASHPVC heating performance map // values in map are derived from rs_cap47 etc. - // thus include fan heat/power + // thus include rated fan heat/power + // [ 0]: integrated (degraded re defrost) + // [ 1]: steady state (no defrost degrade) + // (valid 17 - 47 F only) *r AUXHEATTY rs_typeAuxH // type of auxiliary heat (C_AUXHEATTY_NONE, _RES, _FURN) *r AUXHEATCTRL rs_ctrlAuxH // auxiliary heating control @@ -3353,6 +3364,8 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system // allows use of estimated rs_capAuxH during ASHP autosize *f FLOAT_GZ rs_AFUEAuxH // auxiliary furnace heating AFUE (assumed constant), default 0.9 *f FLOAT_GZ rs_effAuxH // aux heat efficiency (= rs_AFUEAuxH or 1) +*r *e INT rs_underSizedAuxCount // # of subhours having aux heat capacity < compressor capacity + // iff rs_ctrlAuxH != C_AUXHEATCTRL_CYCLE and rs_capAuxH > 0 *h FLOAT rs_ASHPLockOutT // air source heat pump compressor lockout temp, F // compressor capacity assumed 0 if outdoor tdb < tLockOut // default is -999 (no lockout) @@ -3370,10 +3383,11 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *f *e FLOAT_GEZ rs_capH_AsNov; // raw autoSized capH w/o oversizing (including fan), Btuh // autoSize code ASSUMES x, x_As, x_AsNov together for access thru one ptr. cuprobe.cpp's name search also requires together. +// *r FLOAT rs_fanPwrRtdH // fan power include in ASHP rated cap/COP/HSPF, W/cfm *f FLOAT rs_fanHRtdH // fan heat included in ASHP rated cap/COP/HSPF, Btuh // (generally estimated from rs_fanHRtdC) -*f FLOAT_GEZ rs_fanPwrH; // heating fan power, W/cfm -*f *e FLOAT rs_fanHeatH // heating fan total electrical power, Btuh +*r FLOAT_GEZ rs_fanPwrH; // operating heating fan power, W/cfm +*f *e FLOAT rs_fanHeatH // operating heating fan electrical power at cfm, Btuh // used re both electricity use and air heat gain *f *e FLOAT rs_amfH; // heating dry air mass flow rate, lbm/hr *s *e FLOAT rs_effHt // current step full load heating efficiency, dimless @@ -3390,8 +3404,6 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system // = fan heat only if compressor unavailable *s *e FLOAT rs_inpHtMin // current min speed compressor input power *s *e FLOAT rs_capDfHtMin // current step min speed defrost heating capacity, Btuh -*s *e FLOAT rs_PLF // efficiency degradation due to cycling - // PLF = PartLoadEfficiency / FullLoadEfficency *s *e FLOAT rs_COPHtAdj // current step adjusted heating compressor COP (reflecting all adjustments) // compression cooling @@ -3482,6 +3494,8 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *s *e FLOAT rs_COPHtAdj // current step adjusted heating compressor COP (reflecting all adjustments) #endif +// shared results (set for both heating and cooling) + // Central outside air vent (aka OAV) *i RSYSOAVTYCH rs_OAVType // type: NONE, FIXEDFLOW (aka SmartVent), VARFLOW (aka SmartBreeze) *i TI rs_OAVReliefZi // OAV relief zone index @@ -3508,22 +3522,36 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *declare "int rs_DsHC() const { return rs_mode > rsmHEAT; }" // 0: use htg ducts, 1: use clg *declare "int rs_Dsi( int iSR, int iHC=-1) const { if (iHC<0) iHC=rs_DsHC(); return rs_ducts[ iHC].dsi[ iSR]; }" +*s FLOAT_GZ rs_fEffH; // heating efficiency adjustment factor (applied to substep efficency), default=1 +*s FLOAT_GZ rs_fEffC; // cooling efficiency adjustment factor (applied to substep efficency), default=1 + *s FLOAT rs_tdbOut // outdoor dry-bulb temp at condensor or other outdoor components, F // default = from project weather data source (generally weather file) // note: default varies subhourly but input expression is hourly *h RSYSMODECTRLCH rs_modeCtrl // mode control (off, heat, cool, auto } *s *e INT rs_mode // mode (rsmOFF, rsmHEAT, rsmCOOL, rsmOAV ) *s INT rs_modeLs // last step mode (rsmOFF, rsmHEAT, rsmCOOL, rsmOAV ) -*s *e DBL rs_amf // current dry air mass flow rate, lbm/hr - // = flow at blower / coil / furnace HX etc. - // set per rsMode from rs_amfH, rs_amfC, or OAV algorithm - // modified by rs_speedF +*s INT rs_modeLastActive // last active mode (rsmOFF, rsmHEAT, rsmCOOL, rsmOAV ) + // (allows guess re e.g. heating vs cooling season) *array 2 *s *e DBL rs_amfReq // total AMF (at system) requested by zones, lbm/hr // [ 0] = primary source (compressor or burner) // [ 1] = prim+aux or aux-only (per rs_auxControl) // ASHP heating only else 0 -*s *e FLOAT rs_loadF // current step load fraction = sensible load / capacity at current speed -*s FLOAT rs_loadFLs // last step load fraction (for probe access at step beg) +*array 2 *s *e FLOAT rs_znLoad; // total load to hold zone(s) at setpoint, Btuh + // [ 0] = primary (compreesor or burner) + // [ 1] = prim+aux or aux-only (per rs_auxControl) +// calculated results +*s *e FLOAT rs_capSenNetFS // net sensible capacity at full speed, Btuh + +*s *e DBL rs_amf // current dry air mass flow rate, lbm/hr + // = flow at blower / coil / furnace HX etc. + // set per rsMode from rs_amfH, rs_amfC, or OAV algorithm + // modified by rs_speedF +*s *e FLOAT rs_PLF // efficiency degradation due to cycling + // PLF = PartLoadEfficiency / FullLoadEfficency +*s *e FLOAT rs_PLR // current step part load ratio = sensible load / full-speed sensible capacity +*s *e FLOAT rs_loadF // current step load fraction = sensible load / current-speed sensible capacity +*s FLOAT rs_loadFLs // last step loadF (for probe access at step beg) *s *e FLOAT rs_runF // primary (e.g. compressor) run fraction *s *e FLOAT rs_speedF // primary (compressor) current speed fraction // fixed speed: 1; var spd: <= 1 per load @@ -3533,19 +3561,17 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *s *e DBL rs_outSen // average primary (compressor, burner, ) sensible heat delivery rate for last subhr, Btuh // (includes runF/speedF, does not include fan, defrost, or aux heat) // used for both heating and cooling -*s *e DBL rs_outLat // ditto latent, Btuh -*s *e DBL rs_outFan // ditto fan heat added to air stream, Btuh -*s *e DBL rs_outDefrost // ditto defrost heat, Btuh +*s *e DBL rs_outLat // average latent heat delivery rate, Btuh +*s *e DBL rs_outFan // average fan heat added to air stream, Btuh +*s *e DBL rs_outDefrost // averate defrost heat, Btuh // = typically resistance heat added to prevent cold supply air // 0 if not ASHP or if defrost not active -*s *e DBL rs_outAux // ditto auxiliary heat added to air stream, Btuh (for ASHP) +*s *e DBL rs_outAux // average auxiliary heat added to air stream, Btuh (for ASHP) *s *e DBL rs_outSenTot // average total sensible heat delivery rate for last subhr, Btuh // = rs_outSen + rs_outFan + rs_outDefrost + rs_outAux - // efficiency adjustment factors applied to substep efficiency - // allows modification of input energy requirements. Default=1 -*s FLOAT_GZ rs_fEffH; // heating -*s FLOAT_GZ rs_fEffC; // cooling +*y *e *array 2 LI rs_calcCount; // # calls to rs_SupplyAirState, re optimizing rs_FindRequiredSpeedF() + // [ 0] = heating, [1] = cooling *s *e DBL rs_inPrimary // primary input, Btuh (compressor, burner, ) *s *e DBL rs_inFan // fan electricity input, Btuh (not kWh) @@ -3555,25 +3581,65 @@ RECORD RSYS "RSYS" *RAT // residential HVAC system *END // RSYS //============================================================================= RECORD RSYSRES_IVL_SUB "RSYS interval results sub" *SUBSTRUCT // RSYSresult substruct for RSYSRES - *declare "void rsr_Accum( const RSYSRES_IVL_SUB* src, int firstFlg, int lastFlg);" *declare "void rsr_SetPrior() const;" - - INT n // number of intervals added together in this one (divisor for averages) - // (maintained but unused) - - // float members to add, hrsOn is first, qcSenNet is last (see code) - HOURS hrsOn // operating hours - HOURS hrsOnAux // auxiliary heating operating hours (ASHP only) - // not including defrost - ENERGY qh // heating output w/o fan, w/o defrost, Btu - ENERGY qcSen // sensible cooling output w/o fan, Btu - ENERGY qcLat // latent cooing output, Btu - ENERGY qFan // fan heat, Btu - ENERGY qDefrost // defrost (strip) heat output, Btu - ENERGY qAux // auxiliary heat output, Btu - ENERGY qhNet // heating net output, Btu - ENERGY qcSenNet // sensible cooling net output, Btu + *declare "void rsr_Zero() { memset( this, 0, sizeof( RSYSRES_IVL_SUB)); }" // 0 all (bitwise) + + INT n // number of intervals added together in this one (divisor for averages) + // (maintained but unused) + + // float members to add, hrsOn MUST be first (else change rsr_Accum() etc) + HOURS hrsOn // operating hours + HOURS hrsOnAux // auxiliary heating operating hours (ASHP only) + // does not include defrost + + ENERGY qhPrimary // heating output w/o fan, w/o defrost, Btu + ENERGY qhDefrost // defrost (strip) heat output, Btu + ENERGY qhAux // auxiliary heat output, Btu + ENERGY qhFan // heating mode fan heat, Btu + ENERGY qhNet // heating mode net output (qhPrimary+qhDefrost+qhAux+qhFan), Btu + + ENERGY qcSen // sensible cooling output w/o fan (< 0), Btu + ENERGY qcLat // latent cooling output (<0), Btu + ENERGY qcFan // cooling mode fan heat, Btu + ENERGY qcSenNet // sensible cooling net output (qcSen+qcFan), Btu + + ENERGY qvFan // OAV mode fan heat, Btu + + ENERGY fhPrimary // heating mode primary fuel, Btu + ENERGY fhDefrost // heating mode defrost fuel, Btu + ENERGY fhAux // heating mode auxiliary fuel, Btu + ENERGY fhParasitic // heating mode parasitic fuel, Btu + ENERGY fhTot // heating mode total fuel, Btu + // primary+defrost+aux+parasitics + + ENERGY ehPrimary // heating mode primary electicity use, Btu + // (compressor, resistance, ) + ENERGY ehDefrost // heating mode defrost (strip) electricity use, Btu + ENERGY ehAux // heating mode auxiliary (strip) electricity use, Btu + ENERGY ehFan // heating mode fan electricity use, Btu + ENERGY ehParasitic // heating mode parasitic electricity, Btu + ENERGY ehTot // heating mode total electricity use, Btu + // primary+defrost+aux+fan+parasitic + + ENERGY ecPrimary // cooling mode compressor electricity use, Btu + ENERGY ecFan // cooling mode fan electricity use, Btu + ENERGY ecParasitic // cooling mode parasitic electricity, Btu + ENERGY ecTot // cooling mode total electricity use, Btu + // primary+fan+parasitic + + ENERGY evFan // OAV mode fan electricity use, Btu + ENERGY evParasitic // OAV mode parasitic electricity use, Btu + ENERGY evTot // OAV mode total electricity use, Btu + // fan+parasistic + + // zone energy transfers (must be contiguous and in order, see code) + ENERGY qhZoneSen // heating mode sensible transfer to zone(s) (after dist losses), Btu + ENERGY qhZoneLat // heating mode latent transfer to zone(s) (after dist losses), Btu + ENERGY qcZoneSen // cooling mode sensible transfer to zone(s) (after dist losses), Btu + ENERGY qcZoneLat // cooling mode latent transfer to zone(s) (after dist losses), Btu + ENERGY qvZoneSen // OAV mode sensible transfer to zone(s) (after dist losses), Btu + ENERGY qvZoneLat // OAV mode latent transfer to zone(s) (after dist losses), Btu *END // RSYSRES_IVL_SUB //============================================================================= @@ -4200,7 +4266,7 @@ RECORD DHWHEATER "DHWHeater" *RAT // input / runtime DHW heater *s FLOAT wh_ashpTSrc; // ASHP source temperature, F // when wh_ashpTSrc set // - wh_ashpSrcZnTi ignored - // - heat tranfer ignored + // - heat transfer ignored *i FLOAT_GZ wh_ashpResUse; // resistance heat parameter for // Ecotope HPWH model iff C_WHASHPTYCH_GENERIC // default = 7.22, units / meaning unknown diff --git a/src/CSE.cpp b/src/CSE.cpp index f724bbc42..ba343ee7b 100644 --- a/src/CSE.cpp +++ b/src/CSE.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 1997-2019 The CSE Authors. All rights reserved. +// Copyright (c) 1997-2021 The CSE Authors. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file. diff --git a/src/CVPAK.CPP b/src/CVPAK.CPP index 054ce79fb..a2c18c9af 100644 --- a/src/CVPAK.CPP +++ b/src/CVPAK.CPP @@ -342,6 +342,11 @@ p wsign = !(pv==FMTPVNULL && val >= 0.); // sign width if (i != l) *(str+l) = ' '; // append space unless just put % there *(str+l+1) = '\0'; // reterminate } +#endif +#if 0 +x consider changing "-0" to "0"? +x if (strcmp("-0", str) == 0) +x printf("\n-0"); #endif break; diff --git a/src/DHWCalc.cpp b/src/DHWCalc.cpp index 1ab7e7a74..b2c1b03d7 100644 --- a/src/DHWCalc.cpp +++ b/src/DHWCalc.cpp @@ -2788,6 +2788,11 @@ RC HPWHLINK::hw_InitResistance( // set up HPWH has EF-rated resistance heater { C_WHASHPTYCH_NYLEC185A_MP, hwatLARGE | HPWH::MODELS_NyleC185A_MP }, { C_WHASHPTYCH_NYLEC250A_MP, hwatLARGE | HPWH::MODELS_NyleC250A_MP }, + { C_WHASHPTYCH_RHEEM_HPHD60HNU_201_MP, hwatLARGE | HPWH::MODELS_RHEEM_HPHD60HNU_201_MP }, + { C_WHASHPTYCH_RHEEM_HPHD60VNU_201_MP, hwatLARGE | HPWH::MODELS_RHEEM_HPHD60VNU_201_MP }, + { C_WHASHPTYCH_RHEEM_HPHD135HNU_483_MP, hwatLARGE | HPWH::MODELS_RHEEM_HPHD135HNU_483_MP }, + { C_WHASHPTYCH_RHEEM_HPHD135VNU_483_MP, hwatLARGE | HPWH::MODELS_RHEEM_HPHD135VNU_483_MP }, + { C_WHASHPTYCH_SCALABLE_SP, hwatLARGE | HPWH::MODELS_TamScalable_SP }, { 32767, HPWH::MODELS(-1) } }; diff --git a/src/EXMAN.CPP b/src/EXMAN.CPP index d969393cc..93c1a9f9f 100644 --- a/src/EXMAN.CPP +++ b/src/EXMAN.CPP @@ -913,7 +913,7 @@ LOCAL RC FC NEAR addStore( // register use of expression h in basAnc record //STATREF version at end file //=========================================================================== -RC FC addChafIf ( // conditionally register change flag in basAnc record for expr. (formerly addChafRatIf, 7-92) +RC addChafIf ( // conditionally register change flag in basAnc record for expr. (formerly addChafRatIf, 7-92) NANDAT *pv, // if this contains a "nandle" on a live run-time expression, change flag will be registered; else not // where to ++ when expression changes: @@ -948,7 +948,6 @@ RC FC addChafIf ( // conditionally register change flag in basAnc record for ex w->o = o; // ... (as can happen at reallocation) return RCOK; } // addChafIf - //=========================================================================== RC FC exEvEvf( // evaluate expressions and do their updates diff --git a/src/EXMAN.H b/src/EXMAN.H index aec9ee5e8..1c9a0436c 100644 --- a/src/EXMAN.H +++ b/src/EXMAN.H @@ -48,7 +48,7 @@ void FC extClr( void); RC FC exClrExUses( BOO jfc); // arg added 10-95 RC FC exWalkRecs( void); // RC FC exReg( USI ancN, TI i, USI o); if wanted: restore when needed -RC FC addChafIf ( NANDAT *pv, USI ancN, TI i, USI o); +RC addChafIf ( NANDAT *pv, USI ancN, TI i, USI o); RC FC exEvEvf( USI evf, USI useCl); RC FC exInfo( USI h, USI *pEvf, USI *pTy, NANDAT *pv ); const char* FC whatEx( USI h); diff --git a/src/RCDEF.CPP b/src/RCDEF.CPP index 52025d284..192f1c58c 100644 --- a/src/RCDEF.CPP +++ b/src/RCDEF.CPP @@ -208,7 +208,7 @@ const int MAXFDREC=600; // Max fields in a record. Separated from MAXFIELDS, 4- const int MAXDTH=600; // max+1 data type handle. 800-->200 1-92 ->400 3-92. ->432(0x1b0) 2-94. ->352 (0x160) 5-95. // 352->400, 1-16; 400->500, 4-16; 500->600, 9-20 -const int MAXDTC=80; // maximum number of choices for choice data type. +const int MAXDTC=90; // maximum number of choices for choice data type. //#define MAXARRAY 20 // largest number of record array structure members * NOT checked, but should be. #define MAXNAMEL 40 // Max length of name, etc ("s" token) #define MAXQSTRL 512 /* Max length for quoted string ("q" token). assumed >= MAXNAMEL for array allocations. @@ -896,7 +896,7 @@ LOCAL void dtypes( // do data types rcderr( "choicb/n '%s' -- main choice cannot be alias", Sval[ 0]); if (nchoices >= MAXDTC) - rcderr( "Discarding choices in excess of %d.", (INT)MAXDTC); + rcderr( "Discarding choices in excess of %d.", MAXDTC); else { // check/fill choice's slot in Dttab entry diff --git a/test/ASHP_DFNG.cse b/test/ASHP_DFNG.cse index 6de5d9687..2c1724628 100644 --- a/test/ASHP_DFNG.cse +++ b/test/ASHP_DFNG.cse @@ -1596,6 +1596,51 @@ PVARRAY "pvarray 1" REPORT rpType=MTR rpMeter = MtrElec rpFreq=MONTH REPORT rpType=MTR rpMeter = MtrNatGas rpFreq=MONTH +#define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ + RXCOL colHead=WhenHead colVal=when colWid=3 \ + RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ + RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ + RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ + RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ + RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ + RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ + RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ + RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ + RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ + RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ + RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ + RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ + RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ + RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ + RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ + RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ + RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ + RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ + RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ + RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ + RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ + RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ + RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + +REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYSRES Res Alt" +SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.001,3) +REPORT rpType=UDT rpFreq=YEAR rpHeader = No +SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.001,3) + + #define SYSINFCOOL( s) REPORT rpType = UDT rpFreq=Year rpTitle="HVAC Cooling Info" \ REPORTCOL colVal = s colHead="Sys #" colDec=0 colWid=5 \ REPORTCOL colVal = @Rsys[s].name colHead="System" colDec=0 colWid=24 \ @@ -1635,12 +1680,13 @@ SYSINFHEAT( 1) #define RSYSHRCOLS( s, IVL) \ Reportcol colVal=@RsysRes[ s].IVL.hrsOn colHead="hrsOn" colDec=3 colWid=5 \ Reportcol colVal=@RsysRes[ s].IVL.hrsOnAux colHead="hrsOnAux" colDec=3 colWid=8 \ - Reportcol colVal=@RsysRes[ s].IVL.qh/1000 colHead="qh" colDec=0 colWid=7 \ + Reportcol colVal=@RsysRes[ s].IVL.qhPrimary/1000 colHead="qh" colDec=0 colWid=7 \ Reportcol colVal=@RsysRes[ s].IVL.qcSen/1000 colHead="qcSen" colDec=0 colWid=7 \ Reportcol colVal=@RsysRes[ s].IVL.qcLat/1000 colHead="qcLat" colDec=0 colWid=7 \ - Reportcol colVal=@RsysRes[ s].IVL.qFan/1000 colHead="qFan" colDec=0 colWid=7 \ - Reportcol colVal=@RsysRes[ s].IVL.qDefrost/1000 colHead="qDefrost" colDec=0 colWid=7 \ - Reportcol colVal=@RsysRes[ s].IVL.qAux/1000 colHead="qAux" colDec=0 colWid=7 + Reportcol colVal=@RsysRes[ s].IVL.qhFan/1000 colHead="qhFan" colDec=0 colWid=7 \ + Reportcol colVal=@RsysRes[ s].IVL.qcFan/1000 colHead="qcFan" colDec=0 colWid=7 \ + Reportcol colVal=@RsysRes[ s].IVL.qhDefrost/1000 colHead="qDefrost" colDec=0 colWid=7 \ + Reportcol colVal=@RsysRes[ s].IVL.qhAux/1000 colHead="qAux" colDec=0 colWid=7 Report rpType=UDT rpFreq=hour rpDayBeg=jan 4 rpDayEnd=jan 5 reportcol colVal=$Month colHead="Month" colWid = 5 @@ -1708,20 +1754,31 @@ ALTER RSYS "rsys1" rsCtrlAuxH = Cycle rsAFUEAuxH = .93 +ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Furn Cycle" + RUN ALTER RSYS "rsys1" rsTypeAuxH = Furnace rsCtrlAuxH = Alternate + rsParFuel = 100 rsAFUEAuxH = .93 +ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Furn Alt" + RUN ALTER RSYS "rsys1" rsTypeAuxH = Furnace rsCtrlAuxH = LockOut + UNSET rsParFuel rsAFUEAuxH = .93 +ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Furn Lockout" + RUN ALTER RSYS "rsys1" @@ -1729,6 +1786,9 @@ ALTER RSYS "rsys1" rsCtrlAuxH = Cycle rsASHPLockOutT = 35 +ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Res Cycle LO35" + RUN diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 02a466628..57d71ba57 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -43,6 +43,7 @@ set(files ashptest2 ashpPkgRoom ashp_dfng + ashpvc2 herv oavtest2 bgtest diff --git a/test/HERV.cse b/test/HERV.cse index 597e1b9c5..b2a6c86e1 100644 --- a/test/HERV.cse +++ b/test/HERV.cse @@ -267,7 +267,9 @@ RSYS MySys rsFSize = 1 //ACM size factor (default = 1) rsAFUE =.71 - rsFanPwrH = 0.58 //W/cfm (default = 0.365) + rsFanPwrH = 0.58 //W/cfm (default = 0.365) + rsParFuel = $month >= 10 || $month <= 4 ? 100 : 0 + rsParElec = ($tdbo > 80)*40 METER SysMtr; @@ -288,6 +290,51 @@ Report rpType=UDT rpFreq=Year rpTitle="MySys Characteristics" #endif REPORT rpType=MTR rpMeter = SysMtr rpFreq=Month + + #define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ + RXCOL colHead=WhenHead colVal=when colWid=3 \ + RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ + RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ + RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ + RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ + RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ + RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ + RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ + RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ + RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ + RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ + RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ + RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ + RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ + RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ + RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ + RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ + RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ + RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ + RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ + RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ + RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ + RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ + RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + +REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYSRES Furn" +SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.001,3) +REPORT rpType=UDT rpFreq=YEAR rpHeader = No +SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.001,3) + REPORT rpType=ZDD rpZone="Z1" diff --git a/test/OAVTest2.cse b/test/OAVTest2.cse index 4359544fb..9823da8c4 100644 --- a/test/OAVTest2.cse +++ b/test/OAVTest2.cse @@ -1115,6 +1115,7 @@ RSYS "Sys1" rsCap47 = 20000 rsCap17 = 18000 rsHSPF = 8.7 rsCapAuxH = 25000 + rsParElec = ($tdboHrAv < 50) * 40 + 10 rsFxCapH = 1.5 rsElecMtr = "MtrElec" @@ -1215,6 +1216,51 @@ Reportcol colVal=@Meter[MtrFuel].Y.htg/CSEBtuSF colHead="HtgE" colDec=0 colWid=8 Report rpType=MTR rpMeter=MtrElec rpFreq=MONTH rpBtuSf=1000 Report rpType=MTR rpMeter=MtrFuel rpFreq=MONTH rpBtuSf=1000 +#define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ + RXCOL colHead=WhenHead colVal=when colWid=3 \ + RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ + RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ + RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ + RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ + RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ + RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ + RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ + RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ + RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ + RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ + RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ + RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ + RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ + RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ + RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ + RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ + RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ + RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ + RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ + RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ + RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ + RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ + RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + +REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYSRES OAV" +SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.001,3) +REPORT rpType=UDT rpFreq=YEAR rpHeader = No +SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.001,3) + + // hourly report DEFTYPE Report HR rpType=UDT rpFreq=HOUR rpDayBeg= HD1 rpDayEnd=HD1 rpCPL=163 Reportcol colVal=$hour colHead="Hr" colWid=2 colDec=0 @@ -1294,4 +1340,17 @@ DEFTYPE Report DAYTOT rpType=UDT rpFreq=Day rpHeader=No rpDayBeg= HD1; rpDayEnd RUN - $EOF + +ALTER RSYS "Sys1" + rsType = ACFurnace + + rsCapH = 50000 + unset rsCap47 + unset rsCap17 + unset rsHSPF + unset rsCapAuxH + rsParFuel = $dayOfYear < 100 || $dayOfYear > oct 15 ? 37 : 0; + +RUN + +$EOF diff --git a/test/ashpvc2.cse b/test/ashpvc2.cse new file mode 100644 index 000000000..c5e150191 --- /dev/null +++ b/test/ashpvc2.cse @@ -0,0 +1,2526 @@ + #define RunDateFmt 12:05, Mon, Jan 07, 2019 + #define RunID 7 // Proposed + #define AnalysisType 13 // Proposed and Standard + #define CompCodeBase 2019 // CA2019 + #define StdDesignBase 2019 // CA2019 + #define StandardsVersion 2020 // Compliance 2020 + #define DesignRatingBase 2014 // RESNET2014 + #define SEASONCHANGESETPT 60 + #define FANVENTLOCKOUTTEMP 68 + #define ISSEASONCOOLING (@weather.taDbAvg07 > SEASONCHANGESETPT) + #define FANVENTAVAIL 0 // (@weather.taDbAvg07 > FANVENTLOCKOUTTEMP) + #define WINDOWVENTAVAIL 0 // ($hour < 24 && ($hour > 12 || $radDiff > 1)) + #define HWUSEF_WD hourval( 0.014, 0.008, 0.009, 0.011, 0.020, 0.044, 0.089, 0.107, 0.089, 0.066, 0.052, 0.038, 0.036, 0.033, 0.032, 0.026, 0.042, 0.048, 0.052, 0.047, 0.042, 0.039, 0.036, 0.022 ) + #define HWUSEF_WE hourval( 0.018, 0.010, 0.009, 0.008, 0.015, 0.023, 0.026, 0.047, 0.077, 0.083, 0.074, 0.061, 0.051, 0.043, 0.039, 0.039, 0.052, 0.058, 0.056, 0.052, 0.047, 0.044, 0.040, 0.028 ) + #define ShwrFLOWF 1 + #define ShwrDRAINHREFF 0 + #define CwshHOTF 0.22 + #define CwshUSEF 2.03 + #define FaucHOTF 0.5 + #define FaucFlowF 1 + #define BathFLOWF 1 + #define BathDRAINHREFF 0 + #define DwshFLOWF 1 + #define Cook_WD hourval( .005,.004,.004,.004,.004,.014,.019,.025,.026,.022,.021,.029,.035,.032,.034,.052,.115,.193,.180,.098,.042,.020,.012,.010) + #define Cook_WEH hourval( .005,.004,.003,.003,.003,.005,.010,.027,.048,.048,.046,.055,.063,.059,.062,.068,.091,.139,.129,.072,.032,.014,.009,.005) + #define TV_WD hourval( .035,.026,.023,.022,.021,.021,.025,.032,.038,.040,.038,.038,.041,.042,.042,.041,.044,.049,.056,.064,.070,.074,.067,.051) + #define TV_WEH hourval( .035,.027,.022,.021,.020,.020,.022,.029,.037,.043,.042,.039,.040,.042,.045,.048,.051,.052,.056,.061,.065,.069,.064,.050) + #define STB_WD hourval( .040,.040,.040,.040,.040,.040,.040,.041,.040,.040,.040,.040,.040,.040,.041,.041,.042,.043,.044,.045,.046,.047,.045,.045) + #define STB_WEH hourval( .041,.041,.040,.041,.040,.040,.040,.040,.041,.042,.042,.041,.041,.041,.041,.042,.042,.043,.044,.044,.045,.045,.044,.039) + #define Comp_WD hourval( .036,.033,.032,.032,.031,.032,.034,.036,.039,.043,.045,.045,.046,.046,.046,.047,.048,.049,.049,.049,.049,.048,.044,.041) + #define Comp_WEH hourval( .036,.034,.033,.033,.032,.033,.033,.035,.038,.042,.044,.045,.046,.047,.047,.048,.049,.049,.048,.048,.048,.047,.044,.041) + #define RMEL_WD hourval( .037,.035,.034,.034,.032,.036,.042,.044,.037,.032,.033,.033,.032,.033,.035,.037,.044,.053,.058,.060,.062,.060,.052,.045) + #define RMEL_WEH hourval( .037,.035,.034,.034,.032,.036,.042,.044,.037,.032,.033,.033,.032,.033,.035,.037,.044,.053,.058,.060,.062,.060,.052,.045) + #define IntLight_WD hourval( .023,.019,.015,.017,.021,.031,.042,.041,.034,.029,.027,.025,.021,.021,.021,.026,.031,.044,.084,.117,.113,.096,.063,.039) + #define IntLight_WEH hourval( .023,.019,.015,.017,.021,.031,.042,.041,.034,.029,.027,.025,.021,.021,.021,.026,.031,.044,.084,.117,.113,.096,.063,.039) + #define ExtLight_WD hourval( .046,.046,.046,.046,.046,.037,.035,.034,.033,.028,.022,.015,.012,.011,.011,.012,.019,.037,.049,.065,.091,.105,.091,.063) + #define ExtLight_WEH hourval( .046,.046,.045,.045,.046,.045,.044,.041,.036,.030,.024,.016,.012,.011,.011,.012,.019,.038,.048,.060,.083,.098,.085,.059) + #define Cook_SM choose1( $month, 1.094,1.065,1.074,0.889,0.891,0.935,0.993,0.92,0.923,0.92,1.128,1.168) + #define TV_SM choose1( $month, 1.032,.991,.986,.99,.971,.971,1.002,1.013,1.008,1.008,1.02,1.008) + #define STB_SM choose1( $month, 1.02,.84,.92,.98,.91,.94,1.05,1.06,1.06,1.14,1.03,1.050) + #define Comp_SM choose1( $month, 0.98,0.87,0.89,1.11,1.14,0.99,1.05,1.01,0.96,0.97,0.99,1.04) + #define Other_SM choose1( $month, 1.19,1.11,1.02,.93,.84,.8,.82,.88,.98,1.07,1.16,1.2) + #define RefrConst_WD hourval( -0.5436,-0.3646,-0.4044,-0.3871,-0.5341,-0.7521,-0.3747,0.0041,-0.1293,-0.4644,-0.4800,-0.4351,-0.2195,-0.3301,-0.0919,-0.1686,-0.4819,-0.4731,-0.2223,0.0604,-0.1466,-0.3214,-0.4113,-0.7701) + #define RefrConst_WEH hourval( -0.3467,-0.2779,-0.2844,-0.2954,-0.4680,-0.5127,-0.7110,-0.5662,0.0463,-0.2995,-0.2388,-0.2646,-0.2905,-0.2730,-0.3306,-0.0031,-0.4356,-0.2580,0.2384,0.1176,-0.0458,-0.0596,-0.5300,0.0197 ) + #define RefrTemp_WD hourval( 0.0195,0.0167,0.0169,0.0165,0.0183,0.0218,0.0178,0.0136,0.0151,0.0189,0.0188,0.0183,0.0156,0.0169,0.0137,0.0149,0.0197,0.0208,0.0184,0.0144,0.0166,0.0184,0.0188,0.0229) + #define RefrTemp_WEH hourval( 0.0171,0.0156,0.0155,0.0154,0.0175,0.0181,0.0212,0.0201,0.0130,0.0176,0.0165,0.0171,0.0177,0.0176,0.0182,0.0139,0.0197,0.0180,0.0121,0.0135,0.0154,0.0150,0.0205,0.0129) + #define FVCHPC 0.95 // VCHP cooling input energy factor + #define FVCHPH 0.88 // VCHP heating input energy factor + +#if 1 + repHdrL = "CZ12 VC Temp Heat Pump" + wfName = "CA_SACRAMENTO-EXECUTIVE-AP_724830S_STYP20.epw" + #define ClimateZone 12 + #define DD1 Jun 30 + #define CD1 Jul 10 + #define HD1 Dec 03 +#else + repHdrL = "CZ16 Low Temp Heat Pump" + wfName = "CA_BLUE-CANYON-AP_725845S_STYP20.epw" + #define ClimateZone 16 // CZ16 (Blue Canyon) + #define DD1 Aug 11 + #define CD1 Aug 15 + #define HD1 Jan 03 +#endif + ebTolHour = 0.001 + ebTolDay = 0.001 + ebTolMon = 0.001 + ebTolSubHr = 0.001 + jan1DOW = "THU" + skyModel = "anisotropic" + bldgAzm = 0 + dt = "YES" + heatDsTDbO = 21.2 // °F + coolDsDay = DD1 // coolDsDay + nSubSteps = 6 + wuDays = 15 + awTrigSlr = 0.3 + anTolAbs = 0.03 + anTolRel = 0.003 + auszTol = 0.05 + awTrigT = 15 + awTrigH = 1 + + DELETE Report "eb" // move from end of CSE file + +CONSTRUCTION "cc-Exterior Wall Cons" + + LAYER "cl1-Exterior Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Exterior Wall Cons" + lrMat = "m-Ins-R21-D1.5-SH0.2-C0.02183" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "cl3-Exterior Wall Cons" + lrMat = "m-Insul-R5-D1.5-SH0.35-C0.01667" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "cl4-Exterior Wall Cons" + lrMat = "m-Synthetic Stucco" // Layer material + lrThk = 0.03125 // Thickness (feet), ft + +CONSTRUCTION "fc-Exterior Wall Cons" + + LAYER "fl1-Exterior Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Exterior Wall Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "fl3-Exterior Wall Cons" + lrMat = "m-Insul-R5-D1.5-SH0.35-C0.01667" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "fl4-Exterior Wall Cons" + lrMat = "m-Synthetic Stucco" // Layer material + lrThk = 0.03125 // Thickness (feet), ft + +CONSTRUCTION "cc-Ceiling Below Attic Cons" + + LAYER "cl1-Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Ceiling Below Attic Cons" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Ceiling Below Attic Cons" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.926282 // Thickness (feet), ft + +CONSTRUCTION "fc-Ceiling Below Attic Cons" + + LAYER "fl1-Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Ceiling Below Attic Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Ceiling Below Attic Cons" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.926282 // Thickness (feet), ft + +CONSTRUCTION "cc-Interior Floor Cons" + + LAYER "cl1-Interior Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Interior Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl4-Interior Floor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "fc-Interior Floor Cons" + + LAYER "fl1-Interior Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Interior Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Interior Floor Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.9375 // Thickness (feet), ft + + LAYER "fl4-Interior Floor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "cc-Attic Roof Cons" + + LAYER "cl1-Attic Roof Cons" + lrMat = "m-Ins-R13-D1.5-SH0.2-C0.02244" // Layer material + lrThk = 0.134648 // Thickness (feet), ft + + LAYER "cl2-Attic Roof Cons" + lrMat = "m-Ins-R13-D1.5-SH0.2-C0.02244" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl4-Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl5-Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "fc-Attic Roof Cons" + + LAYER "fl2-Attic Roof Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl4-Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl5-Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "cc-Garage Attic Roof Cons" + + LAYER "cl2-Garage Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-Garage Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl4-Garage Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "fc-Garage Attic Roof Cons" + + LAYER "fl1-Garage Attic Roof Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl2-Garage Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Garage Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl4-Garage Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "cc-Ext Floor Cons" + + LAYER "cl1-Ext Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Ext Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-Ext Floor Cons" + lrMat = "m-Ins-R18-D1.5-SH0.2-C0.0162" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + +CONSTRUCTION "fc-Ext Floor Cons" + + LAYER "fl1-Ext Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Ext Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Ext Floor Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + +CONSTRUCTION "cc-Garage Ext Wall Cons" + + LAYER "cl1-Garage Ext Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Garage Ext Wall Cons" + lrMat = "m-VertWallCavity" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Garage Ext Wall Cons" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + +CONSTRUCTION "fc-Garage Ext Wall Cons" + + LAYER "fl1-Garage Ext Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Garage Ext Wall Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Garage Ext Wall Cons" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + +CONSTRUCTION "cc-Garage Ceiling Below Attic Cons" + + LAYER "cl1-Garage Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "fc-Garage Ceiling Below Attic Cons" + + LAYER "fl1-Garage Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Garage Ceiling Below Attic Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + +CONSTRUCTION "cc-R19 IntFloor Cons" + + LAYER "cl1-R19 IntFloor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-R19 IntFloor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-R19 IntFloor Cons" + lrMat = "m-Ins-R18-D1.5-SH0.2-C0.02546" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "cl4-R19 IntFloor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "fc-R19 IntFloor Cons" + + LAYER "fl1-R19 IntFloor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-R19 IntFloor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-R19 IntFloor Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "fl4-R19 IntFloor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "cc-IntWall Cons" + + LAYER "cl1-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-IntWall Cons" + lrMat = "m-Ins-R21-D1.5-SH0.2-C0.02183" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "cl3-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "fc-IntWall Cons" + + LAYER "fl1-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-IntWall Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "fl3-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "cc-Interior Floor" + + LAYER "cl1-Interior Floor" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Interior Floor" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl4-Interior Floor" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "fc-Interior Floor" + + LAYER "fl1-Interior Floor" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Interior Floor" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Interior Floor" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.9375 // Thickness (feet), ft + + LAYER "fl4-Interior Floor" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "cc-Garage Ext Wall" + + LAYER "cl1-Garage Ext Wall" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Garage Ext Wall" + lrMat = "m-VertWallCavity" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Garage Ext Wall" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + +CONSTRUCTION "fc-Garage Ext Wall" + + LAYER "fl1-Garage Ext Wall" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Garage Ext Wall" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Garage Ext Wall" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + +CONSTRUCTION "cc-Zone1ToAtticCeiling-AtcEdgWA" + + LAYER "cl1-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.449653 // Thickness (feet), ft + + LAYER "cl3-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl4-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl5-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "fc-Zone1ToAtticCeiling-AtcEdgWA" + + LAYER "fl1-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.449653 // Thickness (feet), ft + + LAYER "fl3-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl4-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl5-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "cc-Zone1ToAtticCeiling-AtcEdgWB" + + LAYER "cl1-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.635016 // Thickness (feet), ft + + LAYER "cl4-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.607639 // Thickness (feet), ft + + LAYER "cl5-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl6-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl7-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "fc-Zone1ToAtticCeiling-AtcEdgWB" + + LAYER "fl1-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.635016 // Thickness (feet), ft + + LAYER "fl4-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.607639 // Thickness (feet), ft + + LAYER "fl5-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl6-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl7-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + +CONSTRUCTION "scn-SlabConsCarpet" + + LAYER "cl1-SNEICCCarpet" + lrMat = "m-SNEICCarpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-SNEICCConcrete" + lrMat = "m-SNEICConcrete" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-SNEICCEarth" + lrMat = "m-SNEICEarth" // Layer material + lrThk = 2 // Thickness (feet), ft + +CONSTRUCTION "scn-SlabConsExposed" + + LAYER "cl1-SNEIXCConcrete" + lrMat = "m-SNEICConcrete" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl2-SNEIXCEarth" + lrMat = "m-SNEICEarth" // Layer material + lrThk = 2 // Thickness (feet), ft + +CONSTRUCTION "c-Zone1DoorFront-dr" + + LAYER "l-Zone1DoorFront-dr" + lrMat = "m-Zone1DoorFront-dr" // Layer material + +CONSTRUCTION "c-Zone1DoorLeft-dr" + + LAYER "l-Zone1DoorLeft-dr" + lrMat = "m-Zone1DoorLeft-dr" // Layer material + +CONSTRUCTION "c-Zone1DoorBack-dr" + + LAYER "l-Zone1DoorBack-dr" + lrMat = "m-Zone1DoorBack-dr" // Layer material + +CONSTRUCTION "c-Zone1DoorRight-dr" + + LAYER "l-Zone1DoorRight-dr" + lrMat = "m-Zone1DoorRight-dr" // Layer material + +CONSTRUCTION "c-Zone1ToGarageDoorFront-dr" + + LAYER "l-Zone1ToGarageDoorFront-dr" + lrMat = "m-Zone1ToGarageDoorFront-dr" // Layer material + +CONSTRUCTION "c-GarageCarDoorFront-dr" + + LAYER "l-GarageCarDoorFront-dr" + lrMat = "m-GarageCarDoorFront-dr" // Layer material + +CONSTRUCTION "c-GarageCarDoorLeft-dr" + + LAYER "l-GarageCarDoorLeft-dr" + lrMat = "m-GarageCarDoorLeft-dr" // Layer material + +CONSTRUCTION "c-GarageCarDoorBack-dr" + + LAYER "l-GarageCarDoorBack-dr" + lrMat = "m-GarageCarDoorBack-dr" // Layer material + +CONSTRUCTION "c-GarageCarDoorRight-dr" + + LAYER "l-GarageCarDoorRight-dr" + lrMat = "m-GarageCarDoorRight-dr" // Layer material + +CONSTRUCTION "con-AtticTruss" + + LAYER "lyr-AtticTruss" + lrMat = "m-AtticTruss" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + +CONSTRUCTION "con-AtticTruss 41" + + LAYER "lyr-AtticTruss 119" + lrMat = "m-AtticTruss 32" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + +CONSTRUCTION "con-FurnIMass" + + LAYER "cl1-FurnIMass" + lrMat = "IntMassMat-SoftWood" // Layer material + lrThk = 0.208333 // Thickness (feet), ft + +CONSTRUCTION "con-FloorFrmIMass" + + LAYER "cl1-FloorFrmIMass" + lrMat = "IntMassMat-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-FloorFrmIMass" + lrMat = "IntMassMat-WoodLayer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-FloorFrmIMass" + lrMat = "IntMassMat-SoftWood" // Layer material + lrThk = 0.770833 // Thickness (feet), ft + + LAYER "cl4-FloorFrmIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "con-FloorCavIMass" + + LAYER "cl1-FloorCavIMass" + lrMat = "IntMassMat-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-FloorCavIMass" + lrMat = "IntMassMat-WoodLayer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-FloorCavIMass" + lrMat = "IntMassMat-Carpet" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "cl4-FloorCavIMass" + lrMat = "IntMassMat-Carpet" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "cl5-FloorCavIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "con-WallFrmIMass" + + LAYER "cl1-WallFrmIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-WallFrmIMass" + lrMat = "IntMassMat-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-WallFrmIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +CONSTRUCTION "con-WallCavIMass" + + LAYER "cl1-WallCavIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-WallCavIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +MATERIAL "m-SoftWood" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Steel" + matDens = 489 // Density, lb/ft3 + matSpHt = 0.12 // Specific heat of material, Btu/lb-°F + matCond = 26.2 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-SIPSskin" + matDens = 41 // Density, lb/ft3 + matSpHt = 0.45 // Specific heat of material, Btu/lb-°F + matCond = 0.06127 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Gypsum Board" + matDens = 40 // Density, lb/ft3 + matSpHt = 0.27 // Specific heat of material, Btu/lb-°F + matCond = 0.09167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.000122 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Insul-R5-D1.5-SH0.35-C0.01667" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.35 // Specific heat of material, Btu/lb-°F + matCond = 0.016666 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.00175 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Synthetic Stucco" + matDens = 58 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.2 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Carpet" + matDens = 12.3 // Density, lb/ft3 + matSpHt = 0.34 // Specific heat of material, Btu/lb-°F + matCond = 0.02 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Wood layer" + matDens = 41 // Density, lb/ft3 + matSpHt = 0.45 // Specific heat of material, Btu/lb-°F + matCond = 0.06127 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-TileGap" + matDens = 0.075 // Density, lb/ft3 + matSpHt = 0.24 // Specific heat of material, Btu/lb-°F + matCond = 0.07353 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-10 PSF Roof" + matDens = 120 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-VertWallCavity" + matDens = 0.075 // Density, lb/ft3 + matSpHt = 0.24 // Specific heat of material, Btu/lb-°F + matCond = 0.314 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.00397 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-3 Coat Stucco" + matDens = 116 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.4167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Light Roof" + matDens = 120 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Ins-R21-D1.5-SH0.2-C0.02183" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.021825 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Ins-R9.1-D1.5-SH0.2-C0.03205" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.032051 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.00418 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Ins-R13-D1.5-SH0.2-C0.02244" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.022438 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Ins-R18-D1.5-SH0.2-C0.0162" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.016204 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-Ins-R18-D1.5-SH0.2-C0.02546" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.025463 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-SNEICConcrete" + matDens = 144 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-SNEICEarth" + matDens = 115 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-SNEICCarpet" + matDens = 12.3 // Density, lb/ft3 + matSpHt = 0.34 // Specific heat of material, Btu/lb-°F + matCond = 0.02 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Zone1DoorFront-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Zone1DoorLeft-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Zone1DoorBack-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Zone1DoorRight-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-Zone1ToGarageDoorFront-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-GarageCarDoorFront-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-GarageCarDoorLeft-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-GarageCarDoorBack-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-GarageCarDoorRight-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "m-AtticTruss" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "m-AtticTruss 32" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "IntMassMat-SoftWood" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "IntMassMat-Carpet" + matDens = 12.3 // Density, lb/ft3 + matSpHt = 0.34 // Specific heat of material, Btu/lb-°F + matCond = 0.02 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + +MATERIAL "IntMassMat-WoodLayer" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +MATERIAL "IntMassMat-Gypsum" + matDens = 40 // Density, lb/ft3 + matSpHt = 0.27 // Specific heat of material, Btu/lb-°F + matCond = 0.09167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.000122 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + +METER "MtrElec" + +METER "MtrNatGas" + + +IZXFER "Zone1ToAtticCeiling-BypassxA" + izNVType = "NONE" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Attic-atc" // Name of secondary zone + izHConst = 0 * 1450 * select(@znRes["Zone1-zn"].prior.H.tAir - @znRes["Attic-atc"].prior.H.tAir > 0., 1., default 0.) // expression describing Conductance between zones, Btu/°F + +IZXFER "Zone1-InfLU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-InfLS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.097875 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-InfLD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-InfHU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-InfHS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.097875 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-InfHD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-NVLU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 15.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + +IZXFER "Zone1-NVLS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 6.750 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 15.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + +IZXFER "Zone1-NVLD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 15.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + +IZXFER "Zone1-NVHU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 17.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + +IZXFER "Zone1-NVHS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 6.750 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 17.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + +IZXFER "Zone1-NVHD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 17.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + +IZXFER "Zone1-xGarageH" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Garage-grg" // Name of secondary zone + izALo = 0.019388 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-xGarageL" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Garage-grg" // Name of secondary zone + izALo = 0.019388 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + +IZXFER "Zone1-IAQFanE" + izNVType = "AIRNETEXTFAN" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izVFmin = -88.436853 // Minimum volume flow rate (VentOff mode), cfm + izVFmax = -88.436853 // Maximum volume flow rate (VentOn mode), cfm + izFanVfDs = 88.436853 // Fan design or rated flow at rated pressure, cfm + izFanElecPwr = 0.25 // Fan input power per unit air flow (at design flow and pressure), W/cfm + izFanMtr = "MtrElec" // Name of meter, if any, to record energy used by supply fan (enduse = 'Fan') + izFanEndUse = "FANV" // Enduse to apply fan energy usage to + +IZXFER "Zone1-WHF" + izNVType = "AIRNETIZFAN" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Attic-atc" // Name of secondary zone + izVFmin = 0 // Minimum volume flow rate (VentOff mode), cfm + izVFmax = -904.5 * WINDOWVENTAVAIL * FANVENTAVAIL // expression describing Maximum volume flow rate (VentOn mode), cfm + izFanVfDs = 904.5 // Fan design or rated flow at rated pressure, cfm + izFanElecPwr = 0.14 // Fan input power per unit air flow (at design flow and pressure), W/cfm + izFanMtr = "MtrElec" // Name of meter, if any, to record energy used by supply fan (enduse = 'Fan') + izFanEndUse = "FANC" // Enduse to apply fan energy usage to + +IZXFER "Zone1ToAtticCeiling-xAttic" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Attic-atc" // Name of secondary zone + izALo = 0.599375 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + +IZXFER "Attic-SU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Attic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.675 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Attic-SS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Attic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 1.35 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Attic-SD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Attic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.675 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "GarageAttic-SU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "GarageAttic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.1 // Area of low or only vent (typically VentOff), ft2 + izHD = 9.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "GarageAttic-SS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "GarageAttic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 9.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "GarageAttic-SD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "GarageAttic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.1 // Area of low or only vent (typically VentOff), ft2 + izHD = 9.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Zone1ToGarageFloorxGarage" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Garage-grg" // Name of secondary zone + izALo = 0.041649 // Area of low or only vent (typically VentOff), ft2 + izHD = 10.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + +IZXFER "Garage-GrgU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 1.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Garage-GrgS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.4 // Area of low or only vent (typically VentOff), ft2 + izHD = 1.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Garage-GrgD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 1.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +IZXFER "Garage-GrgDH" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 8.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + +ZONE "Zone1-zn" + znModel = "CZM" // Zone model (CNE, CSE, CZM, UZM) + znArea = 2700 // Zone area, ft2 + znVol = 24300 // Zone volume, ft3 + znEaveZ = 19.7 // Height of top of the wall in this zone above the ground, ft + znCeilingHt = 9 // Nominal zone ceiling height relative to zone floor (typically 8 ? 10 ft), ft + znFloorZ = 0.7 // Nominal zone floor height relative to arbitrary 0 level, ft + znCAir = 5400 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + znSC = select( $radDiff >1., 0.5, default 0.8 ) // Expression representing zone shade closure +#if 0 + znTH = 68 + znTC = 78 +#else + znTH = select( $dsDay==1, 70, $dsDay==2, 60, ISSEASONCOOLING, 60, default hourval(65,65,65,65,65,65,66.5,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,65)) // Expression representing heating setpoint, °F + znTC = select( $dsDay==1, 83, $dsDay==2, 78, default hourval(78,78,78,78,78,78,78,83,83,83,83,83,83,82,81,80,79,78,78,78,78,78,78,78)) // Expression representing cooling setpoint, °F +#endif + znTD = select( $dsDay==1, 77, $dsDay==2, 99, ISSEASONCOOLING, 68, default 77 ) // Expression representing desired setpoint, °F + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + infShld = 4 // Zone local shielding class, used in ELA model + znRSys = "rsys1" // RSYS component conditioning this ZONE + + GAIN "Zone1-znLtg" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Lit" // Internal gain enduse + gnPower = 2.00548 * 2700 * select( $dsDay==1, 0., $ISWEHOL, IntLight_WEH, Default IntLight_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Zone1-znPpl" + gnPower = 7.56254 * 2700 * select( $dsDay==1, 0., default hourval(0.035,0.035,0.035,0.035,0.035,0.059,0.082,0.055,0.027,0.014,0.014,0.014,0.014,0.014,0.019,0.027,0.041,0.055,0.068,0.082,0.082,0.07,0.053,0.035) * choose1($month, 1.19,1.11,1.02,0.93,0.84,0.8,0.82,0.88,0.98,1.07,1.16,1.21)) // Expression representing internal gain power, Btuh + gnFrRad = 0.3 + gnFrLat = 0.427 + + GAIN "Zone1-znTV" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((265 + (31.8 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, TV_WEH, Default TV_WD) * TV_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.4 + + GAIN "Zone1-znSTB" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((76 + (59.4 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, STB_WEH, Default STB_WD) * STB_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Zone1-znComp" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((79 + (55.4 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, Comp_WEH, Default Comp_WD) * Comp_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Zone1-znMEL" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((570 + (198.9 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, RMEL_WEH, Default RMEL_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.3 + gnFrLat = 0.03 + + GAIN "Zone1-znRefrig" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Refr" // Internal gain enduse + gnPower = (1.64932 * 3412 / 24) * ( select( $isWeHol, RefrConst_WEH, default RefrConst_WD ) + select( $isWeHol, RefrTemp_WEH, default RefrTemp_WD ) * @znRes["Zone1-zn"].prior.H.tAir) // Expression representing internal gain power, Btuh + gnFrRad = 0 + + GAIN "Zone1-znCookElec" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Cook" // Internal gain enduse + gnPower = 220.612 * select( $dsDay==1, 0., $ISWEHOL, Cook_WEH, Default Cook_WD) * Cook_SM // Expression representing internal gain power, Btuh + gnFrZn = 0.9 + gnFrRad = 0 + gnFrLat = 0.67 + + GAIN "Zone1-znCookGas" + gnMeter = "MtrNatGas" // Meter that tracks internal gain + gnEndUse = "Cook" // Internal gain enduse + gnPower = 4164.38 * select( $dsDay==1, 0., $ISWEHOL, Cook_WEH, Default Cook_WD) * Cook_SM // Expression representing internal gain power, Btuh + gnFrZn = 0.9 + gnFrRad = 0 + gnFrLat = 0.67 + + GAIN "Zone1-znExtLtg" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Ext" // Internal gain enduse + gnPower = (((8 * 1) + (.0532 * 2700)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, ExtLight_WEH, Default ExtLight_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrZn = 0 + + SURFACE "Zone1ToGarageWallFront-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-IntWall Cons" // Surface construction + sfArea = 40 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageWallRight-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-IntWall Cons" // Surface construction + sfArea = 22.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageAtticWall-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-IntWall Cons" // Surface construction + sfArea = 10.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageWallFront-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-IntWall Cons" // Surface construction + sfArea = 140 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + DOOR "Zone1ToGarageDoorFront-Sim" + drArea = 20 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1ToGarageDoorFront-dr" // Door construction + + SURFACE "Zone1ToGarageWallRight-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-IntWall Cons" // Surface construction + sfArea = 67.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageAtticWall-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-IntWall Cons" // Surface construction + sfArea = 31.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToAtticCeiling-Frm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Ceiling Below Attic Cons" // Surface construction + sfArea = 73.091018 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Attic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToAtticCeiling-Cav" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Ceiling Below Attic Cons" // Surface construction + sfArea = 971.066386 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Attic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToAtticCeiling-WAFrm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Zone1ToAtticCeiling-AtcEdgWA" // Surface construction + sfArea = 5.659789 // Wall area, ft2 + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1ToAtticCeiling-WACav" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Zone1ToAtticCeiling-AtcEdgWA" // Surface construction + sfArea = 75.194336 // Wall area, ft2 + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1ToAtticCeiling-WBFrm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Zone1ToAtticCeiling-AtcEdgWB" // Surface construction + sfArea = 22.749193 // Wall area, ft2 + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1ToAtticCeiling-WBCav" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Zone1ToAtticCeiling-AtcEdgWB" // Surface construction + sfArea = 302.239279 // Wall area, ft2 + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallFront-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallLeft-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallBack-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallRight-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallFront-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinFront-NoScrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + WINDOW "Zone1WinFront-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorFront-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1DoorFront-dr" // Door construction + + SURFACE "Zone1WallLeft-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinLeft-NoScrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + WINDOW "Zone1WinLeft-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorLeft-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1DoorLeft-dr" // Door construction + + SURFACE "Zone1WallBack-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinBack-NoScrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + WINDOW "Zone1WinBack-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorBack-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1DoorBack-dr" // Door construction + + SURFACE "Zone1WallRight-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinRight-NoScrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + WINDOW "Zone1WinRight-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorRight-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1DoorRight-dr" // Door construction + + SURFACE "Zone1ToGarageFloor-Frm" + sfType = "Floor" // Type of opaque surface + sfCon = "fc-R19 IntFloor Cons" // Surface construction + sfArea = 20 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageFloor-Cav" + sfType = "Floor" // Type of opaque surface + sfCon = "cc-R19 IntFloor Cons" // Surface construction + sfArea = 180 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1Slab-Prm" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsCarpet" // Surface construction + sfArea = 204.8 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0551 // Surface ??? + sfExCTaDbAvgYr = 0.0028 // Surface ??? + sfExCTaDbAvg14 = 0.0852 // Surface ??? + sfExRConGrnd = 5.267 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Zone1Slab-Int" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsCarpet" // Surface construction + sfArea = 795.2 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0446 // Surface ??? + sfExCTaDbAvgYr = 0.0238 // Surface ??? + sfExRConGrnd = 5.267 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Zone1Slab-Prm 35" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 51.2 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0737 // Surface ??? + sfExCTaDbAvgYr = 0.0014 // Surface ??? + sfExCTaDbAvg14 = 0.1692 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Zone1Slab-Int 36" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 198.8 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0521 // Surface ??? + sfExCTaDbAvgYr = 0.0251 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Furniture-imass" + sfType = "Wall" // Type of opaque surface + sfCon = "con-FurnIMass" // Surface construction + sfArea = 5400 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "FloorFrm-imass" + sfType = "Floor" // Type of opaque surface + sfCon = "con-FloorFrmIMass" // Surface construction + sfArea = 125 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "FloorCav-imass" + sfType = "Floor" // Type of opaque surface + sfCon = "con-FloorCavIMass" // Surface construction + sfArea = 1125 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "WallFrm-imass" + sfType = "Wall" // Type of opaque surface + sfCon = "con-WallFrmIMass" // Surface construction + sfArea = 675 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "WallCav-imass" + sfType = "Wall" // Type of opaque surface + sfCon = "con-WallCavIMass" // Surface construction + sfArea = 2025 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + +ZONE "Garage-grg" + znModel = "UZX" // Zone model (CNE, CSE, CZM, UZM) + znArea = 440 // Zone area, ft2 + znVol = 3960 // Zone volume, ft3 + znEaveZ = 9.7 // Height of top of the wall in this zone above the ground, ft + znFloorZ = 0.7 // Nominal zone floor height relative to arbitrary 0 level, ft + znCAir = 0.01 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + + GAIN "Garage-grgLtg" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Lit" // Internal gain enduse + gnPower = ((20 + (.0063 * 2700)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, IntLight_WEH, Default IntLight_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Garage-grgRefrig" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Refr" // Internal gain enduse + gnPower = ((4 * 71) * 3412/8760) * 1 * ( select( $isWeHol, RefrConst_WEH, default RefrConst_WD ) + select( $isWeHol, RefrTemp_WEH, default RefrTemp_WD ) * @znRes["Garage-grg"].prior.H.tAir) // Expression representing internal gain power, Btuh + gnFrRad = 0 + + SURFACE "GarageToGarageAttic-Frm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Ceiling Below Attic Cons" // Surface construction + sfArea = 16.8 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "GarageToGarageAttic-Cav" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Ceiling Below Attic Cons" // Surface construction + sfArea = 223.2 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "GarageWallFront-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallLeft-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallBack-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallRight-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallFront-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorFront-Sim" + drArea = 32 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorFront-dr" // Door construction + + SURFACE "GarageWallLeft-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorLeft-Sim" + drArea = 32 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorLeft-dr" // Door construction + + SURFACE "GarageWallBack-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorBack-Sim" + drArea = 32 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorBack-dr" // Door construction + + SURFACE "GarageWallRight-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorRight-Sim" + drArea = 32 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorRight-dr" // Door construction + + SURFACE "GarageSlab-Prm" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 108 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0737 // Surface ??? + sfExCTaDbAvgYr = 0.0014 // Surface ??? + sfExCTaDbAvg14 = 0.1692 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "GarageSlab-Int" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 332 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0521 // Surface ??? + sfExCTaDbAvgYr = 0.0251 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + +ZONE "Attic-atc" + znModel = "UZX" // Zone model (CNE, CSE, CZM, UZM) + znArea = 1044.157404 // Zone area, ft2 + znVol = 2761.133984 // Zone volume, ft3 + znEaveZ = 19.7 // Height of top of the wall in this zone above the ground, ft + znCAir = 0.01 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + infShld = 4 // Zone local shielding class, used in ELA model + + SURFACE "Attic-atc-rfNF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfNC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfEF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfEC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfSF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfSC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfWF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfWC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfT1" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss" // Surface construction + sfArea = 696.104936 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "Attic-atc-rfT2" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss" // Surface construction + sfArea = 696.104936 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "Attic-atc-rfT3" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss" // Surface construction + sfArea = 696.104936 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + +ZONE "GarageAttic-atc" + znModel = "UZX" // Zone model (CNE, CSE, CZM, UZM) + znArea = 240 // Zone area, ft2 + znVol = 258.19889 // Zone volume, ft3 + znEaveZ = 9.7 // Height of top of the wall in this zone above the ground, ft + znCAir = 0.01 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + infShld = 4 // Zone local shielding class, used in ELA model + + SURFACE "GarageAttic-atc-rfNF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfNC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfEF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfEC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfSF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfSC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfWF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfWC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfT1" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss 41" // Surface construction + sfArea = 160 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "GarageAttic-atc-rfT2" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss 41" // Surface construction + sfArea = 160 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "GarageAttic-atc-rfT3" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss 41" // Surface construction + sfArea = 160 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + +// RSYS +// based on NEEP data for Daikin LV series mini-split +// AHRI Cert # 5265758 + +#define HEATCAPF 1 +RSYS "rsys1" + rsType = "VCHP2" // System type + rsFChg = 0.96 // Refrigerant charge adjustment factor + rsSEER = 22 // Cooling SEER + rsEER = 13.5 + rsVfPerTon = 350 // CFM per Ton (default = 350) + rsFanPwrH = 0.45 // Heating fan power. Heating air flow is estimated based on a 50 ?F temperature rise. + rsFanPwrC = 0.45 // Cooling fan power. + rsAdjForFanHt = No + rsParElec = ($tdboHrAv < 50) * 40 // Parasitic electric use, W + rsDefrostModel = "RevCycleAux" // Modeling options for ASHP outdoor coil defrosting + rsFxCapH = 1.466667 // Heating sizing factor + rsHSPF = 11 // ratio of BTU heat output over the heating season to watt-hours of electricity used, ratio + rsCap115 = 41846.2 // Total cooling capacity (@ 115°F), Btuh + rsCapC = 48000 // Total rated cooling capacity (@ 95°F), Btuh + rsCap82 = 52000 // Total rated cooling capacity (@ 82°F), Btuh + rsCap47 = 46000*HEATCAPF // Total rated heating capacity (@ 47°F), Btuh + rsCap17 = 42500*HEATCAPF // Total rated heating capacity (@ 17°F), Btuh + rsCap05 = 31130*HEATCAPF // Total rated heating capacity (@ 5°F), Btuh + rsCapAuxH = 50000 + // rsCtrlAuxH = CYCLE = default + rsCOP115 = 2.16013 // ratio of cooling provided over the electrical energy consumed (@ 115°F), ratio + rsCOP95 = 3.7 // ratio of cooling provided over the electrical energy consumed (@ 95°F), ratio + rsCOP82 = 5.9 // ratio of cooling provided over the electrical energy consumed (@ 82°F), ratio + rsCOP47 = 3.7 // ratio of heating provided over the electrical energy consumed (@ 47°F), ratio + rsCOP17 = 2.6 // ratio of heating provided over the electrical energy consumed (@ 17°F), ratio + rsCOP05 = 2.32 // ratio of heating provided over the electrical energy consumed (@ 5°F), ratio + rsCOPMin115 = 1.66728 // ratio of cooling provided over the elec energy consumed @ minimum 115°F capacity, ratio + rsCOPMin95 = 4 // ratio of cooling provided over the elec energy consumed @ minimum 95°F capacity, ratio + rsCOPMin82 = 7.7 // ratio of cooling provided over the elec energy consumed @ minimum 82°F capacity, ratio + rsCOPMin47 = 4.45 // ratio of heating provided over the elec energy consumed @ minimum 47°F capacity, ratio + rsCOPMin17 = 2.72 // ratio of heating provided over the elec energy consumed @ minimum 17°F capacity, ratio + rsCOPMin05 = 2.24 // ratio of heating provided over the elec energy consumed @ minimum 5°F capacity, ratio + rsLoadFMin115 = 0.523333 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 115°F), ratio + rsLoadFMin95 = 0.523333 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 95°F), ratio + rsLoadFMin82 = 0.269231 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 82°F), ratio + rsLoadFMin47 = 0.26087 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 47°F), ratio + rsLoadFMin17 = 0.489176 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 17°F), ratio + rsLoadFMin05 = 0.512046 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 5°F), ratio + rsOAVType = "None" // OAV system type + rsElecMtr = "MtrElec" // Electric use meter + rsFuelMtr = "MtrNatGas" // Natural gas use meter + + +#if 1 +#if !defined( DUCTAF) +#define DUCTAF 1 +#endif +#if !defined( DUCTR) +#define DUCTR 4 +#endif +#if !defined( DUCTLF) +#define DUCTLF 1 +#endif + + DUCTSEG "SupplyDuct1" + dsTy = "SUPPLY" + dsInArea = DUCTAF*473.85 + dsDiameter = 0.666667 +#if 0 + dsExCnd = SpecifiedT + dsExT = 30 +#else + dsAdjZn = "Attic-atc" +#endif + dsInsulR = DUCTR + dsLeakF = 0.1 * DUCTLF + + DUCTSEG "ReturnDuct1" + dsTy = "RETURN" + dsInArea = DUCTAF*270 + dsDiameter = 1.333333 + dsAdjZn = "Attic-atc" + dsInsulR = DUCTR + dsLeakF = .1 * DUCTLF +#endif + +REPORT rpType=MTR rpMeter = MtrElec rpFreq=MONTH + +#define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ + RXCOL colHead=WhenHead colVal=when colWid=3 \ + RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ + RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ + RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ + RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ + RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ + RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ + RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ + RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ + RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ + RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ + RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ + RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ + RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ + RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ + RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ + RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ + RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ + RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ + RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ + RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ + RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ + RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ + RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ + RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ + RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ + RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ + RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ + RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ + RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + +REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYS -- Aux Cycle / Def RevCyc" +SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.000001,3) +REPORT rpType=UDT rpFreq=YEAR rpHeader = No +SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.000001,3) + +#define TPERFCOLS( RXCOL, whenHead, when, X, F, dp, mtr, rs, zn) \ + RXCOL colHead=WhenHead colVal=when colWid=3 \ + RXCOL colHead="eHtg" colVal=@METER[ mtr].X.htg*F colDec=dp colWid=6 \ + RXCOL colHead="eHPBU" colVal=@METER[ mtr].X.HPBU*F colDec=dp colWid=6 \ + RXCOL colHead="eFanH" colVal=@METER[ mtr].X.fanH*F colDec=dp colWid=6 \ + RXCOL colHead="eHTot" colVal=(@METER[ mtr].X.htg+@METER[ mtr].X.HPBU+@METER[ mtr].X.fanH+@RSysRes[rs].X.ehParasitic)*F colDec=dp colWid=6 \ + RXCOL colHead="qhZone" colVal=@ZnRes[zn].X.qshHVAC*F colDec=dp colWid=6 \ + RXCOL colHead="COPH" colVal=@ZnRes[zn].X.qshHVAC / max(1.,@METER[ mtr].X.htg+@METER[ mtr].X.HPBU+@METER[ mtr].X.fanH+@RSysRes[rs].X.ehParasitic) colDec=dp colWid=6 \ + RXCOL colHead="eHTot2" colVal=@RsysRes[ rs].X.ehTot*F colDec=dp colWid=6 \ + RXCOL colHead="qhZone2" colVal=@RsysRes[ rs].X.qhZoneSen*F colDec=dp colWid=6 \ + RXCOL colHead="COPH2" colVal=@RsysRes[ rs].X.qhZoneSen/max(1.,@RsysRes[ rs].X.ehTot) colDec=dp colWid = 6 \ + RXCOL colHead="eClg" colVal=(@METER[ mtr].X.clg+@METER[ mtr].X.fanC+@RSysRes[rs].X.ecParasitic)*F colDec=dp colWid=10 \ + RXCOL colHead="qcZone" colVal=@ZnRes[zn].X.qcMech*F colDec=dp colWid=6 \ + RXCOL colHead="COPC" colVal=-@ZnRes[zn].X.qcMech / max(1.,@METER[ mtr].X.clg+@METER[ mtr].X.fanC+@RSysRes[rs].X.ecParasitic) colDec=dp colWid=6 \ + RXCOL colHead="eClg2" colVal=@RsysRes[ rs].X.ecTot*F colDec=dp colWid=6 \ + RXCOL colHead="qcZone2" colVal=(@RsysRes[ rs].X.qcZoneSen+@RsysRes[ rs].X.qcZoneLat)*F colDec=dp colWid=6 \ + RXCOL colHead="COPC2" colVal=-(@RsysRes[ rs].X.qcZoneSen+@RsysRes[ rs].X.qcZoneLat)/max(1.,@RsysRes[ rs].X.ecTot) colDec=dp colWid = 6 \ + RXCOL colHead="ParErr" colVal=@METER[ mtr].X.aux - @RsysRes[ rs].X.ehParasitic - @RsysRes[ rs].X.ecParasitic - @RsysRes[ rs].X.evParasitic colDec=dp colWid = 6 + +REPORT ENUSEMO rpType=UDT rpFreq=MONTH rpTitle = "RSYS -- Aux Cycle / Def RevCyc" +TPERFCOLS( REPORTCOL,"Mon",@Top.monstr,M,.000001,3,MtrElec, 1, 1) +REPORT rpType=UDT rpFreq=YEAR rpHeader = No +TPERFCOLS( REPORTCOL,"","Yr",Y,.000001,3,MtrElec, 1, 1) + +REPORT ENUSEHR rpType=UDT rpFreq=HOUR rpTitle = "RSYS -- Aux Cycle / Def RevCyc" rpDayBeg=Jan 1 rpDayEnd=Jan 3 +TPERFCOLS( REPORTCOL,"Hr",$hour,H,.001,3,MtrElec, 1, 1) + + + +#define SYSINFCOOL( s) REPORT rpType = UDT rpFreq=Year rpTitle="HVAC Cooling Info" rpCPL=-1 \ + REPORTCOL colVal = s colHead="Sys #" colDec=0 colWid=5 \ + REPORTCOL colVal = @Rsys[s].name colHead="System" colDec=0 colWid=24 \ + REPORTCOL colVal = @Rsys[s].Cap115 colHead="Cap115" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].Cap95 colHead="Cap95" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].Cap82 colHead="Cap82" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COP115 colHead="COP115" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COP95 colHead="COP95" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COP82 colHead="COP82" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COPmin115 colHead="COPm115" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COPmin95 colHead="COPm95" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COPmin82 colHead="COPm82" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].SEER colHead="SEER" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].EER95 colHead="EER95" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].SEERnfX colHead="SEERnfX" colDec=2 colWid=7 \ + REPORTCOL colVal = @Rsys[s].EERnfX colHead="EERnfX" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].cdC colHead="CdC" colDec=3 colWid=4 \ + REPORTCOL colVal = @Rsys[s].vfPerTon colHead="vfPerTon" colDec=0 colWid=8 \ + REPORTCOL colVal = @Rsys[s].fanPwrC colHead="fanPwrC" colDec=3 colWid=7 \ + REPORTCOL colVal = @Rsys[s].fanHeatC colHead="fanElecC" colDec=2 colWid=8 +SYSINFCOOL( 1) + +#define SYSINFHEAT( s) REPORT rpType = UDT rpFreq=Year rpTitle="HVAC Heating Info" rpCPL=-1 \ + REPORTCOL colVal = s colHead="Sys #" colDec=0 colWid=5 \ + REPORTCOL colVal = @Rsys[s].name colHead="System" colDec=0 colWid=24 \ + REPORTCOL colVal = @Rsys[s].Cap47 colHead="Cap47" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].Cap35 colHead="Cap35" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].Cap17 colHead="Cap17" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].Cap05 colHead="Cap05" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COP47 colHead="COP47" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COP35 colHead="COP35" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COP17 colHead="COP17" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COP05 colHead="COP05" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COPmin47 colHead="COPm47" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COPmin35 colHead="COPm35" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COPmin17 colHead="COPm17" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].COPmin05 colHead="COPm05" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].HSPF colHead="HSPF" colDec=2 colWid=6 \ + REPORTCOL colVal = @Rsys[s].cdH colHead="CdH" colDec=3 colWid=4 \ + REPORTCOL colVal = @Rsys[s].CapH colHead="CapH" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].CapAuxH colHead="AuxH" colDec=0 colWid=6 \ + REPORTCOL colVal = @Rsys[s].AFUE colHead="AFUE" colDec=3 colWid=6 \ + REPORTCOL colVal = @Rsys[s].fanPwrH colHead="fanPwrH" colDec=3 colWid=7 \ + REPORTCOL colVal = @Rsys[s].fanHeatH colHead="fanElecH" colDec=2 colWid=8 + +SYSINFHEAT( 1) + +#if 0 +// columns for all DUCTSEGRES values (conduction, leakage / supply, return, total) +#define DUCTCOLS( RXCOL, s, r, t, X, f, WhenHead, When) \ + RXCOL colHead=WhenHead colVal=when colWid=3 \ + RXCOL colHead="ShCond" colVal=@DUCTSEGRES[ s].X.qhCond*f colWid=6 colDec=0 \ + RXCOL colHead="ShLk" colVal=@DUCTSEGRES[ s].X.qhLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="ShTot" colVal=@DUCTSEGRES[ s].X.qhTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="ScCond" colVal=@DUCTSEGRES[ s].X.qcCond*f colWid=6 colDec=0 \ + RXCOL colHead="ScLkS" colVal=@DUCTSEGRES[ s].X.qcLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="ScTotS" colVal=@DUCTSEGRES[ s].X.qcTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="ScLkL" colVal=@DUCTSEGRES[ s].X.qcLeakLat*f colWid=6 colDec=0 \ + RXCOL colHead="RhCond" colVal=@DUCTSEGRES[ r].X.qhCond*f colWid=6 colDec=0 \ + RXCOL colHead="RhLk" colVal=@DUCTSEGRES[ r].X.qhLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="RhTot" colVal=@DUCTSEGRES[ r].X.qhTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="RcCond" colVal=@DUCTSEGRES[ r].X.qcCond*f colWid=6 colDec=0 \ + RXCOL colHead="RcLkS" colVal=@DUCTSEGRES[ r].X.qcLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="RcTotS" colVal=@DUCTSEGRES[ r].X.qcTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="RcLkL" colVal=@DUCTSEGRES[ r].X.qcLeakLat*f colWid=6 colDec=0 \ + RXCOL colHead="ThCond" colVal=@DUCTSEGRES[ t].X.qhCond*f colWid=6 colDec=0 \ + RXCOL colHead="ThLk" colVal=@DUCTSEGRES[ t].X.qhLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="ThTot" colVal=@DUCTSEGRES[ t].X.qhTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="TcCond" colVal=@DUCTSEGRES[ t].X.qcCond*f colWid=6 colDec=0 \ + RXCOL colHead="TcLkS" colVal=@DUCTSEGRES[ t].X.qcLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="TcTotS" colVal=@DUCTSEGRES[ t].X.qcTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="TcLkL" colVal=@DUCTSEGRES[ t].X.qcLeakLat*f colWid=6 colDec=0 + +REPORT rpType=UDT rpFreq=subhour rpDayBeg=(HD1)-1 rpDayEnd=(HD1)+1 rpCpl=-1 +DUCTCOLS( Reportcol, 1, 2, 3, S, 1, "SH", $subhour) + +REPORT rpType=UDT rpFreq=month +DUCTCOLS( Reportcol, 1, 2, 3, M, .001, "Mon", @Top.monStr) +REPORT rpType=UDT rpFreq=Year rpHeader = No +DUCTCOLS( Reportcol, 1, 2, 3, Y, .001, "", "Yr") +#endif + +// report columns: system <-> duct <-> zone energy balance +#define DUCTCOLX( RXCOL, X, zn, rs, dctSup, dctRet, dctTot, f, WhenHead, When) \ + RXCOL colHead=WhenHead colVal=when colWid=3 \ + RXCOL colHead="Tzn" colVal=@ZNRES[zn].X.tAir colWid=6 colDec=2 \ + RXCOL colHead="ShCond" colVal=@DUCTSEGRES[ dctTot].X.qhCond*f colWid=10 colDec=0 \ + RXCOL colHead="ShLk" colVal=@DUCTSEGRES[ dctTot].X.qhLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="ShTot" colVal=@DUCTSEGRES[ dctTot].X.qhTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="QhSys" colVal=@RSYSRES[ rs].X.qhNet*f colWid=6 colDec=0 \ + RXCOL colHead="QhZn" colVal=@ZNRES[ zn].X.qshHvac*f colWid=6 colDec=0 \ + RXCOL colHead="QhBal" colVal=(@RSYSRES[ rs].X.qhNet-@ZNRES[ zn].X.qshHvac-@DUCTSEGRES[ dctTot].X.qhTotSen)*f colWid=6 colDec=0 \ + RXCOL colHead="ScCond" colVal=@DUCTSEGRES[ dctTot].X.qcCond*f colWid=12 colDec=0 \ + RXCOL colHead="ScLkS" colVal=@DUCTSEGRES[ dctTot].X.qcLeakSen*f colWid=6 colDec=0 \ + RXCOL colHead="ScLkL" colVal=@DUCTSEGRES[ dctTot].X.qcLeakLat*f colWid=6 colDec=0 \ + RXCOL colHead="ScTotS" colVal=@DUCTSEGRES[ dctTot].X.qcTotSen*f colWid=6 colDec=0 \ + RXCOL colHead="QcSys" colVal=@RSYSRES[ rs].X.qcSenNet*f colWid=6 colDec=0 \ + RXCOL colHead="QcZn" colVal=@ZNRES[ zn].X.qscHVAC*f colWid=6 colDec=0 \ + RXCOL colHead="QcBal" colVal=(@RSYSRES[ rs].X.qcSenNet-@ZNRES[ zn].X.qscHvac-@DUCTSEGRES[ dctTot].X.qcTotSen)*f colWid=6 colDec=0 + +REPORT rpType=UDT rpFreq=month rpTitle="Duct / system / zone energy balance" +DUCTCOLX( Reportcol,M, 1, 1, 1, 2, 3, .001, "Mon", @Top.monStr) +ENDREPORT +REPORT rpType=UDT rpFreq=Year rpHeader = No +DUCTCOLX( Reportcol,Y,1, 1, 1, 2, 3, .001, "", "Yr") +ENDREPORT + +REPORT rpType=UDT rpFreq=subhour rpDayBeg=(HD1)-1 rpDayEnd=(HD1)+1 rpCpl=-1 rpTitle="Duct / system / zone energy balance" +DUCTCOLX( Reportcol,S, 1, 1, 1, 2, 3, 1, "SH", $subhour) +ENDREPORT + + +// report columns: RSYS heating subhour details +#define SYSCOLSH( RXCOL, rs, zn, zat, dctTot) \ + RXCOL colHead="mon" colVal=$Month colWid=3 \ + RXCOL colHead="day" colVal=$Dayofmonth colWid=3 \ + RXCOL colHead="Hr" colVal=@Top.iHr colWid=2 \ + RXCOL colHead="Sh" colVal=@Top.iSubHr colWid=2 \ + RXCOL colHead="ToDb" colVal=@Top.tDbOSh colWid=5 colDec=2 \ + RXCOL colHead="Tatt" colVal=@Zone[zat].tz colWid=5 colDec=2 \ + RXCOL colHead="Tzn" colVal=@Zone[zn].tz colWid=5 colDec=2 \ + RXCOL colHead="Tent" colVal=@RSYS[ rs].asIn.tDb colWid=6 colDec=2 \ + RXCOL colHead="Tlv" colVal=@RSYS[ rs].asOut.tDb colWid=6 colDec=2 \ + RXCOL colHead="Tsup" colVal=@RSYS[ rs].asSup.tDb colWid=6 colDec=2 \ + RXCOL colHead="UnMet" colVal=@ZnRes[zn].S.unMetHdH colWid=5 colDec=2 \ + RXCOL colHead="capFS" colVal=@RSYS[ rs].capHt colWid=5 colDec=0 \ + RXCOL colHead="capMS" colVal=@RSYS[ rs].capHtMin colWid=5 colDec=0 \ + RXCOL colHead="znLd" colVal=@RSYS[ rs].znLoad[ 0] colWid=5 colDec=0 \ + RXCOL colHead="loadF" colVal=@RSYS[ rs].loadF colWid=5 colDec=3 \ + RXCOL colHead="PLR" colVal=@RSYS[ rs].PLR colWid=5 colDec=3 \ + RXCOL colHead="spdF" colVal=@RSYS[ rs].speedF colWid=5 colDec=3 \ + RXCOL colHead="runF" colVal=@RSYS[ rs].runF colWid=5 colDec=3 \ + RXCOL colHead="PLF" colVal=@RSYS[ rs].plf colWid=5 colDec=3 \ + RXCOL colHead="runFAux" colVal=@RSYS[ rs].runFAux colWid=7 colDec=3 \ + RXCOL colHead="CFMav" colVal=@Zone[ zn].rsAmfSup/4.5 colWid=5 colDec=1 \ + RXCOL colHead="qComp" colVal=@RSYS[ rs].outSen colWid=6 colDec=0 \ + RXCOL colHead="qAux" colVal=@RSYS[ rs].outAux colWid=6 colDec=0 \ + RXCOL colHead="qDef" colVal=@RSYS[ rs].outDefrost colWid=5 colDec=0 \ + RXCOL colHead="qFan" colVal=@RSYS[ rs].outFan colWid=5 colDec=0 \ + RXCOL colHead="qNet" colVal=@RSYS[ rs].outSenTot colWid=6 colDec=0 \ + RXCOL colHead="qDct" colVal=-@DUCTSEGRES[ dctTot].S.qhTotSen/@Top.subhrDur colWid=6 colDec=0 \ + RXCOL colHead="qZn" colVal=@Zone[zn].qsHVAC colWid=6 colDec=0 \ + RXCOL colHead="qBal1" colVal=@RSYS[ rs].outSenTot-@Zone[zn].qsHVAC colWid=5 colDec=0 \ + RXCOL colHead="qBal2" colVal=(@RSYSRES[ rs].S.qhNet-@ZNRES[ zn].S.qshHvac-@DUCTSEGRES[ dctTot].S.qhTotSen)/@Top.subhrDur colWid=6 colDec=0 \ + RXCOL colHead="eComp" colVal=@RSYS[rs].inPrimary colWid=5 colDec=0 \ + RXCOL colHead="eTot" colVal=@RSYSRES[rs].S.ehTot / @Top.subhrDur colWid=6 colDec = 0 \ + RXCOL colHead="COPfs" colVal=@RSYS[ rs].effHt colWid=5 colDec=3 \ + RXCOL colHead="COPpl" colVal=@RSYS[ rs].COPHtAdj colWid=5 colDec=3 \ + RXCOL colHead="COPov" colVal=abs( @Zone[zn].qsHVAC)/max( 1, @RSYS[rs].inPrimary+@RSYS[rs].inAux+@RSYS[rs].inDefrost+@RSYS[rs].inFan) colWid=5 colDec=3 + +REPORT rpType=UDT rpFreq=subhour rpDayBeg=(HD1)-1 rpDayEnd=(HD1)+1 rpCpl=-1 rpTitle="RSYS Heating subhour details" +SYSCOLSH( Reportcol, 1, 1, "Attic-atc", 3) + +// report columns: RSYS cooling subhour details +#define SYSCOLSC( RXCOL, rs, zn, zat, dctTot) \ + RXCOL colHead="mon" colVal=$Month colWid=3 \ + RXCOL colHead="day" colVal=$Dayofmonth colWid=3 \ + RXCOL colHead="Hr" colVal=@Top.iHr colWid=2 \ + RXCOL colHead="Sh" colVal=@Top.iSubHr colWid=2 \ + RXCOL colHead="ToDb" colVal=@Top.tDbOSh colWid=5 colDec=2 \ + RXCOL colHead="Tatt" colVal=@Zone[zat].tz colWid=5 colDec=2 \ + RXCOL colHead="Tzn" colVal=@Zone[zn].tz colWid=5 colDec=2 \ + RXCOL colHead="Tent" colVal=@RSYS[ rs].asIn.tDb colWid=6 colDec=2 \ + RXCOL colHead="Tlv" colVal=@RSYS[ rs].asOut.tDb colWid=6 colDec=2 \ + RXCOL colHead="Tsup" colVal=@RSYS[ rs].asSup.tDb colWid=6 colDec=2 \ + RXCOL colHead="UnMet" colVal=@ZnRes[zn].S.unMetCdH colWid=5 colDec=2 \ + RXCOL colHead="znLd" colVal=@RSYS[ rs].znLoad[ 0] colWid=6 colDec=0 \ + RXCOL colHead="loadF" colVal=@RSYS[ rs].loadF colWid=5 colDec=3 \ + RXCOL colHead="PLR" colVal=@RSYS[ rs].PLR colWid=5 colDec=3 \ + RXCOL colHead="runF" colVal=@RSYS[ rs].runF colWid=5 colDec=3 \ + RXCOL colHead="spdF" colVal=@RSYS[ rs].speedF colWid=5 colDec=3 \ + RXCOL colHead="PLF" colVal=@RSYS[ rs].plf colWid=5 colDec=3 \ + RXCOL colHead="CFMav" colVal=@Zone[ zn].rsAmfSup/4.5 colWid=5 colDec=1 \ + RXCOL colHead="SHR" colVal=@RSYS[ rs].shr colWid=4 colDec=3 \ + RXCOL colHead="capSen" colVal=@RSYS[rs].capSenCt colWid=6 colDec=0 \ + RXCOL colHead="capLat" colVal=@RSYS[rs].capLatCt colWid=6 colDec=0 \ + RXCOL colHead="capTot" colVal=@RSYS[rs].capTotCt colWid=6 colDec=0 \ + RXCOL colHead="qSCoil" colVal=@RSYS[ rs].outSen colWid=6 colDec=0 \ + RXCOL colHead="qSFan" colVal=@RSYS[ rs].outFan colWid=5 colDec=0 \ + RXCOL colHead="qSNet" colVal=@RSYS[ rs].outSenTot colWid=6 colDec=0 \ + RXCOL colHead="qSDct" colVal=@DuctSegRes[ dctTot].S.qcTotSen/@Top.subhrDur colWid=5 colDec=0 \ + RXCOL colHead="qsZn1" colVal=@ZnRes[zn].S.qscHVAC/@Top.subhrDur colWid=6 colDec=0 \ + RXCOL colHead="qsZn2" colVal=@Zone[ zn].qsHVAC colWid=6 colDec=0 \ + RXCOL colHead="qBal1" colVal=@RSYS[ rs].outSenTot-@Zone[zn].qsHVAC colWid=5 colDec=0 \ + RXCOL colHead="qBal2" colVal=(@RSYSRES[ rs].S.qcSenNet-@ZNRES[ zn].S.qscHvac-@DUCTSEGRES[ dctTot].S.qcTotSen)/@Top.subhrDur colWid=6 colDec=0 \ + RXCOL colHead="qLat1" colVal=@RSYS[ rs].outLat colWid=6 colDec=0 \ + RXCOL colHead="qLat2" colVal=@ZnRes[zn].S.qlMech/@Top.subhrDur colWid=6 colDec=0 \ + RXCOL colHead="qtZn" colVal=(@ZnRes[zn].S.qscHvac+@ZnRes[zn].S.qlMech)/@Top.subhrDur colWid=6 colDec=0 \ + RXCOL colHead="eComp" colVal=@RSYS[rs].inPrimary colWid=5 colDec=0 \ + RXCOL colHead="eTot" colVal=@RSYSRES[rs].S.ecTot / @Top.subhrDur colWid=6 colDec = 0 \ + RXCOL colHead="COPspl" colVal=@RSYS[ rs].effCt colWid=6 colDec=3 \ + RXCOL colHead="COPov" colVal=(abs(@ZnRes[zn].S.qscHvac+@ZnRes[zn].S.qlMech)/@Top.subhrDur)/max( 1, @RSYS[rs].inPrimary+@RSYS[rs].inFan) colWid=5 colDec=3 + + +REPORT rpType=UDT rpFreq=subhour rpDayBeg=(DD1)-1 rpDayEnd=(DD1)+1 rpCpl=-1 rpTitle="RSYS cooling subhour details" +SYSCOLSC( Reportcol, 1, 1, "Attic-atc", 3) + + +#if 0 +// repeat subhour info to CSV file +EXPORT exType=UDT exFreq=subhour exDayBeg=(HD1)-1 exDayEnd=(HD1)+1 +SYSCOLSH( Exportcol, 1, 1, "Attic-atc", 3) + +EXPORT exType=UDT exFreq=subhour exDayBeg=(DD1)-1 exDayEnd=(DD1)+1 +SYSCOLSC( Exportcol, 1, 1, "Attic-atc", 3) +#endif + +RUN + +UNSET begDay begDay=nov 1 +UNSET endDay endDay=Apr 30 + +#define FIXRPTITLES( t) \ +ALTER REPORT SYSRESMO rpTitle = t \ +ALTER REPORT ENUSEMO rpTitle = t \ +ALTER REPORT ENUSEHR rpTitle = t + +ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE +FIXRPTITLES("RSYS -- Aux Alt / Def RevCycleAux") + +RUN + +ALTER RSYS "rsys1" + rsCtrlAuxH = LOCKOUT +FIXRPTITLES("RSYS -- Aux Lockout / Def RevCycleAux") + +RUN + +ALTER RSYS "rsys1" + rsDefrostModel = "RevCycle" + rsCtrlAuxH = CYCLE +FIXRPTITLES("RSYS -- Aux Cycle / Def RevCycle") + +RUN + +ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE +FIXRPTITLES("RSYS -- Aux Alt / Def RevCycle") + +RUN + +ALTER RSYS "rsys1" + rsCtrlAuxH = LOCKOUT +FIXRPTITLES("RSYS -- Aux Lockout / Def RevCycle") + +RUN + +ALTER RSYS "rsys1" + rsDefrostModel = "None" + rsCtrlAuxH = CYCLE +FIXRPTITLES("RSYS -- Aux Cycle / Def None") + +RUN + +ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE +FIXRPTITLES("RSYS -- Aux Alt / Def None") + +RUN + +ALTER RSYS "rsys1" + rsCtrlAuxH = LOCKOUT +FIXRPTITLES("RSYS -- Aux Lockout / Def None") + +RUN + +ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE + rsDefrostModel = "RevCycleAux" + rsASHPLockOutT = 37 +FIXRPTITLES("RSYS -- Aux Alt / Def RevCycleAux / LO 37") + +RUN + + +$EOF diff --git a/test/ref/ACTEST1BL.REP b/test/ref/ACTEST1BL.REP index cc53c5e4e..424128bc8 100644 --- a/test/ref/ACTEST1BL.REP +++ b/test/ref/ACTEST1BL.REP @@ -1657,7 +1657,7 @@ AC Check Values (rates are kBTU/hr) for Tue 24-Feb 2 24 5 29 51.6 23.00 23.00 78.0 .0109 -40.14 -22.62 -62.75 0.73 67.10 1.279 1.543 0 24.38 0 24.38 5.23 -146k -59.67 -21.83 .4079 .4079 3.535 11.430 14.965 2 24 6 29 50.0 23.00 23.00 78.0 .0109 -40.13 -22.66 -62.79 0.73 67.08 1.289 1.582 0 25.00 0 25.00 5.35 -147k -59.54 -21.92 .4044 .4044 3.516 11.257 14.773 2 24 7 29 50.2 23.00 23.00 78.0 .0109 -40.13 -22.63 -62.75 0.73 67.06 1.288 1.578 0 24.93 0 24.93 5.34 -147k -59.54 -21.85 .4045 .4045 3.503 11.133 14.635 - 2 24 8 29 50.7 23.00 23.00 78.0 .0109 -40.11 -22.61 -62.73 0.73 67.07 1.284 1.565 0 24.72 0 24.72 5.30 -147k -59.55 -21.80 .4054 .4054 3.506 11.182 14.688 + 2 24 8 29 50.7 23.00 23.00 78.0 .0109 -40.11 -22.61 -62.73 0.73 67.07 1.284 1.565 0 24.72 0 24.72 5.30 -147k -59.55 -21.80 .4055 .4054 3.506 11.182 14.688 2 24 9 29 50.2 23.00 23.00 78.0 .0109 -40.12 -22.65 -62.78 0.73 67.08 1.288 1.578 0 24.93 0 24.93 5.34 -147k -59.55 -21.94 .4049 .4049 3.508 11.191 14.699 2 24 10 29 51.3 23.00 23.00 78.0 .0109 -40.12 -22.62 -62.74 0.73 67.11 1.282 1.552 0 24.51 0 24.51 5.25 -146k -59.64 -21.94 .4074 .4074 3.516 11.255 14.771 2 24 11 29 52.0 23.00 23.00 78.0 .0109 -40.12 -22.65 -62.77 0.73 67.16 1.278 1.534 0 24.24 0 24.24 5.19 -146k -59.73 -22.08 .4097 .4097 3.537 11.435 14.972 @@ -4417,7 +4417,7 @@ IzXfer RDuctZone-DLkO Zn1: RDuctZone Zn2: -- UAconst: 0 NVctrl: AirNetD ! Log for Run 001: Simple Default, no latent ################ -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console Mon 20-Dec-21 10:35:35 am +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console Wed 29-Dec-21 2:19:45 pm ================ @@ -53378,7 +53378,7 @@ Single CZ: anMCp/T[ 0]=21.42/1132.7 anMCp/T[ 1]=0.00/0.0 ventUt=0 Nair=8386216.40 Dair=107014.39 Nrad=205594.83 Drad=2437.89 CX=1173.65 airX=12.820 TH=70.00 TD=74.00 TC=78.00 tSP=78.00 md=2 amfReq=9084 amfSup=8267 tSup=56.03 ta=78.00 tr=82.27 qIzSh=-538 fvent=0.000 pz0=-0.0052 qsHvac=-44111 -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console @@ -54038,18 +54038,18 @@ Input for Run 001: -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console run(s) done: Mon 20-Dec-21 10:35:39 am +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console run(s) done: Wed 29-Dec-21 2:19:48 pm -! Executable: c:\users\nkruis\projects\cse\msvc\cse.exe -! 20-Dec-21 10:32 am (VS 14.29 2902016 bytes) (HPWH 1.16.0) -! Command line: -x! -b -t1 actest1bL -! Input file: C:\Users\nkruis\projects\cse\test\actest1bL.cse -! Report file: C:\Users\nkruis\projects\cse\test\actest1bL.rep +! Executable: d:\cse\msvc\cse.exe +! 29-Dec-21 1:56 pm (VS 14.29 2902016 bytes) (HPWH 1.16.0) +! Command line: -x! -t1 actest1bl +! Input file: D:\cse\test\actest1bl.cse +! Report file: D:\cse\test\actest1bl.rep ! Timing info -- -! Input: Time = 0.11 Calls = 1 T/C = 0.1140 +! Input: Time = 0.06 Calls = 1 T/C = 0.0620 ! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 4.09 Calls = 1 T/C = 4.0930 -! Reports: Time = 0.17 Calls = 1 T/C = 0.1670 -! Total: Time = 4.37 Calls = 1 T/C = 4.3740 +! Simulation: Time = 2.53 Calls = 1 T/C = 2.5290 +! Reports: Time = 0.22 Calls = 1 T/C = 0.2220 +! Total: Time = 2.82 Calls = 1 T/C = 2.8170 diff --git a/test/ref/ASHPVC2.REP b/test/ref/ASHPVC2.REP new file mode 100644 index 000000000..ca86c1569 --- /dev/null +++ b/test/ref/ASHPVC2.REP @@ -0,0 +1,17452 @@ + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 001: + +--------------- +Warning: Zone 'Zone1-zn': Unmet cooling loads during 3 hours of run. +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 57 subhours of run. + Total condensation heat = 0.0551665 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 3.123 0 1.212 0.323 0 0 0 0 0.223 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.405 0 0.802 0.312 0 0 0 0 0.145 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.312 0 0.0894 0.0111 0 0 0 0 0.0168 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.280 0 0.0943 0.0358 0 0 0 0 0.0172 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 +May 1.259 0.112 0 0 0 0 0 0.0210 0 0.0561 0 .00450 0 0.150 0.625 0.0369 0.247 0 0 0 .00609 0 0 0 0 +Jun 1.749 0.582 0 0 0 0 0 0.101 0 0.0543 0 0 0 0.138 0.579 0.0340 0.254 0 0 0 .00619 0 0 0 0 +Jul 2.075 0.785 0 0 0 0 0 0.153 0 0.0561 0 0 0 0.146 0.625 0.0360 0.267 0 0 0 .00679 0 0 0 0 +Aug 2.162 0.831 0 0 0 0 0 0.158 0 0.0561 0 0 0 0.157 0.648 0.0387 0.267 0 0 0 .00629 0 0 0 0 +Sep 1.567 0.319 0 0 0 0 0 0.0655 0 0.0543 0 .00109 0 0.169 0.660 0.0417 0.250 0 0 0 .00611 0 0 0 0 +Oct 1.371 0.0822 0 0 0 0 0 0.0170 0 0.0561 0 .00150 0 0.191 0.726 0.0470 0.243 0 0 0 .00629 0 0 0 0 +Nov 1.716 0 0.287 0.0937 0 0 0 0 0.0523 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.184 0 1.192 0.418 0 0 0 0 0.212 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 + +Yr 23.204 2.711 3.676 1.194 0 0 0 0.515 0.666 0.661 0 0.256 0 2.102 8.093 0.517 2.732 0 0 0 0.0805 0 0 0 0 + + + +RSYS -- Aux Cycle / Def RevCyc + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 307.18 4.528 4.620 0.0963 0.226 0.223 5.165 0 0 0 0 0 0 0 0 0 0 1.212 0.0963 0.226 0.223 0.0760 1.833 0 0 0 0 0 0 0 3.794 -.0308 0 0 0 0 + Feb 187.09 4.437 2.970 0.0902 0.222 0.145 3.427 0 0 0 0 0 0 0 0 0 0 0.802 0.0902 0.222 0.145 0.0498 1.309 0 0 0 0 0 0 0 2.483 -.0180 0 0 0 0 + Mar 25.090 0.219 0.358 .00019 0.0110 0.0168 0.386 0 0 0 0 0 0 0 0 0 0 0.0894 .00019 0.0110 0.0168 .00887 0.126 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 22.009 0.557 0.356 .00798 0.0278 0.0172 0.409 0 0 0 0 0 0 0 0 0 0 0.0943 .00798 0.0278 0.0172 0.0180 0.165 0 0 0 0 0 0 0 0.288 -.0015 0 0 0 0 + May 21.803 0 0 0 0 0 0 -0.426 -.0555 0.0210 -0.405 0 0 0 0 0 0 0 0 0 0 0 0 0.112 0.0210 .00450 0.137 0 0 0 0 0 -0.283 -.0488 0 0 + Jun 101.94 0 0 0 0 0 0 -2.076 -0.196 0.101 -1.975 0 0 0 0 0 0 0 0 0 0 0 0 0.582 0.101 0 0.683 0 0 0 0 0 -1.432 -0.172 0 0 + Jul 156.27 0 0 0 0 0 0 -3.132 -0.382 0.153 -2.979 0 0 0 0 0 0 0 0 0 0 0 0 0.785 0.153 0 0.937 0 0 0 0 0 -2.205 -0.330 0 0 + Aug 160.36 0 0 0 0 0 0 -3.280 -0.341 0.158 -3.122 0 0 0 0 0 0 0 0 0 0 0 0 0.831 0.158 0 0.989 0 0 0 0 0 -2.333 -0.300 0 0 + Sep 73.781 0 0 0 0 0 0 -1.395 -0.129 0.0655 -1.330 0 0 0 0 0 0 0 0 0 0 0 0 0.319 0.0655 .00109 0.386 0 0 0 0 0 -1.000 -0.120 0 0 + Oct 19.299 0 0 0 0 0 0 -0.360 -.0370 0.0170 -0.343 0 0 0 0 0 0 0 0 0 0 0 0 0.0822 0.0170 .00150 0.101 0 0 0 0 0 -0.260 -.0353 0 0 + Nov 71.993 1.332 1.081 0.0271 0.0666 0.0523 1.227 0 0 0 0 0 0 0 0 0 0 0.287 0.0271 0.0666 0.0523 0.0329 0.466 0 0 .00300 .00300 0 0 0 0.861 -.0071 0 0 0 0 + Dec 280.51 4.869 4.295 0.175 0.243 0.212 4.925 0 0 0 0 0 0 0 0 0 0 1.192 0.175 0.243 0.212 0.0605 1.883 0 0 0 0 0 0 0 3.600 -.0271 0 0 0 0 + + Yr 1427.3 15.942 13.680 0.397 0.797 0.666 15.540 -10.67 -1.141 0.515 -10.15 0 0 0 0 0 0 3.676 0.397 0.797 0.666 0.246 5.782 2.711 0.515 0.0101 3.236 0 0 0 11.290 -.0883 -7.513 -1.006 0 0 + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 1 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Cycle / Def RevCyc + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Jan 1.212 0.323 0.223 1.833 3.794 2.069 1.833 3.794 2.069 0 0 0 0 0 0 0 + Feb 0.802 0.312 0.145 1.309 2.483 1.898 1.309 2.483 1.898 0 0 0 0 0 0 -.0039 + Mar 0.0894 0.0111 0.0168 0.126 0.265 2.098 0.126 0.265 2.098 0 0 0 0 0 0 -.0020 + Apr 0.0943 0.0358 0.0172 0.165 0.288 1.742 0.165 0.288 1.742 0 0 0 0 0 0 -.0020 + May 0 0 0 0 0 0 0 0 0 0.137 -0.332 2.420 0.137 -0.332 2.420 0 + Jun 0 0 0 0 0 0 0 0 0 0.683 -1.604 2.347 0.683 -1.604 2.347 0 + Jul 0 0 0 0 0 0 0 0 0 0.937 -2.536 2.705 0.937 -2.536 2.705 0 + Aug 0 0 0 0 0 0 0 0 0 0.989 -2.633 2.662 0.989 -2.633 2.662 0 + Sep 0 0 0 0 0 0 0 0 0 0.386 -1.120 2.905 0.386 -1.120 2.905 -.0001 + Oct 0 0 0 0 0 0 0 0 0 0.101 -0.295 2.926 0.101 -0.295 2.926 -.0002 + Nov 0.287 0.0937 0.0523 0.466 0.861 1.848 0.466 0.861 1.848 0.00300 0 0 .00300 0 0 .00024 + Dec 1.192 0.418 0.212 1.883 3.600 1.912 1.883 3.600 1.912 0 0 0 0 0 0 -.0078 + + Yr 3.676 1.194 0.666 5.782 11.290 1.953 5.782 11.290 1.953 3.236 -8.519 2.633 3.236 -8.519 2.633 .00293 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 2 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Cycle / Def RevCyc for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.678 0 0.317 2.131 4.421 2.074 2.131 4.421 2.074 0 0 0 0 0 0 -0.000 + 8 6.919 5.181 1.252 13.488 24.969 1.851 13.488 24.969 1.851 0 0 0 0 0 0 -0.000 + 9 4.662 0 0.883 5.681 13.855 2.439 5.681 13.855 2.439 0 0 0 0 0 0 -0.000 + 10 3.898 0 0.758 4.793 11.478 2.395 4.793 11.478 2.395 0 0 0 0 0 0 -0.000 + 11 3.311 0 0.662 4.110 9.687 2.357 4.110 9.687 2.357 0 0 0 0 0 0 -0.000 + 12 2.848 0 0.590 3.574 8.349 2.336 3.574 8.349 2.336 0 0 0 0 0 0 -0.000 + 13 2.338 0 0.495 2.970 6.980 2.350 2.970 6.980 2.350 0 0 0 0 0 0 -0.000 + 14 1.954 0 0.395 2.349 5.596 2.382 2.349 5.596 2.382 0 0 0 0 0 0 0 + 15 1.953 0 0.394 2.347 5.609 2.390 2.347 5.609 2.390 0 0 0 0 0 0 0 + 16 1.940 0 0.391 2.331 5.600 2.402 2.331 5.600 2.402 0 0 0 0 0 0 0 + 17 1.957 0 0.395 2.352 5.686 2.418 2.352 5.686 2.418 0 0 0 0 0 0 0 + 18 1.931 0 0.389 2.320 5.617 2.421 2.320 5.617 2.421 0 0 0 0 0 0 0 + 19 1.850 0 0.369 2.356 5.358 2.274 2.356 5.358 2.274 0 0 0 0 0 0 -0.000 + 20 1.813 0 0.360 2.309 5.272 2.283 2.309 5.272 2.283 0 0 0 0 0 0 -0.000 + 21 1.846 0 0.368 2.350 5.417 2.305 2.350 5.417 2.305 0 0 0 0 0 0 -0.000 + 22 2.051 0 0.412 2.600 6.089 2.342 2.600 6.089 2.342 0 0 0 0 0 0 -0.000 + 23 2.367 0 0.477 2.980 7.072 2.373 2.980 7.072 2.373 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Cycle / Def RevCyc for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.336 0.823 0.786 6.081 12.240 2.013 6.081 12.240 2.013 0 0 0 0 0 0 -0.000 + 8 8.516 7.877 1.438 17.968 30.190 1.680 17.968 30.190 1.680 0 0 0 0 0 0 -0.000 + 9 5.808 0.841 1.011 7.797 16.860 2.162 7.797 16.860 2.162 0 0 0 0 0 0 -0.000 + 10 4.369 0.477 0.797 5.780 12.843 2.222 5.780 12.843 2.222 0 0 0 0 0 0 -0.000 + 11 3.640 0.306 0.690 4.772 10.842 2.272 4.772 10.842 2.272 0 0 0 0 0 0 -0.000 + 12 3.185 0 0.624 3.945 9.574 2.427 3.945 9.574 2.427 0 0 0 0 0 0 -0.000 + 13 2.264 0 0.471 2.872 7.134 2.484 2.872 7.134 2.484 0 0 0 0 0 0 -0.000 + 14 1.989 0 0.403 2.529 6.109 2.416 2.529 6.109 2.416 0 0 0 0 0 0 -0.000 + 15 1.917 0 0.385 2.439 5.870 2.407 2.439 5.870 2.407 0 0 0 0 0 0 -0.000 + 16 1.319 0 0.248 1.703 3.786 2.223 1.703 3.786 2.223 0 0 0 0 0 0 -0.000 + 17 1.779 0 0.352 2.268 5.392 2.378 2.268 5.392 2.378 0 0 0 0 0 0 -0.000 + 18 1.960 0 0.395 2.491 6.098 2.448 2.491 6.098 2.448 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 3 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.087 0.0669 0.405 2.695 6.279 2.330 2.695 6.279 2.330 0 0 0 0 0 0 -0.000 + 20 2.368 0.407 0.446 3.357 7.039 2.097 3.357 7.039 2.097 0 0 0 0 0 0 -0.000 + 21 2.643 0.593 0.494 3.866 7.891 2.041 3.866 7.891 2.041 0 0 0 0 0 0 -0.000 + 22 2.895 0.766 0.541 4.338 8.750 2.017 4.338 8.750 2.017 0 0 0 0 0 0 -0.000 + 23 3.281 1.051 0.613 5.082 10.026 1.973 5.082 10.026 1.973 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Cycle / Def RevCyc for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.556 0.113 0.0774 0.883 1.224 1.386 0.883 1.224 1.386 0 0 0 0 0 0 -0.000 + 6 1.703 0.350 0.244 2.433 3.865 1.589 2.433 3.865 1.589 0 0 0 0 0 0 -0.000 + 7 8.749 7.457 1.316 17.658 26.857 1.521 17.658 26.857 1.521 0 0 0 0 0 0 -0.000 + 8 12.642 11.513 1.891 26.183 40.647 1.552 26.183 40.647 1.552 0 0 0 0 0 0 -0.000 + 9 6.879 2.047 1.087 10.150 18.540 1.827 10.150 18.540 1.827 0 0 0 0 0 0 -0.000 + 10 3.374 0.896 0.605 5.013 9.694 1.934 5.013 9.694 1.934 0 0 0 0 0 0 -0.000 + 11 1.813 0.229 0.330 2.508 5.143 2.050 2.508 5.143 2.050 0 0 0 0 0 0 -0.000 + 12 1.355 0 0.243 1.734 3.700 2.134 1.734 3.700 2.134 0 0 0 0 0 0 -0.000 + 13 0.867 0 0.154 1.157 2.342 2.023 1.157 2.342 2.023 0 0 0 0 0 0 -0.000 + 14 0.397 0 0.0677 0.601 1.019 1.695 0.601 1.019 1.695 0 0 0 0 0 0 -0.000 + 15 0.0203 0 .00334 0.160 0.0499 0.312 0.160 0.0499 0.312 0 0 0 0 0 0 -0.000 + 16 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 17 0.581 0 0.101 0.819 1.489 1.818 0.819 1.489 1.818 0 0 0 0 0 0 -0.000 + 18 1.676 0.0602 0.308 2.181 4.606 2.112 2.181 4.606 2.112 0 0 0 0 0 0 -0.000 + 19 2.207 0.437 0.401 3.182 6.204 1.950 3.182 6.204 1.950 0 0 0 0 0 0 -0.000 + 20 2.667 0.753 0.480 4.036 7.573 1.876 4.036 7.573 1.876 0 0 0 0 0 0 -0.000 + 21 2.930 0.907 0.531 4.505 8.465 1.879 4.505 8.465 1.879 0 0 0 0 0 0 -0.000 + 22 3.271 1.150 0.595 5.152 9.584 1.860 5.152 9.584 1.860 0 0 0 0 0 0 -0.000 + 23 3.648 1.354 0.668 5.806 10.858 1.870 5.806 10.858 1.870 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 40140 42500 31130 3.70 2.91 2.60 2.32 4.45 3.03 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 4 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Jan 67.52 943 412 1356 5165 3794 15 0 0 0 0 0 0 0 + Feb 67.65 636 294 929 3427 2483 15 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 386 265 2 0 0 0 0 0 0 0 + Apr 69.33 81 37 118 409 288 3 0 0 0 0 0 0 0 + May 75.12 0 0 0 0 0 0 -77 -41 -7 -118 -405 -283 -3 + Jun 77.54 0 0 0 0 0 0 -336 -195 -25 -532 -1975 -1432 -12 + Jul 77.95 0 0 0 0 0 0 -471 -280 -52 -751 -2979 -2205 -22 + Aug 78.00 0 0 0 0 0 0 -480 -288 -41 -767 -3122 -2333 -22 + Sep 77.39 0 0 0 0 0 0 -207 -114 -9 -321 -1330 -1000 -9 + Oct 74.92 0 0 0 0 0 0 -52 -29 -2 -81 -343 -260 -3 + Nov 68.72 253 107 360 1227 861 6 0 0 0 0 0 0 0 + Dec 67.54 903 407 1309 4925 3600 16 0 0 0 0 0 0 0 + + Yr 72.63 2903 1290 4193 15540 11290 56 -1622 -948 -135 -2570 -10154 -7513 -71 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 5 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 81 37 118 442 324 -0 0 0 0 0 0 0 0 + 1 65.00 90 43 133 500 367 -0 0 0 0 0 0 0 0 + 2 65.00 101 48 149 565 416 -0 0 0 0 0 0 0 0 + 3 65.00 116 55 171 650 478 -0 0 0 0 0 0 0 0 + 4 65.00 129 61 190 718 528 -0 0 0 0 0 0 0 0 + 5 65.00 142 67 209 792 583 0 0 0 0 0 0 0 0 + 6 65.00 154 74 228 863 635 0 0 0 0 0 0 0 0 + 1 66.50 948 1245 2193 13156 10618 345 0 0 0 0 0 0 0 + 2 66.50 579 341 920 3703 2783 0 0 0 0 0 0 0 0 + 3 66.50 494 286 780 3685 2904 0 0 0 0 0 0 0 0 + 4 66.50 524 324 849 3785 2936 0 0 0 0 0 0 0 0 + 5 66.50 537 338 875 3842 2967 0 0 0 0 0 0 0 0 + 6 66.50 523 304 826 3554 2728 0 0 0 0 0 0 0 0 + 1 67.92 1138 1489 2626 16020 13068 326 0 0 0 0 0 0 0 + 2 68.00 579 681 1260 7103 5825 17 0 0 0 0 0 0 0 + 3 68.00 507 521 1027 6245 5217 0 0 0 0 0 0 0 0 + 4 68.00 533 536 1069 6026 4958 0 0 0 0 0 0 0 0 + 5 68.00 546 525 1071 5783 4712 0 0 0 0 0 0 0 0 + 6 68.00 532 462 994 5212 4219 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 6 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 536 407 943 4652 3709 0 0 0 0 0 0 0 0 + 2 68.00 527 356 883 4171 3288 0 0 0 0 0 0 0 0 + 3 68.00 525 311 836 3713 2876 -0 0 0 0 0 0 0 0 + 4 68.00 518 270 788 3303 2514 0 0 0 0 0 0 0 0 + 5 68.00 514 237 751 2959 2208 0 0 0 0 0 0 0 0 + 6 68.00 508 206 714 2637 1923 -0 0 0 0 0 0 0 0 + 1 68.00 504 188 692 2446 1754 0 0 0 0 0 0 0 0 + 2 68.00 470 167 637 2202 1565 0 0 0 0 0 0 0 0 + 3 68.00 423 148 571 1956 1385 0 0 0 0 0 0 0 0 + 4 68.00 387 133 519 1759 1240 0 0 0 0 0 0 0 0 + 5 68.00 351 118 469 1566 1097 0 0 0 0 0 0 0 0 + 6 68.00 317 105 422 1389 967 0 0 0 0 0 0 0 0 + 1 68.00 310 101 411 1332 921 -0 0 0 0 0 0 0 0 + 2 68.00 282 91 373 1190 818 -0 0 0 0 0 0 0 0 + 3 68.00 255 81 336 1061 725 -0 0 0 0 0 0 0 0 + 4 68.00 229 72 301 936 635 0 0 0 0 0 0 0 0 + 5 68.00 205 63 269 826 557 0 0 0 0 0 0 0 0 + 6 68.00 178 55 234 713 479 0 0 0 0 0 0 0 0 + 1 68.00 195 60 255 775 520 0 0 0 0 0 0 0 0 + 2 68.00 174 54 228 688 461 0 0 0 0 0 0 0 0 + 3 68.00 151 47 198 599 401 0 0 0 0 0 0 0 0 + 4 68.00 131 40 171 516 345 0 0 0 0 0 0 0 0 + 5 68.00 111 34 145 438 292 0 0 0 0 0 0 0 0 + 6 68.00 92 28 120 359 239 0 0 0 0 0 0 0 0 + 1 68.00 56 17 73 218 145 0 0 0 0 0 0 0 0 + 2 68.00 33 10 44 130 86 0 0 0 0 0 0 0 0 + 3 68.00 12 4 15 45 30 0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 7 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.00 61 18 79 217 138 -0 0 0 0 0 0 0 0 + 2 68.00 78 23 101 278 176 0 0 0 0 0 0 0 0 + 3 68.00 95 28 123 337 215 0 0 0 0 0 0 0 0 + 4 68.00 104 31 135 371 236 0 0 0 0 0 0 0 0 + 5 68.00 115 34 149 407 259 0 0 0 0 0 0 0 0 + 6 68.00 131 39 170 465 295 0 0 0 0 0 0 0 0 + 1 68.00 130 39 169 462 293 0 0 0 0 0 0 0 0 + 2 68.00 147 44 190 520 330 -0 0 0 0 0 0 0 0 + 3 68.00 159 47 206 563 356 0 0 0 0 0 0 0 0 + 4 68.00 176 52 228 622 394 0 0 0 0 0 0 0 0 + 5 68.00 188 56 244 663 419 0 0 0 0 0 0 0 0 + 6 68.00 204 61 265 722 457 0 0 0 0 0 0 0 0 + 1 68.00 229 68 297 808 511 0 0 0 0 0 0 0 0 + 2 68.00 246 73 319 868 549 0 0 0 0 0 0 0 0 + 3 68.00 262 78 340 926 586 0 0 0 0 0 0 0 0 + 4 68.00 274 81 355 968 613 0 0 0 0 0 0 0 0 + 5 68.00 288 85 373 1020 647 0 0 0 0 0 0 0 0 + 6 68.00 298 89 388 1069 681 -0 0 0 0 0 0 0 0 + 1 68.00 324 98 422 1175 753 0 0 0 0 0 0 0 0 + 2 68.00 334 103 437 1227 790 0 0 0 0 0 0 0 0 + 3 68.00 343 107 450 1275 826 0 0 0 0 0 0 0 0 + 4 68.00 351 111 462 1324 863 0 0 0 0 0 0 0 0 + 5 68.00 359 115 474 1373 899 0 0 0 0 0 0 0 0 + 6 68.00 367 119 486 1420 934 0 0 0 0 0 0 0 0 + 1 68.00 404 133 536 1579 1043 0 0 0 0 0 0 0 0 + 2 68.00 411 137 548 1628 1080 0 0 0 0 0 0 0 0 + 3 68.00 416 140 556 1671 1115 0 0 0 0 0 0 0 0 + 4 68.00 422 144 566 1718 1151 0 0 0 0 0 0 0 0 + 5 68.00 428 148 576 1763 1187 0 0 0 0 0 0 0 0 + 6 68.00 433 151 584 1802 1218 -0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 8 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 45 21 65 220 155 -0 0 0 0 0 0 0 0 + 4 65.00 120 56 176 592 416 -0 0 0 0 0 0 0 0 + 5 65.00 138 65 203 686 483 0 0 0 0 0 0 0 0 + 6 65.00 154 73 226 772 546 0 0 0 0 0 0 0 0 + 1 66.50 1026 1320 2346 13173 10481 345 0 0 0 0 0 0 0 + 2 66.50 651 368 1019 3663 2644 0 0 0 0 0 0 0 0 + 3 66.50 555 302 857 3610 2752 0 0 0 0 0 0 0 0 + 4 66.50 587 344 931 3708 2777 0 0 0 0 0 0 0 0 + 5 66.50 601 366 967 3824 2858 -0 0 0 0 0 0 0 0 + 6 66.50 586 330 915 3556 2641 0 0 0 0 0 0 0 0 + 1 67.93 1200 1549 2749 16000 12922 329 0 0 0 0 0 0 0 + 2 68.00 641 706 1347 6857 5496 14 0 0 0 0 0 0 0 + 3 68.00 565 543 1108 6043 4935 0 0 0 0 0 0 0 0 + 4 68.00 589 553 1142 5801 4659 -0 0 0 0 0 0 0 0 + 5 68.00 600 537 1138 5539 4401 0 0 0 0 0 0 0 0 + 6 68.00 584 468 1052 4965 3913 -0 0 0 0 0 0 0 0 + 1 68.00 587 412 1000 4444 3445 0 0 0 0 0 0 0 0 + 2 68.00 577 360 937 3975 3038 0 0 0 0 0 0 0 0 + 3 68.00 574 316 889 3546 2657 -0 0 0 0 0 0 0 0 + 4 68.00 565 274 839 3155 2316 0 0 0 0 0 0 0 0 + 5 68.00 560 239 799 2825 2025 0 0 0 0 0 0 0 0 + 6 68.00 552 209 761 2535 1774 -0 0 0 0 0 0 0 0 + 1 68.00 518 193 711 2352 1641 0 0 0 0 0 0 0 0 + 2 68.00 467 172 639 2106 1466 0 0 0 0 0 0 0 0 + 3 68.00 422 153 576 1880 1305 -0 0 0 0 0 0 0 0 + 4 68.00 383 137 520 1681 1161 0 0 0 0 0 0 0 0 + 5 68.00 347 123 470 1500 1030 0 0 0 0 0 0 0 0 + 6 68.00 313 109 422 1334 912 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 9 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 341 116 457 1422 964 0 0 0 0 0 0 0 0 + 2 68.00 316 105 421 1291 870 -0 0 0 0 0 0 0 0 + 3 68.00 290 95 385 1170 786 -0 0 0 0 0 0 0 0 + 4 68.00 262 84 346 1036 690 0 0 0 0 0 0 0 0 + 5 68.00 238 74 313 927 615 0 0 0 0 0 0 0 0 + 6 68.00 211 65 276 806 530 -0 0 0 0 0 0 0 0 + 1 68.00 213 65 278 809 531 -0 0 0 0 0 0 0 0 + 2 68.00 191 58 249 718 469 0 0 0 0 0 0 0 0 + 3 68.00 175 52 227 658 431 0 0 0 0 0 0 0 0 + 4 68.00 153 46 199 577 378 -0 0 0 0 0 0 0 0 + 5 68.00 139 42 180 524 343 0 0 0 0 0 0 0 0 + 6 68.00 120 36 156 450 294 0 0 0 0 0 0 0 0 + 1 68.00 87 26 113 328 215 0 0 0 0 0 0 0 0 + 2 68.00 64 19 84 244 160 0 0 0 0 0 0 0 0 + 3 68.00 46 14 60 172 113 0 0 0 0 0 0 0 0 + 4 68.00 29 9 38 109 72 0 0 0 0 0 0 0 0 + 5 68.00 13 4 17 50 33 0 0 0 0 0 0 0 0 + 6 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 51 15 67 192 126 -0 0 0 0 0 0 0 0 + 5 68.00 134 40 175 501 327 0 0 0 0 0 0 0 0 + 6 68.00 150 45 195 564 369 0 0 0 0 0 0 0 0 + 1 68.00 148 44 192 560 368 0 0 0 0 0 0 0 0 + 2 68.00 173 52 225 657 432 0 0 0 0 0 0 0 0 + 3 68.00 193 60 253 751 498 0 0 0 0 0 0 0 0 + 4 68.00 211 67 278 841 563 0 0 0 0 0 0 0 0 + 5 68.00 229 75 304 936 632 -0 0 0 0 0 0 0 0 + 6 68.00 245 83 328 1030 703 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 10 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 245 83 328 1039 711 0 0 0 0 0 0 0 0 + 2 68.00 254 86 341 1086 745 0 0 0 0 0 0 0 0 + 3 68.00 262 90 352 1125 773 -0 0 0 0 0 0 0 0 + 4 68.00 270 93 362 1165 802 -0 0 0 0 0 0 0 0 + 5 68.00 276 95 371 1196 825 0 0 0 0 0 0 0 0 + 6 68.00 285 99 384 1240 856 0 0 0 0 0 0 0 0 + 1 68.00 296 103 399 1294 895 0 0 0 0 0 0 0 0 + 2 68.00 305 108 413 1346 933 0 0 0 0 0 0 0 0 + 3 68.00 313 112 425 1390 965 0 0 0 0 0 0 0 0 + 4 68.00 317 114 431 1417 986 0 0 0 0 0 0 0 0 + 5 68.00 326 118 444 1467 1023 -0 0 0 0 0 0 0 0 + 6 68.00 329 121 450 1491 1040 0 0 0 0 0 0 0 0 + 1 68.00 348 126 474 1564 1090 -0 0 0 0 0 0 0 0 + 2 68.00 354 128 482 1580 1098 0 0 0 0 0 0 0 0 + 3 68.00 359 129 488 1592 1104 -0 0 0 0 0 0 0 0 + 4 68.00 364 129 493 1601 1108 0 0 0 0 0 0 0 0 + 5 68.00 369 130 499 1608 1109 0 0 0 0 0 0 0 0 + 6 68.00 372 130 502 1611 1109 0 0 0 0 0 0 0 0 + 1 68.00 402 141 542 1736 1193 0 0 0 0 0 0 0 0 + 2 68.00 407 142 549 1761 1212 0 0 0 0 0 0 0 0 + 3 68.00 410 143 554 1782 1229 0 0 0 0 0 0 0 0 + 4 68.00 414 145 559 1805 1245 0 0 0 0 0 0 0 0 + 5 68.00 419 147 566 1827 1261 0 0 0 0 0 0 0 0 + 6 68.00 418 147 565 1828 1262 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 11 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 14 6 20 71 51 -0 0 0 0 0 0 0 0 + 2 65.00 100 46 146 510 364 0 0 0 0 0 0 0 0 + 3 65.00 113 52 166 578 413 0 0 0 0 0 0 0 0 + 4 65.00 126 58 183 645 462 0 0 0 0 0 0 0 0 + 5 65.00 139 64 203 715 511 0 0 0 0 0 0 0 0 + 6 65.00 153 71 224 786 562 0 0 0 0 0 0 0 0 + 1 66.50 993 1288 2281 13153 10528 345 0 0 0 0 0 0 0 + 2 66.50 622 354 976 3659 2683 0 0 0 0 0 0 0 0 + 3 66.50 530 293 823 3630 2807 -0 0 0 0 0 0 0 0 + 4 66.50 561 335 896 3732 2835 -0 0 0 0 0 0 0 0 + 5 66.50 575 357 932 3855 2924 0 0 0 0 0 0 0 0 + 6 66.50 560 321 881 3577 2696 0 0 0 0 0 0 0 0 + 1 67.91 1175 1524 2698 16017 12994 325 0 0 0 0 0 0 0 + 2 68.00 615 721 1337 7215 5860 19 0 0 0 0 0 0 0 + 3 68.00 541 553 1093 6345 5252 0 0 0 0 0 0 0 0 + 4 68.00 565 570 1134 6154 5020 0 0 0 0 0 0 0 0 + 5 68.00 577 560 1137 5930 4793 0 0 0 0 0 0 0 0 + 6 68.00 562 495 1057 5387 4330 -0 0 0 0 0 0 0 0 + 1 68.00 565 437 1002 4818 3816 -0 0 0 0 0 0 0 0 + 2 68.00 556 386 942 4353 3411 -0 0 0 0 0 0 0 0 + 3 68.00 553 342 896 3914 3018 0 0 0 0 0 0 0 0 + 4 68.00 547 307 854 3579 2725 0 0 0 0 0 0 0 0 + 5 68.00 544 280 824 3309 2485 0 0 0 0 0 0 0 0 + 6 68.00 539 257 796 3092 2295 0 0 0 0 0 0 0 0 + 1 68.00 538 252 790 3043 2253 0 0 0 0 0 0 0 0 + 2 68.00 533 238 772 2911 2140 0 0 0 0 0 0 0 0 + 3 68.00 531 228 758 2805 2047 0 0 0 0 0 0 0 0 + 4 68.00 528 218 746 2708 1962 0 0 0 0 0 0 0 0 + 5 68.00 527 210 738 2625 1888 0 0 0 0 0 0 0 0 + 6 68.00 526 203 729 2545 1816 0 0 0 0 0 0 0 0 + 1 68.00 527 204 731 2557 1826 -0 0 0 0 0 0 0 0 + 2 68.00 523 199 722 2506 1785 0 0 0 0 0 0 0 0 + 3 68.00 520 193 714 2459 1745 0 0 0 0 0 0 0 0 + 4 68.00 518 189 707 2411 1704 0 0 0 0 0 0 0 0 + 5 68.00 516 184 700 2360 1660 -0 0 0 0 0 0 0 0 + 6 68.00 513 177 690 2290 1600 -0 0 0 0 0 0 0 0 + 1 68.00 496 168 664 2195 1531 0 0 0 0 0 0 0 0 + 2 68.00 476 160 636 2098 1462 0 0 0 0 0 0 0 0 + 3 68.00 460 153 613 2021 1408 0 0 0 0 0 0 0 0 + 4 68.00 440 146 585 1922 1337 0 0 0 0 0 0 0 0 + 5 68.00 424 139 563 1846 1283 0 0 0 0 0 0 0 0 + 6 68.00 405 132 537 1750 1214 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 12 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 366 118 484 1584 1100 -0 0 0 0 0 0 0 0 + 2 68.00 343 111 453 1484 1031 -0 0 0 0 0 0 0 0 + 3 68.00 321 103 424 1380 957 0 0 0 0 0 0 0 0 + 4 68.00 300 96 397 1285 888 0 0 0 0 0 0 0 0 + 5 68.00 284 91 374 1205 830 0 0 0 0 0 0 0 0 + 6 68.00 268 85 354 1135 781 -0 0 0 0 0 0 0 0 + 1 68.00 238 75 312 995 683 0 0 0 0 0 0 0 0 + 2 68.00 219 68 287 908 621 0 0 0 0 0 0 0 0 + 3 68.00 201 62 263 825 562 -0 0 0 0 0 0 0 0 + 4 68.00 186 58 243 761 518 0 0 0 0 0 0 0 0 + 5 68.00 177 55 232 724 493 0 0 0 0 0 0 0 0 + 6 68.00 171 53 223 697 474 0 0 0 0 0 0 0 0 + 1 68.00 172 53 225 701 476 0 0 0 0 0 0 0 0 + 2 68.00 172 53 225 699 475 0 0 0 0 0 0 0 0 + 3 68.00 172 53 225 701 476 0 0 0 0 0 0 0 0 + 4 68.00 167 52 218 679 460 0 0 0 0 0 0 0 0 + 5 68.00 157 48 205 638 433 0 0 0 0 0 0 0 0 + 6 68.00 148 46 194 603 409 0 0 0 0 0 0 0 0 + 1 68.00 102 31 133 413 281 0 0 0 0 0 0 0 0 + 2 68.00 91 28 120 372 253 0 0 0 0 0 0 0 0 + 3 68.00 80 25 105 326 221 0 0 0 0 0 0 0 0 + 4 68.00 87 27 113 351 238 0 0 0 0 0 0 0 0 + 5 68.00 108 33 141 439 298 0 0 0 0 0 0 0 0 + 6 68.00 129 40 169 523 354 0 0 0 0 0 0 0 0 + 1 68.00 181 55 236 735 499 0 0 0 0 0 0 0 0 + 2 68.00 207 64 270 841 571 0 0 0 0 0 0 0 0 + 3 68.00 228 70 298 941 642 0 0 0 0 0 0 0 0 + 4 68.00 247 76 323 1019 696 -0 0 0 0 0 0 0 0 + 5 68.00 264 81 345 1094 749 0 0 0 0 0 0 0 0 + 6 68.00 278 86 365 1161 796 0 0 0 0 0 0 0 0 + 1 68.00 290 90 381 1214 833 0 0 0 0 0 0 0 0 + 2 68.00 297 93 390 1254 863 0 0 0 0 0 0 0 0 + 3 68.00 303 95 398 1286 888 -0 0 0 0 0 0 0 0 + 4 68.00 310 98 408 1325 917 0 0 0 0 0 0 0 0 + 5 68.00 315 100 415 1354 939 0 0 0 0 0 0 0 0 + 6 68.00 321 102 423 1391 968 0 0 0 0 0 0 0 0 + 1 68.00 307 100 407 1352 945 0 0 0 0 0 0 0 0 + 2 68.00 312 103 415 1395 980 0 0 0 0 0 0 0 0 + 3 68.00 318 106 424 1440 1015 0 0 0 0 0 0 0 0 + 4 68.00 322 110 432 1483 1051 0 0 0 0 0 0 0 0 + 5 68.00 326 113 439 1525 1086 0 0 0 0 0 0 0 0 + 6 68.00 331 116 447 1572 1125 0 0 0 0 0 0 0 0 + 1 68.00 325 115 440 1562 1123 0 0 0 0 0 0 0 0 + 2 68.00 327 118 445 1593 1148 -0 0 0 0 0 0 0 0 + 3 68.00 330 120 451 1625 1174 0 0 0 0 0 0 0 0 + 4 68.00 333 123 456 1656 1200 0 0 0 0 0 0 0 0 + 5 68.00 334 125 459 1678 1219 -0 0 0 0 0 0 0 0 + 6 68.00 338 128 466 1717 1251 -0 0 0 0 0 0 0 0 + 1 68.00 348 131 478 1752 1273 -0 0 0 0 0 0 0 0 + 2 68.00 350 131 481 1750 1269 -0 0 0 0 0 0 0 0 + 3 68.00 352 130 482 1754 1272 0 0 0 0 0 0 0 0 + 4 68.00 352 130 482 1747 1266 0 0 0 0 0 0 0 0 + 5 68.00 352 129 481 1740 1259 0 0 0 0 0 0 0 0 + 6 68.00 354 129 482 1739 1257 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 13 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 365 135 500 1807 1307 -0 0 0 0 0 0 0 0 + 2 68.00 366 136 502 1830 1328 0 0 0 0 0 0 0 0 + 3 68.00 366 138 504 1855 1351 0 0 0 0 0 0 0 0 + 4 68.00 368 140 508 1882 1374 0 0 0 0 0 0 0 0 + 5 68.00 370 143 513 1910 1397 0 0 0 0 0 0 0 0 + 6 68.00 372 145 517 1937 1420 0 0 0 0 0 0 0 0 + 1 68.00 394 154 548 2051 1504 0 0 0 0 0 0 0 0 + 2 68.00 398 155 553 2068 1515 0 0 0 0 0 0 0 0 + 3 68.00 400 155 555 2079 1525 0 0 0 0 0 0 0 0 + 4 68.00 402 156 557 2090 1533 -0 0 0 0 0 0 0 0 + 5 68.00 404 156 560 2100 1540 0 0 0 0 0 0 0 0 + 6 68.00 404 156 560 2093 1533 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 14 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.59 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.46 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.28 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.13 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.92 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.80 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.63 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.47 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.31 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.15 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.99 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.83 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.67 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.51 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.35 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.19 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 66.03 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.87 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.71 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.55 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.39 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.23 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 65.07 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.91 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.75 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.59 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.43 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.26 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.10 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.94 65.00 64.84 95.02 89.59 0 46278 17533 2653 .0577 .0619 0.381 0.150 0.788 0 72.4 2349 0 180 123 2653 -708 1945 708 -1 900 1341 2.831 2.608 1.615 + 12 2 5 0 30.77 64.15 65.00 64.81 94.98 89.62 0 46260 17579 3000 .0653 .0700 0.383 0.169 0.792 0 81.9 2659 0 201 140 3000 -796 2203 796 -0 1015 1493 2.828 2.619 1.625 + 12 2 5 1 30.62 64.11 65.00 64.84 95.00 89.67 0 46243 17626 3391 .0739 .0791 0.384 0.191 0.798 0 92.6 3008 0 224 158 3391 -894 2497 894 -0 1143 1662 2.825 2.631 1.636 + 12 2 5 2 30.47 64.03 65.00 64.83 94.98 89.67 0 46225 17672 3898 .0850 .0909 0.385 0.219 0.805 0 106.5 3462 0 254 182 3898 -1028 2871 1028 -0 1307 1880 2.823 2.649 1.647 + 12 2 5 3 30.32 64.01 65.00 64.82 94.95 89.65 0 46208 17719 4308 .0939 0.100 0.386 0.241 0.810 0 117.7 3830 0 277 201 4308 -1137 3171 1137 -0 1439 2054 2.820 2.661 1.654 + 12 2 5 4 30.17 63.96 65.00 64.81 94.94 89.64 0 46190 17766 4752 0.104 0.111 0.387 0.266 0.816 0 129.9 4229 0 301 222 4752 -1254 3498 1254 0 1581 2240 2.817 2.676 1.663 + 12 2 5 5 30.02 63.94 65.00 64.80 94.92 89.63 0 46173 17812 5178 0.113 0.121 0.389 0.289 0.822 0 141.6 4612 0 324 242 5178 -1366 3811 1366 0 1715 2417 2.814 2.689 1.671 + 12 2 6 0 29.90 63.91 66.50 64.86 116.34 112.66 0 46159 17849 81078 1.000 1.887 1.000 1.000 1.000 0.656 1262 40809 32778 3196 2154 78937 -13160 63707 15230 2070 14513 52777 2.812 2.812 1.210 + 12 2 6 1 29.78 69.48 66.50 66.06 96.16 91.63 0 46145 17887 22219 0.484 0.517 0.482 1.000 1.000 0 607.8 19772 0 1410 1037 22219 -5520 16699 5520 0 6836 9420 2.810 2.892 1.799 + 12 2 6 2 29.66 66.65 66.50 66.87 96.95 92.85 0 46131 17924 22108 0.482 0.514 0.479 1.000 1.000 0 605.0 19690 0 1386 1032 22108 -4683 17425 4683 0 6810 9365 2.807 2.891 1.888 + 12 2 6 3 29.54 65.81 66.50 66.50 96.58 92.43 0 46117 17961 22707 0.495 0.528 0.492 1.000 1.000 0 621.6 20233 0 1414 1060 22707 -5091 17616 5091 0 7013 9624 2.805 2.885 1.857 + 12 2 6 4 29.42 66.47 66.50 66.38 96.45 92.30 0 46103 17998 23051 0.503 0.536 0.500 1.000 1.000 0 631.2 20551 0 1423 1077 23051 -5250 17801 5250 0 7134 9770 2.803 2.881 1.848 + 12 2 6 5 29.30 66.48 66.50 66.48 96.53 92.13 0 46089 18035 21327 0.466 0.495 0.463 1.000 1.000 0 584.1 19046 0 1285 997 21327 -4958 16369 4958 0 6586 9004 2.801 2.892 1.846 + 12 2 7 0 29.57 66.58 67.92 66.49 129.17 124.73 0 46120 17952 104k 1.000 2.413 1.000 1.000 1.000 1.000 1262 40852 50000 3115 2154 96120 -15758 78406 17715 1957 14560 69964 2.806 2.806 1.123 + 12 2 7 1 29.84 70.85 68.00 67.73 97.83 95.43 0 46152 17868 42630 0.924 0.992 0.923 1.000 1.000 0 1166 37706 0 2921 1989 42615 -7560 34951 7664 104 13385 18431 2.811 2.817 1.910 + 12 2 7 2 30.11 68.74 68.00 68.34 98.46 95.96 0 46183 17784 37469 0.812 0.873 0.811 1.000 1.000 0 1024 33126 0 2595 1747 37469 -6164 31305 6164 0 11692 16172 2.816 2.833 1.952 + 12 2 7 3 30.38 67.90 68.00 68.08 98.22 95.55 0 46215 17700 36157 0.783 0.843 0.782 1.000 1.000 0 987.6 31923 0 2549 1685 36157 -6412 29745 6412 0 11235 15606 2.821 2.841 1.923 + 12 2 7 4 30.65 68.41 68.00 67.97 98.14 95.31 0 46246 17617 34699 0.751 0.810 0.750 1.000 1.000 0 947.2 30594 0 2489 1616 34699 -6426 28273 6426 0 10734 14975 2.826 2.850 1.905 + 12 2 7 5 30.92 68.36 68.00 68.05 98.23 95.14 0 46278 17533 31275 0.677 0.730 0.676 1.000 1.000 0 853.1 27549 0 2270 1455 31275 -5963 25312 5963 0 9613 13475 2.831 2.866 1.898 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 15 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.69 68.00 68.04 98.34 94.85 0 46463 17039 27912 0.602 0.655 0.601 1.000 1.000 0 758.3 24359 0 2259 1294 27912 -5657 22255 5657 0 8379 12068 2.861 2.907 1.865 + 12 2 8 1 34.10 68.67 68.00 68.09 98.51 94.65 0 46649 16545 25027 0.537 0.590 0.536 1.000 1.000 0 677.2 21621 0 2250 1155 25027 -5298 19728 5298 0 7331 10873 2.893 2.949 1.838 + 12 2 8 2 35.69 68.84 68.00 68.09 98.63 94.29 0 46834 16051 22276 0.475 0.523 0.476 1.000 1.000 0 600.4 19233 0 2018 1024 22275 -5018 17258 5018 -0 6364 9544 2.952 3.022 1.835 + 12 2 8 3 37.28 68.85 68.00 68.12 98.79 93.94 0 47020 15558 19815 0.420 0.457 0.421 1.000 1.000 0 532.0 17328 0 1580 908 19815 -4729 15087 4729 0 5516 8141 3.049 3.141 1.885 + 12 2 8 4 38.87 68.91 68.00 68.13 98.92 93.52 0 47205 15065 17754 0.374 0.402 0.376 1.000 1.000 0 474.8 15722 0 1221 810 17754 -4508 13245 4508 0 4797 6965 3.148 3.277 1.940 + 12 2 8 5 40.46 68.92 68.00 68.15 99.06 93.04 0 47391 14574 15825 0.332 0.352 0.334 1.000 1.000 0 421.5 14195 0 911 719 15825 -4286 11539 4286 -0 4125 5891 3.250 3.441 2.005 + 12 2 9 0 41.12 69.02 68.00 68.16 99.12 92.67 0 47468 14370 14678 0.307 0.324 0.309 1.000 1.000 0 390.3 13234 0 778 666 14678 -4152 10526 4152 0 3749 5330 3.293 3.530 2.027 + 12 2 9 1 41.78 68.99 68.00 68.18 99.19 92.49 0 47545 14167 13209 0.276 0.290 0.296 0.939 0.985 0 350.7 11977 0 634 598 13209 -3821 9389 3821 0 3028 4397 3.337 3.956 2.204 + 12 2 9 2 42.44 68.91 68.00 68.18 99.24 92.43 0 47622 13963 11733 0.245 0.255 0.291 0.846 0.962 0 311.0 10704 0 499 531 11733 -3425 8308 3425 0 2728 3894 3.381 3.924 2.211 + 12 2 9 3 43.10 68.74 68.00 68.17 99.28 92.36 0 47699 13760 10553 0.220 0.228 0.287 0.772 0.943 0 279.3 9687 0 389 476 10553 -3116 7437 3116 0 2476 3479 3.425 3.912 2.225 + 12 2 9 4 43.76 68.58 68.00 68.14 99.30 92.25 0 47776 13557 9399 0.196 0.202 0.282 0.697 0.924 0 248.3 8683 0 292 424 9399 -2815 6584 2815 0 2226 3078 3.471 3.901 2.238 + 12 2 9 5 44.42 68.25 68.00 68.11 99.32 92.15 0 47853 13354 8333 0.173 0.178 0.278 0.627 0.907 0 219.8 7749 0 209 375 8333 -2531 5803 2531 0 1988 2709 3.516 3.897 2.256 + 12 2 10 0 44.93 67.97 68.00 68.06 99.30 92.01 0 47912 13197 7995 0.166 0.170 0.274 0.608 0.902 0 210.6 7472 0 163 359 7995 -2466 5528 2466 -0 1899 2558 3.552 3.934 2.283 + 12 2 10 1 45.44 67.88 68.00 68.01 98.92 91.59 0 47392 12839 7142 0.151 0.151 0.271 0.556 0.889 0 190.2 6818 0 0 325 7142 -2237 4905 2237 -0 1759 2220 3.588 3.876 2.354 + 12 2 10 2 45.95 67.59 68.00 67.99 99.06 91.60 0 47641 12748 6368 0.134 0.134 0.268 0.500 0.875 0 168.7 6080 0 0 288 6368 -2015 4353 2015 -0 1561 1985 3.624 3.895 2.354 + 12 2 10 3 46.46 67.45 68.00 67.94 99.17 91.55 0 47890 12658 5613 0.117 0.117 0.264 0.443 0.861 0 148.0 5361 0 0 252 5613 -1804 3810 1804 0 1369 1758 3.661 3.916 2.350 + 12 2 10 4 46.97 67.20 68.00 67.91 99.30 91.54 0 48139 12567 4955 0.103 0.103 0.261 0.394 0.849 0 129.9 4734 0 0 222 4955 -1612 3344 1612 0 1199 1557 3.698 3.948 2.353 + 12 2 10 5 47.48 67.02 68.00 67.86 99.26 91.46 0 48154 12562 4275 .0888 .0888 0.261 0.340 0.835 0 112.1 4084 0 0 191 4275 -1401 2874 1401 0 1050 1378 3.700 3.890 2.316 + 12 2 11 0 48.20 66.91 68.00 67.82 99.23 91.40 0 48154 12562 4653 .0966 .0966 0.261 0.370 0.843 0 122.0 4445 0 0 208 4653 -1532 3121 1532 0 1132 1477 3.700 3.925 2.328 + 12 2 11 1 48.92 66.94 68.00 67.80 99.20 91.36 0 48154 12562 4130 .0858 .0858 0.261 0.329 0.832 0 108.3 3945 0 0 185 4130 -1366 2764 1366 0 1018 1339 3.700 3.877 2.299 + 12 2 11 2 49.64 66.90 68.00 67.80 99.20 91.36 0 48154 12562 3592 .0746 .0746 0.261 0.286 0.821 0 94.2 3432 0 0 161 3592 -1188 2404 1188 0 897 1194 3.700 3.827 2.274 + 12 2 11 3 50.36 66.82 68.00 67.79 99.19 91.34 0 48154 12562 3096 .0643 .0643 0.261 0.246 0.812 0 81.2 2958 0 0 138 3096 -1026 2070 1026 0 782 1057 3.700 3.781 2.249 + 12 2 11 4 51.08 66.75 68.00 67.77 99.17 91.30 0 48154 12562 2626 .0545 .0545 0.261 0.209 0.802 0 68.8 2508 0 0 117 2626 -872 1753 872 0 671 925 3.700 3.737 2.223 + 12 2 11 5 51.80 66.67 68.00 67.75 99.16 91.27 0 48154 12562 2154 .0447 .0447 0.261 0.171 0.793 0 56.5 2058 0 0 96 2154 -718 1437 718 0 557 790 3.700 3.693 2.198 + 12 2 12 0 52.70 66.55 68.00 67.74 99.14 91.24 0 48154 12562 1307 .0271 .0271 0.261 0.104 0.776 0 34.3 1248 0 0 58 1307 -436 870 436 0 345 404 3.700 3.615 2.156 + 12 2 12 1 53.60 66.36 68.00 67.71 99.12 91.20 0 48154 12562 780 .0162 .0162 0.261 .0621 0.766 0 20.4 745 0 0 35 780 -261 518 261 0 209 244 3.700 3.566 2.127 + 12 2 12 2 54.50 66.20 68.00 67.67 99.08 91.13 0 48154 12562 270 .0056 .0056 0.261 .0215 0.755 0 7.1 258 0 0 12 270 -91 179 91 0 73 85 3.700 3.519 2.096 + 12 2 12 3 55.40 66.02 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.94 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.89 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.85 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.81 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.75 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.73 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.69 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.65 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.60 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.55 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.51 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.46 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.41 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.36 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.30 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.26 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.20 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 65.14 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 65.11 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 65.05 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.99 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.93 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.87 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.81 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.77 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.63 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 16 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.55 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.50 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.39 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.32 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.26 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 64.09 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 18 0 53.00 63.98 68.00 67.18 98.58 90.21 0 48154 12562 1302 .0270 .0270 0.261 0.104 0.776 0 34.1 1244 0 0 58 1302 -474 829 474 -0 344 402 3.700 3.615 2.060 + 12 2 18 1 52.94 64.10 68.00 67.15 98.56 90.17 0 48154 12562 1665 .0346 .0346 0.261 0.133 0.783 0 43.7 1591 0 0 74 1665 -607 1058 607 0 436 511 3.700 3.648 2.072 + 12 2 18 2 52.88 64.00 68.00 67.17 98.58 90.20 0 48154 12562 2023 .0420 .0420 0.261 0.161 0.790 0 53.0 1933 0 0 90 2023 -736 1287 736 0 525 616 3.700 3.681 2.091 + 12 2 18 3 52.82 63.99 68.00 67.16 98.56 90.17 0 48154 12562 2225 .0462 .0462 0.261 0.177 0.794 0 58.3 2125 0 0 99 2225 -811 1413 811 0 574 674 3.700 3.700 2.098 + 12 2 18 4 52.76 64.01 68.00 67.15 98.55 90.16 0 48154 12562 2445 .0508 .0508 0.261 0.195 0.799 0 64.1 2336 0 0 109 2445 -892 1553 892 0 628 737 3.700 3.720 2.106 + 12 2 18 5 52.70 63.86 68.00 67.15 98.56 90.16 0 48154 12562 2790 .0579 .0579 0.261 0.222 0.806 0 73.1 2665 0 0 125 2790 -1018 1771 1018 0 710 835 3.700 3.752 2.122 + 12 2 19 0 52.19 63.86 68.00 67.13 98.53 90.15 0 48154 12562 2770 .0575 .0575 0.261 0.220 0.805 0 72.6 2646 0 0 124 2770 -1012 1758 1012 0 705 829 3.700 3.751 2.120 + 12 2 19 1 51.68 63.76 68.00 67.12 98.53 90.14 0 48154 12562 3121 .0648 .0648 0.261 0.248 0.812 0 81.8 2981 0 0 140 3121 -1140 1980 1140 -0 788 928 3.700 3.783 2.135 + 12 2 19 2 51.17 63.76 68.00 67.10 98.51 90.11 0 48154 12562 3376 .0701 .0701 0.261 0.269 0.817 0 88.5 3225 0 0 151 3376 -1237 2139 1237 0 847 998 3.700 3.807 2.143 + 12 2 19 3 50.66 63.69 68.00 67.10 98.51 90.10 0 48154 12562 3735 .0776 .0776 0.261 0.297 0.824 0 97.9 3568 0 0 167 3735 -1369 2366 1369 0 929 1096 3.700 3.840 2.158 + 12 2 19 4 50.15 63.71 68.00 67.09 98.49 90.08 0 48154 12562 3978 .0826 .0826 0.261 0.317 0.829 0 104.3 3800 0 0 178 3978 -1461 2517 1461 0 984 1162 3.700 3.863 2.166 + 12 2 19 5 49.64 63.63 68.00 67.09 98.49 90.08 0 48154 12562 4331 .0899 .0899 0.261 0.345 0.836 0 113.5 4137 0 0 194 4331 -1591 2740 1591 0 1062 1256 3.700 3.895 2.182 + 12 2 20 0 49.13 63.63 68.00 67.08 98.48 90.06 0 48154 12562 4850 0.101 0.101 0.261 0.386 0.847 0 127.1 4633 0 0 217 4850 -1784 3066 1784 0 1175 1528 3.700 3.943 2.203 + 12 2 20 1 48.62 63.71 68.00 67.07 98.48 90.05 0 48154 12562 5208 0.108 0.108 0.261 0.415 0.854 0 136.5 4975 0 0 233 5208 -1916 3292 1916 0 1251 1620 3.700 3.977 2.218 + 12 2 20 2 48.11 63.79 68.00 67.09 98.49 90.08 0 48154 12562 5553 0.115 0.115 0.261 0.442 0.861 0 145.6 5305 0 0 248 5553 -2039 3514 2039 0 1323 1708 3.700 4.009 2.236 + 12 2 20 3 47.60 63.90 68.00 67.10 98.51 90.10 0 48154 12562 5811 0.121 0.121 0.261 0.463 0.866 0 152.3 5551 0 0 260 5811 -2130 3681 2130 0 1377 1773 3.700 4.032 2.249 + 12 2 20 4 47.09 63.99 68.00 67.12 98.53 90.14 0 48154 12562 6121 0.127 0.127 0.261 0.487 0.872 0 160.5 5848 0 0 274 6121 -2238 3883 2238 0 1440 1850 3.700 4.061 2.266 + 12 2 20 5 46.58 64.15 68.00 67.14 98.41 90.14 0 47949 12636 6412 0.134 0.134 0.264 0.507 0.877 0 168.8 6124 0 0 288 6412 -2326 4086 2326 -0 1527 1952 3.669 4.010 2.251 + 12 2 21 0 46.10 64.23 68.00 67.18 98.30 90.16 0 47714 12722 7050 0.148 0.148 0.267 0.554 0.889 0 186.5 6732 0 0 318 7050 -2532 4518 2532 0 1691 2146 3.635 3.980 2.249 + 12 2 21 1 45.62 64.35 68.00 67.20 98.16 90.16 0 47480 12807 7359 0.155 0.155 0.270 0.575 0.894 0 195.7 7025 0 0 334 7359 -2620 4739 2620 0 1790 2260 3.601 3.925 2.231 + 12 2 21 2 45.14 64.45 68.00 67.23 98.04 90.16 0 47245 12892 7652 0.162 0.162 0.273 0.594 0.898 0 204.4 7303 0 0 349 7652 -2698 4954 2698 0 1887 2372 3.567 3.870 2.216 + 12 2 21 3 44.66 64.53 68.00 67.25 98.48 90.60 0 47881 13280 7947 0.165 0.169 0.276 0.601 0.900 0 209.5 7408 0 182 357 7947 -2770 5177 2770 0 1901 2577 3.533 3.896 2.121 + 12 2 21 4 44.18 64.62 68.00 67.27 98.46 90.68 0 47825 13428 8239 0.171 0.176 0.279 0.617 0.904 0 217.5 7643 0 225 371 8239 -2846 5393 2846 0 1980 2712 3.500 3.860 2.094 + 12 2 21 5 43.70 64.71 68.00 67.29 98.45 90.77 0 47769 13575 8519 0.177 0.183 0.283 0.631 0.908 0 225.1 7866 0 269 384 8519 -2916 5604 2916 0 2056 2846 3.466 3.826 2.068 + 12 2 22 0 43.28 64.79 68.00 67.31 98.43 90.84 0 47720 13705 9472 0.197 0.204 0.285 0.696 0.924 0 250.6 8710 0 335 427 9472 -3216 6255 3216 0 2262 3160 3.438 3.850 2.069 + 12 2 22 1 42.86 64.98 68.00 67.33 98.42 90.91 0 47671 13834 9766 0.203 0.212 0.288 0.711 0.928 0 258.6 8944 0 380 441 9766 -3288 6478 3288 0 2338 3297 3.409 3.825 2.050 + 12 2 22 2 42.44 65.10 68.00 67.37 98.43 91.02 0 47622 13963 10025 0.209 0.218 0.291 0.723 0.931 0 265.7 9146 0 426 453 10025 -3337 6688 3337 0 2408 3424 3.381 3.798 2.034 + 12 2 22 3 42.02 65.19 68.00 67.40 98.43 91.11 0 47573 14093 10306 0.215 0.225 0.294 0.737 0.934 0 273.5 9365 0 474 467 10306 -3398 6908 3398 0 2482 3559 3.353 3.773 2.018 + 12 2 22 4 41.60 65.29 68.00 67.42 98.41 91.18 0 47524 14222 10576 0.221 0.232 0.297 0.749 0.937 0 280.9 9574 0 523 479 10576 -3457 7119 3457 0 2554 3692 3.325 3.749 2.002 + 12 2 22 5 41.18 65.39 68.00 67.44 98.41 91.26 0 47475 14352 10813 0.226 0.239 0.300 0.759 0.940 0 287.5 9751 0 571 491 10813 -3502 7311 3502 -0 2619 3817 3.297 3.723 1.986 + 12 2 23 0 41.27 65.48 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 64.01 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.67 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.46 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.33 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.17 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.07 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 63.02 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.83 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.75 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.58 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.50 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 17 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.45 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.31 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.27 66.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.17 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.17 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 62.06 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.98 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.94 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.93 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.85 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.75 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.65 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.55 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.45 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.35 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.25 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.14 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 61.03 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.93 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.82 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.71 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.60 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.48 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.37 65.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.25 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.14 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 60.02 65.00 64.15 94.18 88.47 0 46047 18147 1318 .0289 .0306 0.397 .0720 0.768 0 36.1 1182 0 74 62 1318 -392 927 391 -1 477 750 2.794 2.476 1.512 + 12 3 5 3 28.64 60.11 65.00 64.10 94.11 88.43 0 46012 18240 3552 .0779 .0824 0.400 0.193 0.798 0 97.5 3192 0 194 166 3552 -1056 2496 1056 -0 1245 1742 2.789 2.564 1.555 + 12 3 5 4 28.34 60.38 65.00 64.12 94.10 88.46 0 45977 18333 4119 .0904 .0954 0.402 0.223 0.806 0 113.1 3708 0 218 193 4119 -1219 2900 1219 0 1438 1985 2.783 2.578 1.569 + 12 3 5 5 28.04 60.42 65.00 64.16 94.12 88.54 0 45942 18426 4632 0.102 0.107 0.404 0.249 0.812 0 127.3 4178 0 237 217 4632 -1357 3275 1357 0 1613 2204 2.778 2.590 1.584 + 12 3 6 0 28.07 60.44 66.50 64.39 115.93 112.07 0 45945 18417 82148 1.000 1.901 1.000 1.000 1.000 0.662 1262 41049 33090 2743 2154 79035 -14077 62888 16147 2070 14773 52896 2.779 2.779 1.192 + 12 3 6 1 28.10 66.79 66.50 65.48 95.45 90.54 0 45949 18408 21977 0.481 0.509 0.478 1.000 1.000 0 603.8 19766 0 1180 1030 21977 -6112 15865 6112 0 6892 9239 2.779 2.868 1.743 + 12 3 6 2 28.13 63.64 66.50 66.40 96.37 91.89 0 45952 18398 21658 0.474 0.501 0.471 1.000 1.000 0 595.0 19479 0 1163 1015 21658 -5143 16514 5143 0 6785 9099 2.780 2.871 1.843 + 12 3 6 3 28.16 62.71 66.50 66.00 95.97 91.44 0 45956 18389 22249 0.487 0.515 0.484 1.000 1.000 0 611.1 20000 0 1206 1043 22248 -5587 16661 5587 0 6976 9361 2.780 2.867 1.806 + 12 3 6 4 28.19 63.44 66.50 65.87 95.85 91.38 0 45959 18380 22946 0.502 0.531 0.499 1.000 1.000 0 630.3 20616 0 1256 1075 22946 -5801 17146 5801 -0 7203 9670 2.781 2.862 1.798 + 12 3 6 5 28.22 63.51 66.50 65.97 95.94 91.23 0 45963 18370 21338 0.467 0.494 0.464 1.000 1.000 0 586.0 19185 0 1153 1000 21338 -5492 15845 5492 0 6673 8962 2.781 2.875 1.795 + 12 3 7 0 28.52 63.84 67.93 66.09 128.70 124.11 0 45998 18277 104k 1.000 2.415 1.000 1.000 1.000 1.000 1262 40990 50000 2854 2154 95998 -16494 77530 18468 1974 14709 69853 2.787 2.787 1.112 + 12 3 7 1 28.82 68.27 68.00 67.36 97.38 94.74 0 46033 18184 41140 0.894 0.954 0.894 1.000 1.000 0 1128 36624 0 2591 1925 41140 -8080 32973 8167 86 13073 17726 2.792 2.801 1.875 + 12 3 7 2 29.12 66.18 68.00 67.97 98.02 95.26 0 46068 18091 36260 0.788 0.842 0.787 1.000 1.000 0 993.6 32252 0 2313 1695 36260 -6648 29613 6648 0 11443 15588 2.798 2.818 1.917 + 12 3 7 3 29.42 65.38 68.00 67.72 97.78 94.83 0 46103 17998 34803 0.756 0.809 0.755 1.000 1.000 0 953.0 30911 0 2267 1626 34803 -6851 27953 6851 -0 10931 14960 2.803 2.828 1.886 + 12 3 7 4 29.72 65.99 68.00 67.61 97.70 94.57 0 46138 17905 33234 0.722 0.773 0.720 1.000 1.000 0 909.3 29475 0 2208 1551 33234 -6826 26408 6826 0 10386 14282 2.809 2.838 1.867 + 12 3 7 5 30.02 65.98 68.00 67.68 97.79 94.37 0 46173 17812 29792 0.647 0.694 0.645 1.000 1.000 0 814.5 26397 0 2005 1390 29792 -6314 23478 6314 -0 9244 12776 2.814 2.856 1.858 + 12 3 8 0 31.40 66.28 68.00 67.66 97.88 94.02 0 46334 17384 26667 0.577 0.624 0.576 1.000 1.000 0 726.5 23446 0 1982 1240 26667 -5999 20668 5999 0 8104 11462 2.840 2.893 1.825 + 12 3 8 1 32.78 66.25 68.00 67.70 98.02 93.75 0 46495 16955 23853 0.514 0.560 0.513 1.000 1.000 0 647.6 20797 0 1951 1105 23853 -5624 18229 5624 0 7093 10285 2.867 2.932 1.796 + 12 3 8 2 34.16 66.43 68.00 67.68 98.11 93.33 0 46656 16526 21274 0.457 0.502 0.456 1.000 1.000 0 575.6 18378 0 1914 982 21274 -5335 15939 5335 -0 6183 9215 2.894 2.972 1.756 + 12 3 8 3 35.54 66.45 68.00 67.69 98.23 92.91 0 46817 16097 18930 0.404 0.445 0.404 1.000 1.000 0 510.4 16319 0 1739 871 18930 -5032 13897 5032 0 5373 8120 2.943 3.037 1.741 + 12 3 8 4 36.92 66.57 68.00 67.68 98.32 92.41 0 46978 15669 16947 0.359 0.392 0.361 1.000 1.000 0 455.4 14763 0 1407 777 16947 -4795 12152 4795 0 4695 7016 3.027 3.144 1.766 + 12 3 8 5 38.30 66.62 68.00 67.69 98.43 91.91 0 47139 15242 15213 0.321 0.346 0.323 1.000 1.000 0 407.4 13388 0 1129 695 15212 -4566 10646 4566 -0 4096 6056 3.112 3.268 1.798 + 12 3 9 0 38.84 66.70 68.00 67.70 98.48 91.86 0 47202 15074 14115 0.297 0.320 0.317 0.942 0.986 0 377.5 12477 0 994 644 14115 -4267 9847 4267 0 3355 5129 3.146 3.719 1.972 + 12 3 9 1 39.38 66.66 68.00 67.71 98.54 91.85 0 47265 14907 12633 0.265 0.284 0.313 0.853 0.963 0 337.4 11217 0 840 576 12633 -3835 8799 3835 0 3053 4606 3.180 3.674 1.969 + 12 3 9 2 39.92 66.52 68.00 67.70 98.57 91.80 0 47328 14741 11283 0.237 0.252 0.309 0.771 0.943 0 300.9 10064 0 706 513 11283 -3454 7829 3454 -0 2769 4124 3.215 3.635 1.963 + 12 3 9 3 40.46 66.34 68.00 67.68 98.59 91.72 0 47391 14574 10086 0.211 0.224 0.305 0.697 0.924 0 268.7 9038 0 589 458 10086 -3120 6966 3120 0 2507 3692 3.250 3.605 1.959 + 12 3 9 4 41.00 66.21 68.00 67.65 98.60 91.62 0 47454 14407 9000 0.188 0.199 0.301 0.629 0.907 0 239.4 8103 0 488 408 9000 -2818 6182 2818 0 2263 3296 3.285 3.580 1.956 + 12 3 9 5 41.54 66.01 68.00 67.62 98.61 91.53 0 47517 14241 8004 0.167 0.176 0.298 0.566 0.892 0 212.6 7241 0 400 363 8004 -2534 5470 2534 0 2033 2932 3.321 3.561 1.956 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 18 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.88 68.00 67.59 98.63 91.40 0 47608 14000 8529 0.178 0.186 0.292 0.613 0.903 0 226.2 7772 0 371 386 8529 -2743 5786 2743 0 2115 3008 3.373 3.676 2.015 + 12 3 10 1 43.10 66.02 68.00 67.56 98.67 91.29 0 47699 13760 7746 0.161 0.167 0.287 0.567 0.892 0 205.0 7111 0 286 350 7746 -2528 5218 2528 -0 1922 2694 3.425 3.699 2.040 + 12 3 10 2 43.88 65.83 68.00 67.58 98.75 91.25 0 47790 13520 7022 0.146 0.151 0.281 0.522 0.881 0 185.5 6495 0 211 316 7022 -2308 4714 2308 -0 1742 2406 3.479 3.729 2.077 + 12 3 10 3 44.66 65.94 68.00 67.54 98.77 91.12 0 47881 13280 6217 0.129 0.132 0.276 0.470 0.868 0 163.9 5795 0 142 280 6217 -2075 4142 2075 0 1543 2102 3.533 3.754 2.107 + 12 3 10 4 45.44 65.76 68.00 67.56 98.46 90.76 0 47392 12839 5563 0.117 0.117 0.271 0.433 0.858 0 148.2 5310 0 0 253 5563 -1875 3688 1875 0 1419 1808 3.588 3.742 2.206 + 12 3 10 5 46.22 65.83 68.00 67.52 98.68 90.77 0 47773 12700 4836 0.101 0.101 0.266 0.381 0.845 0 127.8 4618 0 0 218 4836 -1655 3182 1655 -0 1214 1568 3.644 3.806 2.223 + 12 3 11 0 46.58 65.64 68.00 67.53 98.80 90.82 0 47949 12636 4853 0.101 0.101 0.264 0.384 0.846 0 127.8 4635 0 0 218 4853 -1666 3187 1666 -0 1198 1553 3.669 3.869 2.250 + 12 3 11 1 46.94 65.92 68.00 67.49 98.88 90.79 0 48124 12572 4305 .0895 .0895 0.261 0.342 0.836 0 112.9 4113 0 0 193 4305 -1492 2814 1492 0 1059 1389 3.696 3.882 2.247 + 12 3 11 2 47.30 65.88 68.00 67.54 98.94 90.86 0 48154 12562 3949 .0820 .0820 0.261 0.314 0.829 0 103.5 3772 0 0 177 3949 -1362 2587 1362 0 977 1290 3.700 3.860 2.242 + 12 3 11 3 47.66 65.99 68.00 67.53 98.94 90.86 0 48154 12562 3459 .0718 .0718 0.261 0.275 0.819 0 90.7 3305 0 0 155 3459 -1193 2266 1193 -0 866 1158 3.700 3.814 2.219 + 12 3 11 4 48.02 65.59 68.00 67.55 98.95 90.88 0 48154 12562 3143 .0653 .0653 0.261 0.250 0.813 0 82.4 3002 0 0 141 3143 -1082 2061 1082 0 793 1070 3.700 3.785 2.207 + 12 3 11 5 48.38 66.02 68.00 67.49 98.89 90.79 0 48154 12562 2703 .0561 .0561 0.261 0.215 0.804 0 70.9 2582 0 0 121 2703 -938 1765 938 0 690 947 3.700 3.744 2.178 + 12 3 12 0 48.86 65.98 68.00 67.55 98.96 90.89 0 48154 12562 1967 .0408 .0408 0.261 0.157 0.789 0 51.6 1879 0 0 88 1967 -677 1290 677 0 511 736 3.700 3.676 2.153 + 12 3 12 1 49.34 65.78 68.00 67.55 98.95 90.88 0 48154 12562 1461 .0303 .0303 0.261 0.116 0.779 0 38.3 1396 0 0 65 1461 -503 958 503 0 385 586 3.700 3.629 2.130 + 12 3 12 2 49.82 65.69 68.00 67.51 98.92 90.83 0 48154 12562 1034 .0215 .0215 0.261 .0823 0.771 0 27.1 988 0 0 46 1034 -358 676 358 0 275 458 3.700 3.590 2.104 + 12 3 12 3 50.30 65.53 68.00 67.50 98.90 90.80 0 48154 12562 657 .0136 .0136 0.261 .0523 0.763 0 17.2 627 0 0 29 657 -228 429 228 0 177 342 3.700 3.555 2.085 + 12 3 12 4 50.78 65.44 68.00 67.47 98.88 90.76 0 48154 12562 300 .0062 .0062 0.261 .0239 0.756 0 7.9 286 0 0 13 300 -104 196 104 0 81 231 3.700 3.522 2.064 + 12 3 12 5 51.26 65.33 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 13 0 51.59 65.30 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.30 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.32 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.33 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.35 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.32 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.46 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.37 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.58 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.49 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.58 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.48 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.51 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.75 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.70 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.76 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.61 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.62 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.61 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.75 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.70 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.70 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.72 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.73 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.79 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.57 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.77 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.41 68.00 67.54 98.95 90.85 0 48154 12562 1155 .0240 .0240 0.261 .0919 0.773 0 30.3 1103 0 0 52 1155 -400 756 399 -1 306 358 3.700 3.601 2.113 + 12 3 17 4 49.49 65.85 68.00 67.46 98.86 90.74 0 48154 12562 3008 .0625 .0625 0.261 0.239 0.810 0 78.9 2874 0 0 135 3008 -1048 1961 1048 0 762 896 3.700 3.773 2.188 + 12 3 17 5 49.10 66.02 68.00 67.53 98.93 90.86 0 48154 12562 3383 .0703 .0703 0.261 0.269 0.817 0 88.7 3232 0 0 151 3383 -1167 2216 1167 0 849 1000 3.700 3.807 2.216 + 12 3 18 0 48.05 66.06 68.00 67.57 98.97 90.92 0 48154 12562 3362 .0698 .0698 0.261 0.268 0.817 0 88.1 3212 0 0 150 3362 -1154 2209 1154 0 844 1131 3.700 3.805 2.221 + 12 3 18 1 47.00 66.13 68.00 67.58 98.98 90.94 0 48154 12562 3943 .0819 .0819 0.261 0.314 0.828 0 103.4 3767 0 0 176 3943 -1351 2592 1351 0 976 1289 3.700 3.859 2.249 + 12 3 18 2 45.95 66.27 68.00 67.59 98.66 90.88 0 47641 12748 4506 .0946 .0946 0.268 0.353 0.838 0 119.4 4302 0 0 204 4506 -1519 2987 1519 0 1153 1493 3.624 3.732 2.202 + 12 3 18 3 44.90 66.43 68.00 67.62 98.87 91.23 0 47909 13206 5043 0.105 0.107 0.274 0.384 0.846 0 132.9 4712 0 104 227 5043 -1668 3375 1668 0 1278 1746 3.550 3.686 2.097 + 12 3 18 4 43.85 66.64 68.00 67.66 98.82 91.39 0 47786 13529 5615 0.117 0.120 0.281 0.417 0.854 0 148.3 5192 0 170 253 5615 -1822 3793 1822 -0 1436 1996 3.477 3.615 2.040 + 12 3 18 5 42.80 66.87 68.00 67.70 98.78 91.56 0 47664 13852 6181 0.129 0.134 0.289 0.449 0.862 0 163.7 5658 0 244 279 6181 -1965 4215 1965 0 1594 2253 3.405 3.550 1.991 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 19 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.97 68.00 67.74 98.81 91.63 0 47646 13899 6232 0.130 0.135 0.290 0.451 0.863 0 165.1 5697 0 254 282 6232 -1967 4266 1967 0 1610 2282 3.395 3.539 1.988 + 12 3 19 1 42.50 66.97 68.00 67.76 98.82 91.68 0 47629 13945 6518 0.136 0.142 0.291 0.471 0.868 0 172.7 5949 0 274 295 6518 -2045 4472 2045 0 1678 2383 3.385 3.546 1.991 + 12 3 19 2 42.35 67.09 68.00 67.76 98.82 91.71 0 47611 13991 6749 0.141 0.147 0.292 0.486 0.871 0 178.9 6151 0 292 305 6749 -2111 4637 2111 -0 1734 2467 3.375 3.548 1.989 + 12 3 19 3 42.20 67.05 68.00 67.79 98.83 91.76 0 47594 14037 6988 0.146 0.153 0.293 0.501 0.875 0 185.3 6361 0 311 316 6988 -2174 4814 2174 -0 1791 2555 3.365 3.551 1.990 + 12 3 19 4 42.05 67.09 68.00 67.78 98.81 91.77 0 47576 14083 7177 0.150 0.157 0.294 0.513 0.878 0 190.4 6524 0 328 325 7177 -2228 4949 2228 0 1837 2627 3.355 3.550 1.987 + 12 3 19 5 41.90 67.03 68.00 67.79 98.81 91.80 0 47559 14130 7439 0.155 0.163 0.295 0.530 0.883 0 197.5 6753 0 350 337 7439 -2301 5138 2301 0 1899 2723 3.345 3.555 1.987 + 12 3 20 0 41.60 67.08 68.00 67.79 98.78 91.82 0 47524 14222 7763 0.162 0.171 0.297 0.550 0.887 0 206.2 7027 0 384 352 7763 -2394 5369 2394 0 1980 2852 3.325 3.550 1.977 + 12 3 20 1 41.30 67.02 68.00 67.80 98.77 91.86 0 47489 14315 8075 0.169 0.178 0.299 0.568 0.892 0 214.7 7290 0 419 366 8075 -2476 5599 2476 0 2057 2979 3.305 3.544 1.970 + 12 3 20 2 41.00 66.97 68.00 67.79 98.74 91.88 0 47454 14407 8341 0.174 0.184 0.301 0.583 0.896 0 221.9 7510 0 452 379 8341 -2548 5793 2548 0 2124 3092 3.285 3.535 1.960 + 12 3 20 3 40.70 67.02 68.00 67.79 98.71 91.90 0 47419 14500 8503 0.178 0.189 0.304 0.591 0.898 0 226.3 7635 0 481 386 8503 -2588 5915 2588 0 2170 3173 3.266 3.519 1.948 + 12 3 20 4 40.40 66.93 68.00 67.80 98.70 91.95 0 47384 14592 8799 0.184 0.196 0.306 0.607 0.902 0 234.4 7881 0 518 400 8799 -2663 6136 2663 -0 2244 3298 3.246 3.513 1.941 + 12 3 20 5 40.10 66.94 68.00 67.79 98.67 91.95 0 47349 14685 8943 0.187 0.200 0.308 0.613 0.903 0 238.4 7989 0 547 407 8943 -2700 6243 2700 0 2285 3375 3.227 3.496 1.927 + 12 3 21 0 40.43 66.88 68.00 67.79 98.69 91.93 0 47387 14583 9386 0.197 0.209 0.306 0.648 0.912 0 250.0 8409 0 551 427 9386 -2846 6540 2846 -0 2365 3479 3.248 3.555 1.957 + 12 3 21 1 40.76 66.85 68.00 67.78 98.71 91.89 0 47426 14481 9480 0.198 0.210 0.303 0.659 0.915 0 252.3 8517 0 532 430 9480 -2890 6589 2890 0 2372 3471 3.270 3.591 1.976 + 12 3 21 2 41.09 66.80 68.00 67.78 98.73 91.86 0 47464 14379 9553 0.200 0.211 0.301 0.669 0.917 0 254.1 8608 0 511 433 9553 -2927 6626 2927 -0 2373 3455 3.291 3.627 1.997 + 12 3 21 3 41.42 66.73 68.00 67.77 98.75 91.82 0 47503 14278 9608 0.201 0.211 0.298 0.678 0.919 0 255.3 8683 0 489 436 9608 -2961 6647 2961 0 2371 3432 3.313 3.663 2.017 + 12 3 21 4 41.75 66.69 68.00 67.75 98.76 91.77 0 47541 14176 9647 0.201 0.212 0.296 0.685 0.921 0 256.2 8745 0 465 437 9647 -2991 6656 2991 0 2365 3403 3.335 3.698 2.037 + 12 3 21 5 42.08 66.58 68.00 67.75 98.78 91.73 0 47580 14074 9666 0.202 0.211 0.294 0.692 0.923 0 256.4 8788 0 440 438 9666 -3014 6652 3014 0 2354 3368 3.357 3.733 2.058 + 12 3 22 0 42.05 66.67 68.00 67.73 98.76 91.70 0 47576 14083 10414 0.217 0.228 0.294 0.745 0.936 0 276.3 9466 0 477 471 10414 -3254 7160 3254 0 2501 3586 3.355 3.784 2.076 + 12 3 22 1 42.02 66.79 68.00 67.74 98.77 91.72 0 47573 14093 10566 0.220 0.231 0.294 0.755 0.939 0 280.4 9601 0 486 478 10566 -3295 7271 3295 0 2532 3633 3.353 3.792 2.080 + 12 3 22 2 41.99 66.84 68.00 67.76 98.79 91.77 0 47569 14102 10694 0.223 0.234 0.294 0.764 0.941 0 283.8 9715 0 495 484 10694 -3321 7373 3321 0 2558 3673 3.351 3.798 2.085 + 12 3 22 3 41.96 66.85 68.00 67.77 98.79 91.78 0 47566 14111 10828 0.226 0.237 0.295 0.773 0.943 0 287.4 9835 0 504 490 10828 -3357 7472 3357 0 2585 3715 3.349 3.805 2.088 + 12 3 22 4 41.93 66.87 68.00 67.78 98.80 91.79 0 47562 14120 10964 0.229 0.240 0.295 0.782 0.946 0 291.0 9955 0 513 496 10964 -3396 7569 3396 0 2612 3758 3.347 3.811 2.090 + 12 3 22 5 41.90 67.11 68.00 67.78 98.80 91.80 0 47559 14130 10966 0.229 0.240 0.295 0.782 0.945 0 291.1 9954 0 515 497 10966 -3392 7574 3392 0 2614 3762 3.345 3.808 2.089 + 12 3 23 0 41.51 67.21 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.79 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.42 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.45 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.34 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.26 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.17 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 65.02 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.96 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.86 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.76 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.61 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.58 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.46 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.45 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.34 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.21 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.10 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.98 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.87 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.75 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.64 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.52 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.40 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 20 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.28 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.16 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 63.03 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.91 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.78 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.65 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.53 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.40 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.27 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.14 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.99 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.86 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.72 65.00 64.47 94.58 88.96 0 46169 17821 423 .0092 .0099 0.389 .0236 0.756 0 11.6 377 0 26 20 423 -121 303 120 -1 153 335 2.814 2.471 1.525 + 12 4 5 1 29.96 61.65 65.00 64.40 94.51 88.89 0 46166 17831 3059 .0668 .0712 0.389 0.170 0.793 0 83.6 2726 0 190 143 3059 -874 2185 874 0 1052 1522 2.813 2.590 1.577 + 12 4 5 2 29.93 61.92 65.00 64.39 94.50 88.87 0 46162 17840 3470 .0758 .0808 0.389 0.193 0.798 0 94.9 3093 0 215 162 3470 -994 2476 994 0 1186 1700 2.812 2.608 1.584 + 12 4 5 3 29.90 61.92 65.00 64.43 94.53 88.93 0 46159 17849 3871 .0845 .0901 0.390 0.215 0.804 0 105.9 3451 0 239 181 3871 -1101 2770 1101 0 1315 1871 2.812 2.625 1.597 + 12 4 5 4 29.87 61.88 65.00 64.43 94.53 88.93 0 46155 17859 4288 .0936 .0998 0.390 0.238 0.810 0 117.3 3823 0 264 200 4288 -1219 3068 1219 0 1447 2048 2.811 2.643 1.605 + 12 4 5 5 29.84 61.88 65.00 64.42 94.52 88.92 0 46152 17868 4717 0.103 0.110 0.390 0.262 0.816 0 129.0 4207 0 290 220 4717 -1343 3374 1343 0 1581 2228 2.811 2.661 1.613 + 12 4 6 0 29.72 61.88 66.50 64.58 116.05 112.27 0 46138 17905 81597 1.000 1.898 1.000 1.000 1.000 0.656 1262 40832 32781 3152 2154 78919 -13683 63166 15753 2070 14538 52761 2.809 2.809 1.200 + 12 4 6 1 29.60 68.04 66.50 65.72 95.80 91.01 0 46124 17942 21951 0.479 0.510 0.476 1.000 1.000 0 600.8 19559 0 1367 1025 21951 -5855 16096 5855 0 6764 9293 2.806 2.891 1.758 + 12 4 6 2 29.48 64.92 66.50 66.61 96.68 92.34 0 46110 17980 21778 0.475 0.506 0.472 1.000 1.000 0 596.2 19421 0 1339 1017 21778 -4937 16841 4937 -0 6718 9211 2.804 2.891 1.856 + 12 4 6 3 29.36 64.01 66.50 66.21 96.27 91.88 0 46096 18017 22389 0.488 0.520 0.486 1.000 1.000 0 613.1 19975 0 1368 1046 22389 -5376 17013 5376 -0 6925 9476 2.802 2.884 1.822 + 12 4 6 4 29.24 64.73 66.50 66.09 96.14 91.82 0 46082 18054 23132 0.505 0.537 0.502 1.000 1.000 0 633.7 20646 0 1405 1081 23132 -5590 17543 5590 0 7176 9798 2.800 2.877 1.816 + 12 4 6 5 29.12 64.78 66.50 66.18 96.23 91.66 0 46068 18091 21463 0.469 0.498 0.466 1.000 1.000 0 588.1 19187 0 1272 1003 21463 -5284 16179 5284 0 6644 9056 2.798 2.888 1.814 + 12 4 7 0 29.42 65.07 67.91 66.26 128.94 124.41 0 46103 17998 105k 1.000 2.436 1.000 1.000 1.000 1.000 1262 40872 50000 3077 2154 96103 -16191 77963 18140 1949 14581 69949 2.803 2.803 1.117 + 12 4 7 1 29.72 69.46 68.00 67.52 97.61 95.15 0 46138 17905 43305 0.939 1.007 0.938 1.000 1.000 0 1184 38327 0 2944 2021 43291 -8020 35158 8133 113 13622 18723 2.809 2.814 1.892 + 12 4 7 2 30.02 67.43 68.00 68.14 98.25 95.69 0 46173 17812 38069 0.825 0.886 0.824 1.000 1.000 0 1041 33671 0 2622 1776 38069 -6559 31509 6560 0 11898 16432 2.814 2.830 1.934 + 12 4 7 3 30.32 66.61 68.00 67.89 98.03 95.31 0 46208 17719 36925 0.800 0.861 0.799 1.000 1.000 0 1009 32608 0 2596 1721 36925 -6805 30120 6805 0 11488 15942 2.820 2.838 1.906 + 12 4 7 4 30.62 67.20 68.00 67.79 97.95 95.09 0 46243 17626 35580 0.770 0.830 0.769 1.000 1.000 0 971.3 31372 0 2551 1657 35580 -6819 28761 6819 0 11018 15363 2.825 2.847 1.889 + 12 4 7 5 30.92 67.19 68.00 67.86 98.05 94.95 0 46278 17533 32325 0.700 0.755 0.698 1.000 1.000 0 881.7 28467 0 2353 1504 32325 -6343 25982 6343 -0 9945 13939 2.831 2.862 1.882 + 12 4 8 0 32.18 67.49 68.00 67.86 98.13 94.65 0 46425 17142 28909 0.624 0.678 0.623 1.000 1.000 0 786.1 25278 0 2290 1341 28909 -6010 22899 6010 -0 8725 12492 2.855 2.897 1.853 + 12 4 8 1 33.44 67.45 68.00 67.90 98.27 94.44 0 46572 16750 26117 0.562 0.615 0.561 1.000 1.000 0 707.9 22661 0 2248 1208 26117 -5652 20465 5652 -0 7729 11321 2.880 2.932 1.830 + 12 4 8 2 34.70 67.61 68.00 67.89 98.35 94.11 0 46719 16359 23482 0.503 0.555 0.503 1.000 1.000 0 634.5 20203 0 2196 1082 23481 -5373 18108 5373 0 6806 10221 2.905 2.968 1.796 + 12 4 8 3 35.96 67.64 68.00 67.91 98.47 93.86 0 46866 15967 21472 0.458 0.502 0.458 1.000 1.000 0 578.4 18579 0 1906 987 21472 -5124 16349 5124 0 6104 9134 2.969 3.044 1.817 + 12 4 8 4 37.22 67.77 68.00 67.91 98.57 93.58 0 47013 15576 19855 0.421 0.458 0.422 1.000 1.000 0 533.1 17354 0 1591 910 19855 -4944 14911 4944 0 5532 8170 3.045 3.137 1.856 + 12 4 8 5 38.48 67.83 68.00 67.93 98.69 93.37 0 47160 15186 18550 0.392 0.422 0.393 1.000 1.000 0 496.5 16379 0 1324 847 18550 -4779 13771 4779 0 5058 7365 3.124 3.238 1.905 + 12 4 9 0 39.11 67.95 68.00 67.94 98.75 93.35 0 47233 14991 18257 0.385 0.412 0.387 1.000 1.000 0 487.9 16205 0 1219 832 18256 -4737 13519 4737 0 4926 7113 3.163 3.290 1.938 + 12 4 9 1 39.74 67.99 68.00 67.96 98.82 93.19 0 47307 14796 17467 0.367 0.392 0.369 1.000 1.000 0 466.1 15584 0 1088 795 17467 -4630 12838 4630 0 4650 6670 3.204 3.351 1.965 + 12 4 9 2 40.37 67.99 68.00 67.97 98.87 93.05 0 47380 14602 16832 0.353 0.375 0.355 1.000 1.000 0 448.4 15095 0 971 765 16832 -4550 12282 4550 0 4420 6293 3.244 3.415 1.995 + 12 4 9 3 41.00 67.93 68.00 67.98 98.92 92.91 0 47454 14407 16250 0.340 0.359 0.342 1.000 1.000 0 432.3 14651 0 861 737 16250 -4479 11771 4479 0 4206 5941 3.285 3.483 2.028 + 12 4 9 4 41.63 67.86 68.00 67.97 98.97 92.76 0 47527 14213 15751 0.329 0.346 0.331 1.000 1.000 0 418.3 14279 0 758 714 15751 -4425 11325 4425 0 4016 5625 3.327 3.555 2.064 + 12 4 9 5 42.26 67.81 68.00 67.96 99.01 92.61 0 47601 14019 15272 0.319 0.333 0.321 1.000 1.000 0 405.0 13922 0 659 691 15272 -4374 10898 4374 0 3832 5319 3.369 3.633 2.103 + 12 4 10 0 42.41 67.97 68.00 67.96 99.01 92.64 0 47618 13972 15343 0.320 0.334 0.322 1.000 1.000 0 406.7 14007 0 642 694 15343 -4386 10957 4386 -0 3841 5313 3.379 3.647 2.117 + 12 4 10 1 42.56 68.06 68.00 67.98 99.05 92.58 0 47636 13926 15037 0.314 0.327 0.316 1.000 1.000 0 398.5 13744 0 612 680 15036 -4329 10707 4329 0 3743 5171 3.389 3.672 2.127 + 12 4 10 2 42.71 68.09 68.00 68.00 99.08 92.51 0 47653 13880 14751 0.308 0.320 0.310 1.000 1.000 0 390.8 13500 0 584 667 14751 -4281 10470 4281 0 3651 5038 3.399 3.698 2.136 + 12 4 10 3 42.86 68.10 68.00 68.01 99.10 92.42 0 47671 13834 14464 0.301 0.314 0.303 1.000 1.000 0 383.0 13254 0 557 653 14464 -4240 10224 4240 0 3558 4905 3.409 3.725 2.144 + 12 4 10 4 43.01 68.12 68.00 68.02 99.12 92.31 0 47688 13788 14159 0.295 0.306 0.297 1.000 1.000 0 374.8 12991 0 529 639 14159 -4197 9962 4197 -0 3461 4766 3.419 3.754 2.152 + 12 4 10 5 43.16 68.30 68.00 68.02 99.14 92.15 0 47706 13742 13744 0.286 0.297 0.288 1.000 1.000 0 363.6 12622 0 499 620 13742 -4141 9601 4141 -0 3332 4588 3.430 3.788 2.157 + 12 4 11 0 43.49 68.31 68.00 68.06 99.19 92.14 0 47744 13640 13167 0.274 0.284 0.284 0.971 0.993 0 348.1 12133 0 441 594 13167 -3981 9186 3981 0 2916 4087 3.452 4.161 2.325 + 12 4 11 1 43.82 68.49 68.00 68.06 99.22 92.12 0 47783 13538 12588 0.262 0.270 0.282 0.935 0.984 0 332.6 11636 0 385 567 12588 -3819 8769 3819 0 2798 3886 3.475 4.159 2.339 + 12 4 11 2 44.15 68.47 68.00 68.09 99.28 92.15 0 47821 13437 12128 0.252 0.259 0.279 0.908 0.977 0 320.2 11248 0 334 546 12128 -3678 8451 3678 0 2699 3716 3.497 4.167 2.361 + 12 4 11 3 44.48 68.59 68.00 68.09 99.31 92.12 0 47860 13335 11533 0.240 0.246 0.277 0.869 0.967 0 304.2 10730 0 283 519 11533 -3512 8020 3512 0 2577 3515 3.520 4.164 2.374 + 12 4 11 4 44.81 68.54 68.00 68.12 99.35 92.12 0 47898 13234 11077 0.230 0.235 0.275 0.841 0.960 0 291.9 10341 0 238 498 11077 -3378 7698 3378 0 2478 3350 3.543 4.173 2.395 + 12 4 11 5 45.14 68.75 68.00 68.11 98.92 91.74 0 47245 12892 10502 0.222 0.222 0.273 0.815 0.954 0 280.6 10023 0 0 479 10502 -3219 7283 3219 0 2440 3055 3.567 4.109 2.495 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 21 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.81 68.00 68.15 99.01 91.81 0 47319 12866 9503 0.201 0.201 0.272 0.739 0.935 0 253.5 9071 0 0 433 9503 -2903 6600 2903 -0 2239 2808 3.577 4.051 2.470 + 12 4 12 1 45.44 68.71 68.00 68.16 99.07 91.85 0 47392 12839 8904 0.188 0.188 0.271 0.693 0.923 0 237.2 8499 0 0 405 8904 -2720 6183 2720 -0 2111 2652 3.588 4.026 2.458 + 12 4 12 2 45.59 68.56 68.00 68.14 99.10 91.84 0 47465 12812 8281 0.174 0.174 0.270 0.646 0.912 0 220.2 7905 0 0 376 8281 -2542 5739 2542 0 1977 2489 3.599 3.999 2.439 + 12 4 12 3 45.74 68.39 68.00 68.12 99.12 91.81 0 47538 12786 7708 0.162 0.162 0.269 0.603 0.901 0 204.7 7359 0 0 349 7708 -2379 5328 2379 0 1851 2337 3.609 3.975 2.422 + 12 4 12 4 45.89 68.39 68.00 68.09 99.14 91.78 0 47612 12759 7228 0.152 0.152 0.268 0.567 0.892 0 191.7 6901 0 0 327 7228 -2246 4982 2246 0 1743 2206 3.620 3.959 2.407 + 12 4 12 5 46.04 68.30 68.00 68.09 99.19 91.79 0 47685 12732 6810 0.143 0.143 0.267 0.535 0.884 0 180.3 6502 0 0 308 6810 -2122 4688 2122 -0 1647 2091 3.631 3.949 2.399 + 12 4 13 0 46.40 68.20 68.00 68.07 99.29 91.79 0 47861 12668 5970 0.125 0.125 0.265 0.471 0.868 0 157.5 5701 0 0 269 5970 -1875 4096 1875 0 1448 1853 3.656 3.938 2.386 + 12 4 13 1 46.76 68.10 68.00 68.06 99.38 91.79 0 48036 12604 5449 0.113 0.113 0.262 0.432 0.858 0 143.2 5204 0 0 244 5449 -1724 3724 1724 0 1316 1697 3.683 3.955 2.387 + 12 4 13 2 47.12 68.03 68.00 68.04 99.44 91.78 0 48154 12562 4951 0.103 0.103 0.261 0.394 0.849 0 129.8 4730 0 0 221 4951 -1577 3374 1577 -0 1197 1554 3.700 3.953 2.379 + 12 4 13 3 47.48 67.99 68.00 68.02 99.43 91.75 0 48154 12562 4568 .0949 .0949 0.261 0.364 0.841 0 119.7 4364 0 0 204 4568 -1458 3109 1458 0 1114 1455 3.700 3.917 2.359 + 12 4 13 4 47.84 67.93 68.00 68.01 99.42 91.73 0 48154 12562 4346 .0903 .0903 0.261 0.346 0.837 0 113.9 4152 0 0 194 4346 -1390 2956 1390 0 1066 1396 3.700 3.897 2.347 + 12 4 13 5 48.20 67.88 68.00 68.00 99.41 91.71 0 48154 12562 4183 .0869 .0869 0.261 0.333 0.833 0 109.7 3996 0 0 187 4183 -1340 2843 1340 0 1029 1353 3.700 3.882 2.337 + 12 4 14 0 48.47 67.86 68.00 67.99 99.40 91.70 0 48154 12562 4208 .0874 .0874 0.261 0.335 0.834 0 110.3 4020 0 0 188 4208 -1350 2858 1350 0 1035 1360 3.700 3.884 2.336 + 12 4 14 1 48.74 67.87 68.00 67.99 99.39 91.69 0 48154 12562 4197 .0872 .0872 0.261 0.334 0.834 0 110.0 4009 0 0 188 4197 -1348 2849 1348 0 1032 1357 3.700 3.883 2.335 + 12 4 14 2 49.01 67.80 68.00 67.99 99.39 91.69 0 48154 12562 4207 .0874 .0874 0.261 0.335 0.834 0 110.3 4019 0 0 188 4207 -1351 2856 1351 0 1035 1359 3.700 3.884 2.336 + 12 4 14 3 49.28 67.82 68.00 67.98 99.38 91.67 0 48154 12562 4071 .0845 .0845 0.261 0.324 0.831 0 106.7 3889 0 0 182 4071 -1309 2762 1309 0 1005 1323 3.700 3.871 2.327 + 12 4 14 4 49.55 67.85 68.00 67.98 99.38 91.67 0 48154 12562 3829 .0795 .0795 0.261 0.305 0.826 0 100.4 3657 0 0 171 3829 -1231 2598 1231 0 950 1258 3.700 3.849 2.316 + 12 4 14 5 49.82 67.84 68.00 67.98 99.39 91.68 0 48154 12562 3615 .0751 .0751 0.261 0.288 0.822 0 94.8 3454 0 0 162 3615 -1162 2454 1162 0 902 1200 3.700 3.829 2.307 + 12 4 15 0 49.67 67.84 68.00 67.98 99.39 91.68 0 48154 12562 2481 .0515 .0515 0.261 0.197 0.799 0 65.0 2370 0 0 111 2481 -798 1683 798 0 636 884 3.700 3.724 2.252 + 12 4 15 1 49.52 67.71 68.00 67.98 99.38 91.67 0 48154 12562 2233 .0464 .0464 0.261 0.178 0.794 0 58.5 2133 0 0 100 2233 -718 1515 718 0 576 813 3.700 3.701 2.240 + 12 4 15 2 49.37 67.83 68.00 67.95 99.36 91.62 0 48154 12562 1956 .0406 .0406 0.261 0.156 0.789 0 51.3 1869 0 0 87 1956 -632 1324 632 0 508 732 3.700 3.675 2.222 + 12 4 15 3 49.22 67.94 68.00 67.97 99.37 91.64 0 48154 12562 2107 .0437 .0437 0.261 0.168 0.792 0 55.2 2012 0 0 94 2107 -679 1427 679 0 546 776 3.700 3.689 2.231 + 12 4 15 4 49.07 67.85 68.00 67.98 99.39 91.67 0 48154 12562 2635 .0547 .0547 0.261 0.210 0.802 0 69.1 2517 0 0 118 2635 -848 1787 848 0 673 928 3.700 3.738 2.259 + 12 4 15 5 48.92 67.99 68.00 67.97 99.37 91.65 0 48154 12562 3138 .0652 .0652 0.261 0.250 0.812 0 82.3 2998 0 0 140 3138 -1011 2126 1011 0 792 1069 3.700 3.785 2.281 + 12 4 16 0 48.59 67.96 68.00 67.99 99.40 91.69 0 48154 12562 4410 .0916 .0916 0.261 0.351 0.838 0 115.6 4213 0 0 197 4410 -1416 2993 1416 0 1079 1413 3.700 3.903 2.345 + 12 4 16 1 48.26 68.44 68.00 67.99 99.40 91.69 0 48154 12562 5047 0.105 0.105 0.261 0.402 0.850 0 132.3 4822 0 0 226 5047 -1621 3426 1621 0 1217 1579 3.700 3.962 2.375 + 12 4 16 2 47.93 68.41 68.00 68.07 99.48 91.82 0 48154 12562 5643 0.117 0.117 0.261 0.449 0.862 0 147.9 5391 0 0 252 5643 -1791 3853 1791 0 1342 1731 3.700 4.017 2.416 + 12 4 16 3 47.60 68.62 68.00 68.08 99.48 91.84 0 48154 12562 6115 0.127 0.127 0.261 0.487 0.872 0 160.3 5842 0 0 273 6115 -1938 4177 1938 -0 1439 1849 3.700 4.061 2.440 + 12 4 16 4 47.27 68.65 68.00 68.12 99.52 91.90 0 48154 12562 6564 0.136 0.136 0.261 0.523 0.881 0 172.1 6271 0 0 294 6564 -2068 4496 2068 0 1529 1959 3.700 4.102 2.468 + 12 4 16 5 46.94 68.61 68.00 68.13 99.51 91.92 0 48124 12572 6965 0.145 0.145 0.261 0.554 0.889 0 182.7 6654 0 0 312 6965 -2187 4778 2187 0 1612 2060 3.696 4.128 2.484 + 12 4 17 0 46.79 68.76 68.00 68.13 99.46 91.90 0 48051 12599 7284 0.152 0.152 0.262 0.578 0.895 0 191.4 6958 0 0 326 7284 -2283 5001 2283 0 1685 2148 3.685 4.128 2.486 + 12 4 17 1 46.64 68.84 68.00 68.15 99.44 91.94 0 47978 12626 7523 0.157 0.157 0.263 0.596 0.899 0 197.9 7185 0 0 338 7523 -2342 5181 2342 0 1743 2218 3.674 4.121 2.489 + 12 4 17 2 46.49 68.98 68.00 68.17 99.41 91.96 0 47905 12652 7716 0.161 0.161 0.264 0.610 0.902 0 203.3 7369 0 0 347 7716 -2390 5326 2390 -0 1793 2276 3.663 4.111 2.489 + 12 4 17 3 46.34 69.04 68.00 68.20 99.39 92.00 0 47831 12679 7950 0.166 0.166 0.265 0.627 0.907 0 209.8 7592 0 0 358 7950 -2446 5504 2446 0 1850 2344 3.652 4.104 2.493 + 12 4 17 4 46.19 69.18 68.00 68.21 99.36 92.01 0 47758 12706 8122 0.170 0.170 0.266 0.639 0.910 0 214.7 7756 0 0 366 8122 -2488 5635 2488 0 1896 2399 3.641 4.091 2.491 + 12 4 17 5 46.04 69.24 68.00 68.24 99.34 92.04 0 47685 12732 8348 0.175 0.175 0.267 0.656 0.914 0 221.0 7971 0 0 377 8348 -2540 5808 2540 0 1952 2465 3.631 4.084 2.494 + 12 4 18 0 45.47 69.37 68.00 68.25 99.17 92.01 0 47407 12834 8110 0.171 0.171 0.271 0.632 0.908 0 216.0 7742 0 0 368 8110 -2442 5668 2442 0 1953 2458 3.590 3.964 2.442 + 12 4 18 1 44.90 69.39 68.00 68.27 99.52 92.39 0 47909 13206 8372 0.174 0.178 0.274 0.637 0.909 0 220.6 7823 0 173 376 8372 -2491 5881 2491 0 1975 2660 3.550 3.962 2.330 + 12 4 18 2 44.33 69.51 68.00 68.28 99.48 92.45 0 47842 13382 8639 0.180 0.184 0.278 0.649 0.912 0 227.9 8026 0 224 389 8639 -2546 6092 2546 0 2052 2802 3.510 3.911 2.286 + 12 4 18 3 43.76 69.63 68.00 68.30 99.45 92.53 0 47776 13557 8898 0.185 0.191 0.282 0.660 0.915 0 235.1 8221 0 277 401 8898 -2592 6306 2592 0 2128 2943 3.471 3.862 2.247 + 12 4 18 4 43.19 69.75 68.00 68.32 99.43 92.62 0 47709 13732 9151 0.191 0.198 0.286 0.671 0.918 0 242.1 8407 0 330 413 9151 -2633 6517 2633 0 2203 3083 3.432 3.816 2.212 + 12 4 18 5 42.62 69.89 68.00 68.34 99.41 92.71 0 47643 13908 9430 0.197 0.205 0.290 0.683 0.921 0 249.9 8617 0 387 426 9430 -2681 6749 2681 0 2284 3233 3.393 3.774 2.180 + 12 4 19 0 42.20 69.94 68.00 68.36 99.40 92.78 0 47594 14037 9375 0.196 0.205 0.293 0.673 0.918 0 248.7 8533 0 417 424 9375 -2639 6735 2639 0 2291 3269 3.365 3.725 2.150 + 12 4 19 1 41.78 69.92 68.00 68.37 99.38 92.83 0 47545 14167 9560 0.200 0.210 0.296 0.680 0.920 0 253.8 8669 0 459 433 9560 -2670 6891 2670 -0 2346 3374 3.337 3.695 2.128 + 12 4 19 2 41.36 69.93 68.00 68.37 99.35 92.87 0 47496 14296 9751 0.204 0.215 0.299 0.687 0.922 0 259.2 8808 0 501 442 9751 -2705 7045 2705 0 2402 3482 3.309 3.667 2.106 + 12 4 19 3 40.94 69.93 68.00 68.37 99.32 92.91 0 47447 14426 9937 0.208 0.220 0.302 0.694 0.923 0 264.4 8942 0 544 451 9937 -2738 7198 2738 0 2457 3588 3.281 3.639 2.085 + 12 4 19 4 40.52 70.02 68.00 68.37 99.29 92.95 0 47398 14555 10070 0.211 0.224 0.305 0.697 0.924 0 268.2 9029 0 584 458 10070 -2756 7314 2756 -0 2502 3680 3.254 3.609 2.064 + 12 4 19 5 40.10 69.91 68.00 68.39 99.27 93.00 0 47349 14685 10301 0.216 0.230 0.308 0.706 0.927 0 274.6 9203 0 630 469 10301 -2795 7507 2795 -0 2566 3801 3.227 3.586 2.048 + 12 4 20 0 40.37 69.80 68.00 68.38 99.28 92.96 0 47380 14602 10510 0.220 0.234 0.306 0.725 0.931 0 280.0 9411 0 621 478 10510 -2869 7641 2869 -0 2596 3832 3.244 3.625 2.068 + 12 4 20 1 40.64 69.93 68.00 68.36 99.28 92.92 0 47412 14518 10498 0.220 0.233 0.304 0.728 0.932 0 279.5 9423 0 599 477 10498 -2884 7614 2884 -0 2582 3794 3.262 3.649 2.082 + 12 4 20 2 40.91 69.93 68.00 68.38 99.32 92.93 0 47443 14435 10526 0.220 0.233 0.302 0.734 0.934 0 280.1 9470 0 578 478 10526 -2892 7635 2892 0 2576 3768 3.279 3.677 2.102 + 12 4 20 3 41.18 69.94 68.00 68.39 99.35 92.92 0 47475 14352 10484 0.219 0.231 0.300 0.736 0.934 0 278.8 9455 0 554 476 10484 -2890 7594 2890 0 2555 3721 3.297 3.700 2.119 + 12 4 20 4 41.45 69.97 68.00 68.39 99.37 92.91 0 47506 14268 10439 0.218 0.230 0.298 0.737 0.934 0 277.4 9437 0 529 473 10439 -2886 7552 2886 0 2534 3672 3.315 3.724 2.136 + 12 4 20 5 41.72 69.81 68.00 68.40 99.40 92.89 0 47538 14185 10435 0.218 0.229 0.296 0.741 0.935 0 277.1 9457 0 506 473 10435 -2894 7541 2894 -0 2521 3636 3.333 3.751 2.155 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 22 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.95 68.00 68.37 99.34 92.89 0 47489 14315 10840 0.227 0.239 0.299 0.763 0.941 0 288.2 9786 0 562 492 10840 -3000 7840 3000 -0 2619 3809 3.305 3.737 2.135 + 12 4 21 1 40.88 70.04 68.00 68.39 99.33 92.95 0 47440 14444 10979 0.230 0.243 0.302 0.766 0.941 0 292.1 9874 0 606 498 10979 -3009 7969 3009 0 2665 3906 3.277 3.705 2.114 + 12 4 21 2 40.46 70.03 68.00 68.41 99.31 93.01 0 47391 14574 11127 0.233 0.247 0.305 0.769 0.942 0 296.4 9971 0 650 506 11127 -3023 8104 3023 0 2713 4006 3.250 3.675 2.094 + 12 4 21 3 40.04 70.03 68.00 68.40 99.28 93.04 0 47342 14704 11292 0.237 0.252 0.308 0.773 0.943 0 301.1 10082 0 696 514 11292 -3049 8242 3049 0 2765 4111 3.223 3.647 2.074 + 12 4 21 4 39.62 70.02 68.00 68.40 99.25 93.07 0 47293 14833 11460 0.241 0.257 0.312 0.778 0.944 0 305.9 10196 0 742 522 11460 -3076 8384 3076 0 2817 4217 3.196 3.620 2.054 + 12 4 21 5 39.20 70.02 68.00 68.40 99.21 93.10 0 47244 14963 11622 0.244 0.262 0.315 0.782 0.945 0 310.5 10304 0 788 530 11622 -3101 8521 3101 0 2868 4322 3.169 3.593 2.036 + 12 4 22 0 39.29 70.04 68.00 68.40 99.22 93.10 0 47254 14935 12309 0.259 0.277 0.314 0.830 0.957 0 328.8 10921 0 827 561 12309 -3288 9021 3288 0 2996 4521 3.175 3.645 2.058 + 12 4 22 1 39.38 70.12 68.00 68.40 99.23 93.10 0 47265 14907 12408 0.261 0.279 0.313 0.838 0.959 0 331.4 11017 0 825 565 12408 -3316 9091 3316 0 3011 4538 3.180 3.659 2.066 + 12 4 22 2 39.47 70.17 68.00 68.42 99.25 93.12 0 47275 14880 12476 0.262 0.281 0.313 0.844 0.961 0 333.1 11086 0 822 568 12476 -3328 9147 3328 0 3019 4546 3.186 3.672 2.075 + 12 4 22 3 39.56 70.17 68.00 68.43 99.27 93.13 0 47286 14852 12540 0.263 0.282 0.312 0.850 0.963 0 334.8 11151 0 818 571 12540 -3344 9196 3344 -0 3027 4552 3.192 3.684 2.083 + 12 4 22 4 39.65 70.12 68.00 68.43 99.28 93.13 0 47296 14824 12601 0.265 0.283 0.311 0.856 0.964 0 336.3 11214 0 813 574 12601 -3363 9239 3363 0 3034 4557 3.198 3.697 2.090 + 12 4 22 5 39.74 70.29 68.00 68.43 99.28 93.11 0 47307 14796 12558 0.264 0.282 0.311 0.855 0.964 0 335.1 11184 0 802 572 12558 -3359 9199 3359 0 3021 4531 3.204 3.702 2.093 + 12 4 23 0 39.59 70.38 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.82 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.39 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.25 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.98 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.82 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 23 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS cooling subhour details for Mon 29-Jun + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet znLd loadF PLR runF spdF PLF CFMav SHR capSen capLat capTot qSCoil qSFan qSNet qSDct qsZn1 qsZn2 qBal1 qBal2 qLat1 qLat2 qtZn eComp eTot COPspl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ------ ----- ----- ----- ----- ----- ----- ---- ------ ------ ------ ------ ----- ------ ----- ------ ------ ----- ------ ------ ------ ------ ----- ------ ------ ----- + 6 29 0 0 78.14 81.15 78.00 78.73 50.88 57.86 0 -4957 0.116 0.116 0.432 0.269 0.858 146.5 .866 -12121 -1879 -14000 -5235 250 -4985 -1732 -3226 -3226 -1760 -28 -811 -640 -3865 915 1165 6.667 3.317 + 6 29 0 1 77.66 81.10 78.00 78.72 50.95 57.90 0 -4705 0.111 0.110 0.411 0.269 0.853 139.5 .863 -12086 -1914 -14000 -4971 238 -4733 -1639 -3066 -3066 -1667 -27 -787 -623 -3689 877 1115 6.647 3.309 + 6 29 0 2 77.18 81.02 78.00 78.70 51.03 57.94 0 -4385 0.104 0.103 0.384 0.269 0.846 130.4 .861 -12050 -1950 -14000 -4633 223 -4411 -1525 -2860 -2860 -1551 -26 -750 -595 -3455 826 1049 6.628 3.294 + 6 29 0 3 76.70 80.94 78.00 78.69 51.11 57.99 0 -4070 .0964 .0958 0.358 0.269 0.840 121.5 .858 -12012 -1988 -14000 -4303 207 -4095 -1412 -2658 -2658 -1437 -25 -712 -567 -3226 776 983 6.607 3.282 + 6 29 0 4 76.22 80.87 78.00 78.67 51.19 58.03 0 -3766 .0895 .0890 0.333 0.269 0.833 112.8 .855 -11973 -2027 -14000 -3982 192 -3790 -1303 -2463 -2463 -1327 -23 -674 -539 -3002 726 918 6.585 3.269 + 6 29 0 5 75.74 80.80 78.00 78.65 51.28 58.08 0 -3477 .0830 .0825 0.308 0.269 0.827 104.6 .852 -11933 -2067 -14000 -3678 178 -3499 -1201 -2277 -2277 -1223 -22 -637 -512 -2788 678 856 6.563 3.258 + 6 29 1 0 75.53 80.78 78.00 78.64 51.35 58.13 0 -3145 .0753 .0748 0.280 0.269 0.820 94.9 .850 -11896 -2104 -14000 -3328 162 -3166 -1084 -2062 -2062 -1104 -21 -589 -475 -2536 620 782 6.543 3.242 + 6 29 1 1 75.32 80.69 78.00 78.63 51.43 58.18 0 -2917 .0701 .0696 0.260 0.269 0.815 88.3 .847 -11862 -2138 -14000 -3087 151 -2936 -1004 -1913 -1913 -1023 -20 -556 -451 -2364 581 731 6.524 3.234 + 6 29 1 2 75.11 80.65 78.00 78.61 51.51 58.22 0 -2697 .0650 .0646 0.241 0.269 0.810 81.9 .845 -11824 -2176 -14000 -2855 140 -2715 -925 -1771 -1771 -944 -19 -525 -428 -2199 542 681 6.503 3.227 + 6 29 1 3 74.90 80.63 78.00 78.60 51.59 58.27 0 -2493 .0603 .0599 0.224 0.269 0.806 76.0 .842 -11789 -2211 -14000 -2640 130 -2510 -854 -1639 -1639 -872 -17 -495 -405 -2044 505 635 6.484 3.220 + 6 29 1 4 74.69 80.52 78.00 78.60 51.66 58.32 0 -2291 .0556 .0552 0.206 0.269 0.802 70.0 .840 -11757 -2243 -14000 -2427 119 -2308 -784 -1507 -1507 -801 -16 -463 -381 -1888 468 588 6.466 3.213 + 6 29 1 5 74.48 80.49 78.00 78.57 51.73 58.35 0 -2098 .0511 .0507 0.190 0.269 0.797 64.4 .837 -11719 -2281 -14000 -2223 110 -2113 -716 -1382 -1382 -731 -15 -433 -358 -1740 433 542 6.446 3.209 + 6 29 2 0 73.76 80.37 78.00 78.57 51.83 58.42 0 -1769 .0432 .0429 0.161 0.269 0.790 54.5 .834 -11676 -2324 -14000 -1876 93 -1783 -603 -1166 -1166 -616 -13 -373 -310 -1477 370 463 6.422 3.193 + 6 29 2 1 73.04 80.35 78.00 78.54 51.95 58.48 0 -1489 .0366 .0363 0.136 0.269 0.784 46.1 .830 -11623 -2377 -14000 -1579 79 -1501 -506 -983 -983 -517 -11 -323 -269 -1253 315 394 6.393 3.181 + 6 29 2 2 72.32 80.43 78.00 78.54 52.08 58.58 0 -1223 .0302 .0300 0.112 0.269 0.778 38.1 .826 -11568 -2432 -14000 -1298 65 -1233 -415 -808 -808 -425 -10 -273 -228 -1036 262 327 6.363 3.168 + 6 29 2 3 71.60 80.19 78.00 78.55 52.22 58.69 0 -925 .0230 .0228 .0852 0.269 0.771 28.9 .823 -11516 -2484 -14000 -982 49 -932 -314 -610 -610 -322 -8 -212 -178 -788 201 250 6.334 3.150 + 6 29 2 4 70.88 80.34 78.00 78.51 52.36 58.77 0 -660 .0165 .0164 .0613 0.269 0.765 20.8 .817 -11443 -2557 -14000 -701 35 -666 -223 -437 -437 -229 -6 -157 -131 -569 146 181 6.293 3.140 + 6 29 2 5 70.16 80.09 78.00 78.53 52.53 58.91 0 -356 .0090 .0089 .0332 0.269 0.758 11.3 .813 -11384 -2616 -14000 -378 19 -359 -121 -235 -235 -124 -3 -87 -73 -309 80 99 6.261 3.119 + 6 29 3 0 70.37 80.11 78.00 78.48 52.66 58.98 0 -263 .0066 .0066 .0247 0.269 0.756 8.4 .808 -11316 -2684 -14000 -279 14 -265 -89 -174 -174 -91 -2 -66 -56 -230 59 74 6.224 3.120 + 6 29 3 1 70.58 80.05 78.00 78.48 52.80 59.08 0 -170 .0043 .0043 .0161 0.269 0.754 5.5 .804 -11260 -2740 -14000 -181 9 -172 -57 -113 -113 -59 -2 -44 -37 -150 39 48 6.193 3.116 + 6 29 3 2 70.79 79.92 78.00 78.47 52.93 59.17 0 -78 .0020 .0020 .0074 0.269 0.752 2.5 .800 -11204 -2796 -14000 -83 4 -79 -26 -52 -52 -27 -1 -21 -17 -69 18 22 6.162 3.114 + 6 29 3 3 71.00 80.00 78.00 78.45 53.05 59.24 0 -15 .0004 .0004 .0015 0.269 0.750 0.5 .796 -11149 -2851 -14000 -16 1 -15 -5 -10 -10 -5 -0 -4 -4 -14 4 4 6.132 3.118 + 6 29 3 4 71.21 79.91 78.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 3 5 71.42 79.78 78.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 4 0 70.88 79.81 77.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 4 1 70.34 79.79 77.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 4 2 69.80 79.72 77.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 4 3 69.26 79.60 77.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 4 4 68.72 79.49 77.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 4 5 68.18 79.42 77.93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 5 0 68.39 79.17 77.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 5 1 68.60 79.23 77.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 5 2 68.81 79.09 77.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 5 3 69.02 79.08 77.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 5 4 69.23 78.94 77.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 5 5 69.44 78.91 77.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 6 0 69.95 78.86 77.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 6 1 70.46 78.77 77.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 6 2 70.97 78.70 78.00 78.16 54.65 60.20 0 -575 .0160 .0158 .0593 0.269 0.765 20.1 .743 -10400 -3600 -14000 -617 34 -583 -184 -392 -392 -191 -7 -214 -191 -583 141 175 5.720 3.323 + 6 29 6 3 71.48 78.54 78.00 78.17 54.71 60.23 0 -2531 .0705 .0695 0.262 0.269 0.815 88.8 .741 -10380 -3620 -14000 -2718 152 -2567 -805 -1726 -1726 -841 -36 -948 -851 -2577 584 735 5.709 3.504 + 6 29 6 4 71.99 78.19 78.00 78.13 54.63 60.13 0 -3007 .0836 .0825 0.311 0.269 0.828 105.4 .743 -10398 -3602 -14000 -3229 180 -3050 -949 -2058 -2058 -992 -42 -1119 -1006 -3064 682 862 5.719 3.554 + 6 29 6 5 72.50 78.00 78.00 78.06 54.51 59.96 0 -3829 0.106 0.105 0.395 0.269 0.849 133.8 .744 -10418 -3582 -14000 -4110 228 -3882 -1190 -2639 -2639 -1243 -53 -1413 -1272 -3911 845 1074 5.730 3.643 + 6 29 7 0 73.37 77.82 78.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 7 1 74.24 78.20 78.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 7 2 75.11 78.23 78.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 7 3 75.98 78.17 78.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 7 4 76.85 78.18 78.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 7 5 77.72 78.16 78.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 24 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 6 29 8 0 78.71 78.20 78.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 8 1 79.70 78.23 78.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 8 2 80.69 78.29 78.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 8 3 81.68 78.35 78.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 8 4 82.67 78.44 78.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 8 5 83.66 78.55 78.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 9 0 84.65 78.67 78.86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 9 1 85.64 78.80 78.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 9 2 86.63 78.95 78.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 9 3 87.62 79.11 79.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 9 4 88.61 79.30 79.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 9 5 89.60 79.49 79.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 10 0 90.26 79.75 79.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 10 1 90.92 80.00 79.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 10 2 91.58 80.25 79.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 10 3 92.24 80.35 79.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 10 4 92.90 80.64 79.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 10 5 93.56 80.90 79.47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 11 0 94.16 81.22 79.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 11 1 94.76 81.55 79.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 11 2 95.36 81.85 79.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 11 3 95.96 81.95 79.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 11 4 96.56 82.34 79.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 11 5 97.16 82.67 79.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 12 0 97.52 82.89 79.79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 12 1 97.88 83.22 79.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 12 2 98.24 83.51 79.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 12 3 98.60 83.87 79.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 12 4 98.96 84.19 79.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 12 5 99.32 84.54 80.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 13 0 99.80 84.87 80.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 13 1 100.3 85.25 80.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 13 2 100.8 85.47 80.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 13 3 101.2 85.90 80.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 13 4 101.7 86.09 80.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 13 5 102.2 86.57 80.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 14 0 102.5 86.79 80.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 14 1 102.9 87.10 80.47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 14 2 103.2 87.46 80.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 14 3 103.5 87.83 80.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 14 4 103.8 88.18 80.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 14 5 104.2 88.55 80.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 29 15 0 104.4 88.87 80.22 81.78 60.92 62.76 0 -43974 1.000 1.356 1.000 1.000 1.000 1260 .767 -34585 -10535 -45120 -34585 2150 -32436 -7164 -24042 -24042 -8393 -1230 -10535 -10156 -34198 15968 18117 2.166 1.888 + 6 29 15 1 104.5 86.62 80.00 81.49 59.29 62.14 0 -23293 0.685 0.677 1.000 0.685 1.000 863.5 .811 -25050 -5834 -30884 -25050 1473 -23577 -6223 -16864 -16864 -6712 -489 -5834 -5523 -22387 11751 13224 2.132 1.693 + 6 29 15 2 104.7 86.69 80.00 81.11 58.26 61.86 0 -13883 0.397 0.393 0.759 0.523 0.940 500.2 .833 -19615 -3940 -23555 -14880 853 -14026 -3962 -9921 -9921 -4106 -143 -2989 -2799 -12720 7759 8613 2.041 1.477 + 6 29 15 3 104.9 87.58 80.00 81.11 57.89 61.51 0 -14333 0.403 0.400 0.771 0.523 0.943 508.3 .846 -19893 -3633 -23526 -15335 867 -14468 -4061 -10272 -10272 -4196 -135 -2800 -2607 -12879 7910 8777 2.057 1.467 + 6 29 15 4 105.1 87.54 80.00 81.24 57.64 61.38 0 -15130 0.419 0.415 0.801 0.523 0.950 527.9 .859 -20184 -3313 -23497 -16159 901 -15259 -4384 -10746 -10746 -4513 -129 -2652 -2459 -13206 8203 9103 2.073 1.451 + 6 29 15 5 105.3 87.57 80.00 81.23 57.33 61.11 0 -14752 0.403 0.400 0.770 0.523 0.943 508.0 .870 -20420 -3048 -23468 -15733 867 -14866 -4259 -10494 -10494 -4373 -114 -2348 -2170 -12663 8007 8874 2.084 1.427 + 6 29 16 0 105.5 87.81 79.60 81.02 56.92 59.03 0 -72828 1.000 1.961 1.000 1.000 1.000 1260 .877 -39288 -5490 -44778 -39288 2150 -37138 -7992 -28333 -28333 -8806 -814 -5490 -5058 -33391 16323 18473 2.407 1.808 + 6 29 16 1 105.7 86.69 79.31 80.70 56.00 58.18 0 -56364 1.000 1.482 1.000 1.000 1.000 1260 .898 -40174 -4540 -44714 -40174 2150 -38024 -8305 -29099 -29099 -8925 -620 -4540 -4164 -33264 16390 18540 2.451 1.794 + 6 29 16 2 105.9 86.28 79.08 80.31 55.18 57.36 0 -43306 1.000 1.121 1.000 1.000 1.000 1260 .914 -40791 -3858 -44649 -40791 2150 -38641 -8240 -29912 -29912 -8729 -489 -3858 -3485 -33397 16457 18607 2.479 1.795 + 6 29 16 3 106.1 86.24 79.00 80.10 54.59 57.11 0 -33932 0.869 0.866 1.000 0.869 1.000 1095 .927 -35910 -2829 -38739 -35910 1868 -34043 -7620 -26201 -26201 -7842 -221 -2829 -2528 -28729 14753 16621 2.434 1.728 + 6 29 16 4 106.3 86.39 79.00 80.05 54.29 57.10 0 -30715 0.779 0.776 1.000 0.779 1.000 981.4 .937 -32486 -2190 -34676 -32486 1674 -30812 -7218 -23497 -23497 -7315 -97 -2190 -1935 -25431 13606 15281 2.388 1.664 + 6 29 16 5 106.5 86.55 79.00 80.09 54.14 57.12 0 -29259 0.737 0.735 1.000 0.737 1.000 928.2 .944 -30923 -1825 -32748 -30923 1584 -29339 -7054 -22205 -22205 -7135 -80 -1825 -1597 -23802 13106 14690 2.359 1.620 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 25 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 6 29 17 0 106.5 86.47 78.80 80.02 53.93 56.16 0 -91511 1.000 2.286 1.000 1.000 1.000 1260 .949 -42173 -2283 -44455 -42173 2150 -40023 -8459 -31190 -31190 -8833 -374 -2283 -1996 -33187 16659 18809 2.532 1.764 + 6 29 17 1 106.5 85.96 78.64 79.83 53.63 55.87 0 -80861 1.000 2.012 1.000 1.000 1.000 1260 .953 -42346 -2110 -44455 -42346 2150 -40196 -8525 -31360 -31360 -8836 -312 -2110 -1851 -33211 16659 18809 2.542 1.766 + 6 29 17 2 106.5 85.67 78.50 79.63 53.34 55.58 0 -72027 1.000 1.787 1.000 1.000 1.000 1260 .955 -42460 -1995 -44455 -42460 2150 -40310 -8474 -31568 -31568 -8743 -269 -1995 -1729 -33296 16659 18809 2.549 1.770 + 6 29 17 3 106.5 85.62 78.38 79.47 53.11 55.35 0 -64834 1.000 1.604 1.000 1.000 1.000 1260 .958 -42569 -1886 -44455 -42569 2150 -40419 -8454 -31735 -31735 -8685 -231 -1886 -1627 -33361 16659 18809 2.555 1.774 + 6 29 17 4 106.5 85.48 78.29 79.36 52.93 55.18 0 -58840 1.000 1.452 1.000 1.000 1.000 1260 .960 -42667 -1788 -44455 -42667 2150 -40518 -8483 -31835 -31835 -8682 -200 -1788 -1520 -33355 16659 18809 2.561 1.773 + 6 29 17 5 106.5 85.36 78.19 79.26 52.78 55.02 0.19 -52718 1.000 1.299 1.000 1.000 1.000 1260 .961 -42741 -1715 -44455 -42741 2150 -40591 -8482 -31915 -31915 -8676 -193 -1715 -1444 -33360 16659 18809 2.566 1.774 + 6 29 18 0 106.6 85.25 78.11 79.16 52.65 54.88 0 -47659 1.000 1.173 1.000 1.000 1.000 1260 .963 -42780 -1657 -44437 -42780 2150 -40631 -8468 -31996 -31996 -8634 -167 -1657 -1383 -33379 16678 18828 2.565 1.773 + 6 29 18 1 106.6 85.01 78.03 79.08 52.55 54.78 0 -42563 1.000 1.047 1.000 1.000 1.000 1260 .964 -42800 -1619 -44418 -42800 2150 -40650 -8460 -32025 -32025 -8625 -165 -1619 -1349 -33374 16697 18847 2.563 1.771 + 6 29 18 2 106.7 84.91 78.00 78.99 52.45 54.84 0 -37727 0.929 0.928 1.000 0.929 1.000 1170 .964 -39761 -1466 -41227 -39761 1996 -37765 -8057 -29621 -29621 -8144 -87 -1466 -1236 -30857 15753 17749 2.524 1.739 + 6 29 18 3 106.8 84.94 78.00 78.97 52.42 54.98 0 -35046 0.862 0.861 1.000 0.862 1.000 1086 .965 -36926 -1333 -38259 -36926 1853 -35073 -7694 -27336 -27336 -7737 -43 -1333 -1117 -28453 14876 16729 2.482 1.701 + 6 29 18 4 106.8 84.94 78.00 78.99 52.43 55.09 0 -33646 0.828 0.827 1.000 0.828 1.000 1043 .966 -35466 -1263 -36729 -35466 1780 -33686 -7516 -26129 -26129 -7557 -41 -1263 -1057 -27186 14436 16216 2.457 1.677 + 6 29 18 5 106.9 84.90 78.00 78.99 52.45 55.20 0 -32331 0.796 0.795 1.000 0.796 1.000 1003 .966 -34081 -1206 -35287 -34081 1711 -32370 -7342 -24990 -24990 -7380 -39 -1206 -1016 -26006 14022 15733 2.431 1.653 + 6 29 19 0 106.4 84.77 78.00 79.00 52.38 55.22 0 -31431 0.772 0.771 1.000 0.772 1.000 972.2 .965 -33127 -1196 -34324 -33127 1659 -31469 -7216 -24215 -24215 -7254 -38 -1196 -1016 -25231 13548 15207 2.445 1.659 + 6 29 19 1 106.0 84.62 78.00 78.99 52.31 55.25 0 -30320 0.743 0.742 1.000 0.743 1.000 935.7 .964 -31954 -1183 -33137 -31954 1596 -30357 -7047 -23272 -23272 -7085 -38 -1183 -971 -24243 13007 14604 2.457 1.660 + 6 29 19 2 105.5 84.49 78.00 78.98 52.26 55.29 0 -29310 0.717 0.716 1.000 0.717 1.000 903.1 .963 -30889 -1193 -32082 -30889 1541 -29348 -6889 -22421 -22421 -6927 -38 -1193 -946 -23366 12508 14048 2.470 1.663 + 6 29 19 3 105.1 84.33 78.00 78.97 52.22 55.36 0 -28204 0.689 0.688 1.000 0.689 1.000 868.1 .961 -29724 -1208 -30932 -29724 1481 -28243 -6720 -21484 -21484 -6759 -39 -1208 -931 -22415 11980 13461 2.481 1.665 + 6 29 19 4 104.6 84.18 78.00 78.96 52.19 55.39 0 -27579 0.673 0.672 1.000 0.673 1.000 848.3 .959 -29068 -1253 -30320 -29068 1447 -27620 -6609 -20970 -20970 -6650 -41 -1253 -945 -21916 11616 13064 2.502 1.678 + 6 29 19 5 104.2 83.98 78.00 78.95 52.17 55.51 0 -26208 0.639 0.638 1.000 0.639 1.000 805.6 .956 -27624 -1259 -28882 -27624 1374 -26249 -6402 -19806 -19806 -6444 -42 -1259 -937 -20742 11004 12379 2.510 1.676 + 6 29 20 0 102.9 83.97 78.00 78.95 52.02 55.67 0 -23964 0.581 0.580 1.000 0.581 1.000 732.6 .953 -25255 -1246 -26501 -25255 1250 -24005 -6082 -17881 -17881 -6124 -41 -1246 -926 -18807 9767 11017 2.586 1.707 + 6 29 20 1 101.5 83.91 78.00 78.97 51.91 55.78 0 -22660 0.547 0.546 1.000 0.547 1.000 689.3 .949 -23873 -1283 -25156 -23873 1176 -22698 -5913 -16742 -16742 -5956 -43 -1283 -900 -17642 8847 10023 2.699 1.760 + 6 29 20 2 100.2 83.76 78.00 78.98 51.81 55.85 0 -21214 0.510 0.509 0.975 0.523 0.994 642.9 .944 -22928 -1352 -24279 -22356 1097 -21259 -5644 -15570 -15570 -5689 -45 -1318 -894 -16464 7917 9014 2.841 1.826 + 6 29 20 3 98.90 83.66 78.00 78.95 51.71 55.74 0 -19812 0.475 0.474 0.908 0.523 0.977 598.7 .939 -22997 -1495 -24492 -20880 1021 -19858 -5243 -14569 -14569 -5289 -46 -1357 -908 -15477 7078 8100 3.019 1.911 + 6 29 20 4 97.58 83.62 78.00 78.94 51.63 55.66 0 -18679 0.447 0.446 0.854 0.523 0.963 563.1 .933 -23054 -1650 -24705 -19688 961 -18727 -4925 -13753 -13753 -4974 -49 -1409 -930 -14683 6350 7311 3.218 2.008 + 6 29 20 5 96.26 83.57 78.00 78.93 51.58 55.61 0 -17623 0.421 0.420 0.804 0.523 0.951 530.4 .927 -23098 -1819 -24917 -18579 905 -17674 -4639 -12984 -12984 -4690 -51 -1463 -951 -13935 5676 6581 3.441 2.117 + 6 29 21 0 95.30 83.50 78.00 78.92 51.59 55.61 0 -16391 0.392 0.391 0.749 0.523 0.937 493.8 .921 -23084 -1988 -25072 -17286 842 -16444 -4305 -12086 -12086 -4358 -53 -1488 -953 -13039 5100 5942 3.617 2.194 + 6 29 21 1 94.34 83.46 78.00 78.92 51.56 55.68 0 -15592 0.372 0.371 0.731 0.509 0.933 469.2 .916 -22496 -2059 -24555 -16446 801 -15646 -4142 -11450 -11450 -4196 -54 -1505 -981 -12431 4745 5545 3.716 2.242 + 6 29 21 2 93.38 83.37 78.00 78.93 51.51 55.79 0 -14905 0.355 0.354 0.726 0.489 0.931 447.7 .912 -21657 -2077 -23734 -15723 764 -14959 -4036 -10870 -10870 -4089 -54 -1508 -1013 -11883 4461 5225 3.784 2.274 + 6 29 21 3 92.42 83.26 78.00 78.93 51.44 55.88 0 -14278 0.339 0.338 0.723 0.470 0.931 427.6 .910 -20842 -2071 -22913 -15061 729 -14332 -3937 -10342 -10342 -3990 -53 -1497 -1039 -11381 4189 4918 3.864 2.314 + 6 29 21 4 91.46 83.14 78.00 78.92 51.33 55.95 0 -13693 0.324 0.323 0.721 0.450 0.930 408.6 .907 -20044 -2048 -22092 -14442 697 -13745 -3845 -9848 -9848 -3897 -52 -1476 -1057 -10905 3924 4621 3.957 2.360 + 6 29 21 5 90.50 83.01 78.00 78.92 51.22 56.02 0 -13143 0.310 0.309 0.720 0.431 0.930 390.5 .905 -19260 -2010 -21271 -13860 666 -13194 -3761 -9382 -9382 -3812 -51 -1447 -1065 -10447 3665 4331 4.067 2.412 + 6 29 22 0 89.66 82.88 78.00 78.91 51.10 56.08 0 -12196 0.286 0.285 0.692 0.414 0.923 361.0 .904 -18583 -1969 -20552 -12859 616 -12243 -3547 -8649 -8649 -3594 -48 -1363 -1027 -9676 3334 3950 4.179 2.450 + 6 29 22 1 88.82 82.79 78.00 78.91 50.97 56.14 0 -11674 0.273 0.272 0.687 0.397 0.922 344.1 .903 -17914 -1920 -19834 -12307 587 -11720 -3454 -8220 -8220 -3500 -46 -1319 -1003 -9223 3100 3687 4.307 2.502 + 6 29 22 2 87.98 82.67 78.00 78.91 50.86 56.24 0 -11203 0.261 0.260 0.685 0.381 0.921 328.8 .902 -17243 -1872 -19115 -11808 561 -11247 -3380 -7823 -7823 -3424 -44 -1282 -979 -8802 2877 3438 4.455 2.560 + 6 29 22 3 87.14 82.53 78.00 78.90 50.75 56.34 0 -10746 0.249 0.248 0.683 0.365 0.921 314.2 .901 -16570 -1826 -18397 -11325 536 -10789 -3307 -7440 -7440 -3349 -43 -1248 -956 -8396 2659 3195 4.626 2.628 + 6 29 22 4 86.30 82.40 78.00 78.90 50.64 56.46 0 -10318 0.239 0.238 0.684 0.349 0.921 300.6 .899 -15897 -1781 -17678 -10873 513 -10360 -3240 -7079 -7079 -3282 -42 -1218 -935 -8014 2446 2959 4.826 2.708 + 6 29 22 5 85.46 82.25 78.00 78.89 50.54 56.60 0 -9917 0.229 0.228 0.686 0.333 0.922 288.0 .898 -15223 -1737 -16960 -10449 491 -9957 -3181 -6735 -6735 -3222 -41 -1192 -917 -7652 2239 2730 5.065 2.803 + 6 29 23 0 84.83 82.10 78.00 78.88 50.46 56.71 0 -9085 0.209 0.208 0.651 0.321 0.913 263.2 .896 -14715 -1706 -16421 -9572 449 -9123 -2958 -6127 -6127 -2996 -38 -1110 -855 -6982 1988 2437 5.275 2.865 + 6 29 23 1 84.20 82.02 78.00 78.86 50.37 56.82 0 -8716 0.200 0.199 0.646 0.309 0.911 251.9 .895 -14214 -1668 -15882 -9182 430 -8752 -2884 -5832 -5832 -2920 -36 -1077 -830 -6662 1824 2253 5.524 2.956 + 6 29 23 2 83.57 81.89 78.00 78.86 50.30 56.97 0 -8347 0.191 0.190 0.641 0.298 0.910 240.6 .894 -13711 -1631 -15343 -8792 411 -8382 -2814 -5533 -5533 -2849 -35 -1046 -804 -6337 1660 2071 5.817 3.060 + 6 29 23 3 82.94 81.75 78.00 78.85 50.23 57.12 0 -8020 0.183 0.182 0.640 0.286 0.910 230.7 .892 -13209 -1595 -14804 -8448 394 -8055 -2754 -5266 -5266 -2788 -34 -1020 -785 -6052 1505 1898 6.170 3.188 + 6 29 23 4 82.31 81.61 78.00 78.84 50.16 57.29 0 -7674 0.175 0.174 0.636 0.275 0.909 220.3 .891 -12704 -1561 -14265 -8083 376 -7707 -2685 -4988 -4988 -2719 -33 -993 -764 -5753 1347 1723 6.601 3.339 + 6 29 23 5 81.68 81.47 78.00 78.81 50.15 57.38 0 -7343 0.167 0.167 0.622 0.269 0.905 210.9 .889 -12443 -1557 -14000 -7735 360 -7375 -2589 -4754 -4754 -2621 -32 -968 -746 -5500 1248 1608 6.844 3.420 + + +RSYS cooling subhour details for Tue 30-Jun + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet znLd loadF PLR runF spdF PLF CFMav SHR capSen capLat capTot qSCoil qSFan qSNet qSDct qsZn1 qsZn2 qBal1 qBal2 qLat1 qLat2 qtZn eComp eTot COPspl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ------ ----- ----- ----- ----- ----- ----- ---- ------ ------ ------ ------ ----- ------ ----- ------ ------ ----- ------ ------ ------ ------ ----- ------ ------ ----- + 6 30 0 0 81.17 81.34 78.00 78.78 50.19 57.37 0 -6662 0.152 0.152 0.565 0.269 0.891 191.8 .887 -12415 -1585 -14000 -7019 327 -6692 -2337 -4325 -4325 -2367 -30 -896 -691 -5016 1153 1481 6.828 3.388 + 6 30 0 1 80.66 81.27 78.00 78.76 50.23 57.38 0 -6301 0.144 0.144 0.536 0.269 0.884 181.9 .885 -12386 -1614 -14000 -6641 310 -6331 -2201 -4100 -4100 -2230 -29 -865 -668 -4769 1103 1413 6.812 3.375 + 6 30 0 2 80.15 81.18 78.00 78.74 50.29 57.41 0 -5980 0.137 0.137 0.510 0.269 0.878 173.1 .883 -12356 -1644 -14000 -6303 295 -6008 -2084 -3896 -3896 -2112 -28 -839 -649 -4545 1057 1352 6.796 3.361 + 6 30 0 3 79.64 81.07 78.00 78.72 50.35 57.43 0 -5664 0.130 0.130 0.484 0.269 0.871 164.3 .880 -12327 -1673 -14000 -5972 280 -5691 -1968 -3696 -3696 -1995 -27 -811 -630 -4326 1011 1292 6.780 3.349 + 6 30 0 4 79.13 80.98 78.00 78.70 50.41 57.45 0 -5335 0.123 0.123 0.458 0.269 0.864 155.3 .878 -12293 -1707 -14000 -5626 265 -5361 -1848 -3487 -3487 -1874 -26 -781 -609 -4096 963 1227 6.761 3.337 + 6 30 0 5 78.62 80.89 78.00 78.68 50.47 57.48 0 -5043 0.117 0.116 0.434 0.269 0.858 147.2 .876 -12262 -1738 -14000 -5319 251 -5068 -1741 -3302 -3302 -1767 -25 -754 -590 -3892 919 1170 6.744 3.327 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 26 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 6 30 1 0 78.14 80.81 78.00 78.66 50.53 57.50 0 -4651 0.108 0.108 0.401 0.269 0.850 136.2 .873 -12227 -1773 -14000 -4907 232 -4675 -1600 -3051 -3051 -1624 -24 -712 -559 -3610 858 1090 6.725 3.311 + 6 30 1 1 77.66 80.72 78.00 78.64 50.60 57.54 0 -4369 0.102 0.101 0.378 0.269 0.845 128.3 .871 -12194 -1806 -14000 -4611 219 -4392 -1499 -2870 -2870 -1522 -23 -683 -540 -3410 814 1033 6.706 3.301 + 6 30 1 2 77.18 80.64 78.00 78.62 50.67 57.58 0 -4091 .0956 .0951 0.355 0.269 0.839 120.5 .868 -12157 -1843 -14000 -4318 206 -4113 -1400 -2691 -2691 -1422 -22 -655 -519 -3210 770 976 6.686 3.290 + 6 30 1 3 76.70 80.58 78.00 78.60 50.75 57.62 0 -3820 .0896 .0891 0.333 0.269 0.833 112.9 .866 -12117 -1883 -14000 -4034 193 -3841 -1304 -2516 -2516 -1325 -21 -627 -499 -3015 726 919 6.665 3.280 + 6 30 1 4 76.22 80.49 78.00 78.59 50.83 57.66 0 -3553 .0836 .0832 0.311 0.269 0.828 105.4 .863 -12081 -1919 -14000 -3753 180 -3573 -1210 -2343 -2343 -1230 -20 -596 -477 -2820 682 862 6.644 3.270 + 6 30 1 5 75.74 80.41 78.00 78.57 50.92 57.71 0 -3291 .0778 .0773 0.289 0.269 0.822 98.0 .860 -12040 -1960 -14000 -3478 167 -3311 -1118 -2174 -2174 -1137 -19 -566 -454 -2628 639 806 6.622 3.261 + 6 30 2 0 75.41 80.35 78.00 78.55 51.00 57.75 0 -3010 .0714 .0709 0.265 0.269 0.816 89.9 .857 -12001 -1999 -14000 -3181 153 -3028 -1019 -1990 -1990 -1037 -18 -530 -427 -2417 590 744 6.600 3.250 + 6 30 2 1 75.08 80.28 78.00 78.54 51.08 57.80 0 -2782 .0662 .0658 0.246 0.269 0.811 83.4 .854 -11961 -2039 -14000 -2941 142 -2799 -940 -1842 -1842 -957 -17 -501 -405 -2247 551 693 6.579 3.241 + 6 30 2 2 74.75 80.23 78.00 78.52 51.17 57.86 0 -2563 .0612 .0608 0.227 0.269 0.807 77.1 .851 -11921 -2079 -14000 -2711 132 -2579 -864 -1699 -1699 -880 -16 -473 -384 -2082 512 644 6.557 3.234 + 6 30 2 3 74.42 80.20 78.00 78.51 51.26 57.91 0 -2352 .0564 .0560 0.209 0.269 0.802 71.1 .849 -11881 -2119 -14000 -2489 121 -2367 -791 -1561 -1561 -807 -15 -444 -362 -1922 475 596 6.535 3.226 + 6 30 2 4 74.09 80.20 78.00 78.50 51.34 57.97 0 -2150 .0517 .0514 0.192 0.269 0.798 65.2 .846 -11844 -2156 -14000 -2276 111 -2165 -723 -1428 -1428 -737 -14 -414 -340 -1767 438 549 6.514 3.219 + 6 30 2 5 73.76 80.05 78.00 78.50 51.43 58.02 0 -1947 .0470 .0467 0.175 0.269 0.794 59.2 .844 -11809 -2191 -14000 -2061 101 -1960 -654 -1293 -1293 -667 -13 -382 -316 -1609 400 501 6.495 3.212 + 6 30 3 0 73.55 80.00 78.00 78.47 51.51 58.06 0 -1776 .0430 .0427 0.160 0.269 0.790 54.2 .840 -11766 -2234 -14000 -1881 93 -1789 -594 -1182 -1182 -607 -12 -357 -296 -1478 368 461 6.471 3.209 + 6 30 3 1 73.34 80.00 78.00 78.46 51.60 58.12 0 -1611 .0392 .0389 0.146 0.269 0.786 49.4 .838 -11727 -2273 -14000 -1706 84 -1622 -538 -1073 -1073 -549 -12 -331 -275 -1348 336 421 6.450 3.204 + 6 30 3 2 73.13 79.92 78.00 78.46 51.69 58.18 0 -1443 .0352 .0350 0.131 0.269 0.783 44.4 .835 -11690 -2310 -14000 -1529 76 -1453 -481 -961 -961 -492 -11 -302 -252 -1214 304 380 6.429 3.198 + 6 30 3 3 72.92 79.94 78.00 78.44 51.78 58.24 0 -1278 .0313 .0311 0.116 0.269 0.779 39.5 .832 -11648 -2352 -14000 -1355 67 -1287 -425 -852 -852 -435 -10 -274 -229 -1082 271 339 6.406 3.194 + 6 30 3 4 72.71 79.78 78.00 78.44 51.87 58.30 0 -1103 .0271 .0269 0.101 0.269 0.775 34.2 .829 -11609 -2391 -14000 -1170 58 -1112 -367 -736 -736 -376 -9 -241 -203 -939 236 295 6.385 3.187 + 6 30 3 5 72.50 79.75 78.00 78.41 51.97 58.35 0 -938 .0232 .0230 .0860 0.269 0.772 29.2 .826 -11562 -2438 -14000 -995 50 -945 -311 -627 -627 -318 -7 -210 -177 -804 203 253 6.359 3.184 + 6 30 4 0 71.75 79.61 78.00 78.40 52.09 58.44 0 -651 .0162 .0160 .0601 0.269 0.765 20.4 .822 -11507 -2493 -14000 -692 35 -657 -216 -436 -436 -221 -5 -150 -127 -563 143 178 6.329 3.169 + 6 30 4 1 71.00 79.64 78.00 78.37 52.23 58.52 0 -384 .0096 .0095 .0356 0.269 0.759 12.1 .817 -11443 -2557 -14000 -408 21 -387 -127 -257 -257 -130 -3 -91 -77 -335 85 106 6.294 3.157 + 6 30 4 2 70.25 79.54 78.00 78.38 52.39 58.64 0 -103 .0026 .0026 .0096 0.269 0.752 3.2 .813 -11381 -2619 -14000 -109 6 -103 -34 -69 -69 -35 -1 -25 -21 -90 23 29 6.260 3.139 + 6 30 4 3 69.50 79.55 78.00 78.36 52.55 58.75 0 -96 .0024 .0024 .0091 0.269 0.752 3.1 .808 -11309 -2691 -14000 -102 5 -97 -32 -65 -65 -33 -1 -24 -21 -85 22 27 6.220 3.146 + 6 30 4 4 68.75 79.43 78.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 4 5 68.00 79.40 77.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 5 0 68.03 79.32 77.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 5 1 68.06 79.19 77.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 5 2 68.09 79.06 77.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 5 3 68.12 79.08 77.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 5 4 68.15 79.02 77.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 5 5 68.18 78.89 77.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 6 0 68.42 78.85 77.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 6 1 68.66 78.66 78.00 78.19 53.99 59.70 0 -739 .0200 .0197 .0741 0.269 0.769 25.1 .762 -10674 -3326 -14000 -791 43 -748 -236 -503 -503 -245 -9 -247 -215 -718 175 218 5.871 3.288 + 6 30 6 2 68.90 78.57 78.00 78.17 54.08 59.73 0 -1788 .0485 .0479 0.180 0.269 0.795 61.1 .759 -10630 -3370 -14000 -1915 104 -1811 -568 -1221 -1221 -590 -22 -607 -530 -1751 412 516 5.846 3.391 + 6 30 6 3 69.14 78.34 78.00 78.14 54.10 59.72 0 -2197 .0597 .0590 0.222 0.269 0.805 75.2 .758 -10611 -3389 -14000 -2353 128 -2225 -694 -1503 -1503 -722 -28 -752 -659 -2162 501 629 5.836 3.438 + 6 30 6 4 69.38 78.16 78.00 78.09 54.09 59.66 0 -2608 .0710 .0701 0.264 0.269 0.816 89.4 .757 -10598 -3402 -14000 -2794 153 -2641 -815 -1793 -1793 -849 -33 -897 -789 -2582 587 740 5.829 3.489 + 6 30 6 5 69.62 78.01 78.00 78.06 54.05 59.60 0 -3377 .0919 .0908 0.341 0.269 0.835 115.8 .757 -10595 -3405 -14000 -3618 198 -3420 -1047 -2330 -2330 -1090 -43 -1163 -1026 -3357 743 941 5.827 3.568 + 6 30 7 0 70.28 77.78 78.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 7 1 70.94 78.10 78.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 7 2 71.60 78.03 78.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 7 3 72.26 78.02 78.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 7 4 72.92 78.01 78.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 7 5 73.58 77.96 78.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 8 0 74.42 77.96 78.46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 8 1 75.26 77.95 78.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 8 2 76.10 77.98 78.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 8 3 76.94 78.00 78.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 8 4 77.78 78.04 78.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 8 5 78.62 78.10 78.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 9 0 79.46 78.18 78.79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 9 1 80.30 78.27 78.84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 9 2 81.14 78.38 78.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 9 3 81.98 78.50 78.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 9 4 82.82 78.63 79.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 9 5 83.66 78.78 79.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 27 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 6 30 10 0 84.68 78.96 79.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 10 1 85.70 79.15 79.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 10 2 86.72 79.36 79.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 10 3 87.74 79.59 79.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 10 4 88.76 79.83 79.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 10 5 89.78 80.10 79.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 11 0 90.74 80.49 79.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 11 1 91.70 80.71 79.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 11 2 92.66 80.99 79.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 11 3 93.62 81.41 79.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 11 4 94.58 81.65 79.60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 11 5 95.54 82.10 79.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 12 0 96.20 82.51 79.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 12 1 96.86 82.73 79.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 12 2 97.52 83.18 79.78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 12 3 98.18 83.59 79.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 12 4 98.84 84.00 79.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 12 5 99.50 84.24 79.93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 13 0 100.1 84.66 79.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 13 1 100.7 85.08 80.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 13 2 101.3 85.50 80.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 13 3 101.9 85.94 80.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 13 4 102.5 86.19 80.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 13 5 103.1 86.64 80.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 14 0 103.4 86.96 80.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 14 1 103.7 87.22 80.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 14 2 104.0 87.70 80.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 14 3 104.3 88.09 80.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 14 4 104.6 88.50 80.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 14 5 104.9 88.95 80.71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 30 15 0 104.8 89.25 80.15 81.81 59.32 61.30 0 -42460 1.000 1.220 1.000 1.000 1.000 1260 .821 -36959 -8031 -44991 -36959 2150 -34810 -7671 -25959 -25959 -8851 -1180 -8031 -8120 -34079 16102 18252 2.295 1.867 + 6 30 15 1 104.7 86.85 80.00 81.58 58.03 61.65 0 -20321 0.564 0.559 1.000 0.564 1.000 710.1 .855 -21704 -3673 -25377 -21704 1212 -20492 -5951 -14247 -14247 -6245 -295 -3673 -3498 -17744 10138 11349 2.141 1.564 + 6 30 15 2 104.5 87.18 80.00 81.15 57.26 61.02 0 -13479 0.369 0.366 0.705 0.523 0.926 464.6 .865 -20410 -3174 -23584 -14379 793 -13586 -3839 -9639 -9639 -3947 -108 -2236 -2078 -11717 7265 8057 2.137 1.454 + 6 30 15 3 104.4 88.02 80.00 81.18 57.03 60.81 0 -14008 0.379 0.376 0.724 0.523 0.931 477.4 .873 -20615 -2988 -23603 -14926 815 -14112 -3993 -10015 -10015 -4097 -104 -2163 -1961 -11976 7395 8209 2.168 1.459 + 6 30 15 4 104.3 88.01 80.00 81.31 56.89 60.78 0 -14724 0.394 0.391 0.753 0.523 0.938 496.4 .881 -20820 -2803 -23622 -15673 847 -14826 -4293 -10431 -10431 -4395 -102 -2110 -1862 -12293 7596 8443 2.199 1.456 + 6 30 15 5 104.2 88.05 80.00 81.31 56.69 60.61 0 -14291 0.379 0.377 0.725 0.523 0.931 478.0 .887 -20970 -2672 -23642 -15200 815 -14384 -4159 -10132 -10132 -4252 -94 -1937 -1660 -11792 7337 8153 2.225 1.446 + 6 30 16 0 104.2 88.12 79.57 81.08 56.41 58.59 0 -71969 1.000 1.894 1.000 1.000 1.000 1260 .889 -40145 -5012 -45157 -40145 2150 -37995 -8265 -28905 -28905 -9090 -825 -5012 -4171 -33076 15929 18079 2.520 1.829 + 6 30 16 1 104.3 86.79 79.26 80.72 55.62 57.85 0 -54386 1.000 1.408 1.000 1.000 1.000 1260 .903 -40782 -4357 -45138 -40782 2150 -38632 -8505 -29496 -29496 -9136 -631 -4357 -3675 -33171 15949 18098 2.557 1.833 + 6 30 16 2 104.4 86.47 79.03 80.29 54.87 57.10 0 -40819 1.000 1.045 1.000 1.000 1.000 1260 .914 -41227 -3893 -45120 -41227 2150 -39077 -8365 -30215 -30215 -8862 -497 -3893 -3238 -33454 15968 18117 2.582 1.846 + 6 30 16 3 104.4 86.56 79.00 80.11 54.38 57.12 0 -31735 0.806 0.803 1.000 0.806 1.000 1015 .924 -33589 -2755 -36344 -33589 1732 -31856 -7414 -24286 -24286 -7571 -157 -2755 -2249 -26534 13348 15080 2.516 1.760 + 6 30 16 4 104.5 86.69 79.00 80.11 54.19 57.10 0 -30190 0.761 0.759 1.000 0.761 1.000 959.0 .931 -31931 -2383 -34314 -31931 1636 -30294 -7233 -22957 -22957 -7338 -104 -2383 -1872 -24829 12760 14397 2.502 1.725 + 6 30 16 5 104.5 86.67 79.00 80.14 54.08 57.16 0 -28685 0.719 0.717 1.000 0.719 1.000 906.1 .936 -30322 -2085 -32407 -30322 1546 -28776 -7055 -21630 -21630 -7146 -91 -2085 -1619 -23249 12210 13755 2.483 1.690 + 6 30 17 0 104.4 86.55 78.79 80.04 53.88 56.12 0 -90834 1.000 2.262 1.000 1.000 1.000 1260 .938 -42305 -2796 -45102 -42305 2150 -40156 -8524 -31222 -31222 -8934 -410 -2796 -2180 -33401 15987 18137 2.646 1.842 + 6 30 17 1 104.3 85.97 78.62 79.84 53.54 55.81 0 -79527 1.000 1.971 1.000 1.000 1.000 1260 .942 -42501 -2638 -45138 -42501 2150 -40351 -8583 -31421 -31421 -8931 -348 -2638 -2116 -33536 15949 18098 2.665 1.853 + 6 30 17 2 104.2 85.78 78.47 79.62 53.22 55.48 0 -70374 1.000 1.738 1.000 1.000 1.000 1260 .944 -42648 -2528 -45175 -42648 2150 -40498 -8523 -31676 -31676 -8822 -299 -2528 -2019 -33695 15910 18060 2.681 1.866 + 6 30 17 3 104.1 85.66 78.35 79.46 52.97 55.23 0 -62855 1.000 1.546 1.000 1.000 1.000 1260 .947 -42794 -2418 -45212 -42794 2150 -40645 -8531 -31853 -31853 -8792 -261 -2418 -1899 -33752 15872 18021 2.696 1.873 + 6 30 17 4 103.9 85.46 78.25 79.34 52.75 55.01 0 -56403 1.000 1.383 1.000 1.000 1.000 1260 .949 -42933 -2316 -45249 -42933 2150 -40784 -8551 -32002 -32002 -8782 -231 -2316 -1812 -33814 15833 17983 2.712 1.880 + 6 30 17 5 103.8 85.31 78.14 79.22 52.55 54.81 0.14 -49722 1.000 1.216 1.000 1.000 1.000 1260 .951 -43054 -2233 -45286 -43054 2150 -40904 -8546 -32132 -32132 -8772 -227 -2233 -1740 -33872 15795 17945 2.726 1.888 + 6 30 18 0 103.6 85.09 78.04 79.11 52.35 54.60 0 -43770 1.000 1.067 1.000 1.000 1.000 1260 .952 -43187 -2173 -45360 -43187 2150 -41038 -8536 -32294 -32294 -8744 -208 -2173 -1688 -33982 15718 17868 2.748 1.902 + 6 30 18 1 103.3 84.90 78.00 79.02 52.19 54.61 0 -38032 0.926 0.924 1.000 0.926 1.000 1167 .953 -40080 -1984 -42064 -40080 1990 -38089 -8134 -29831 -29831 -8258 -124 -1984 -1520 -31351 14629 16620 2.740 1.886 + 6 30 18 2 103.1 84.82 78.00 78.98 52.10 54.75 0 -34559 0.840 0.838 1.000 0.840 1.000 1058 .953 -36425 -1800 -38225 -36425 1806 -34619 -7659 -26900 -26900 -7719 -61 -1800 -1350 -28250 13379 15185 2.722 1.860 + 6 30 18 3 102.9 84.79 78.00 78.98 52.07 54.85 0 -32896 0.799 0.797 1.000 0.799 1.000 1006 .952 -34671 -1736 -36408 -34671 1717 -32954 -7423 -25473 -25473 -7481 -58 -1736 -1278 -26751 12737 14454 2.722 1.851 + 6 30 18 4 102.6 84.69 78.00 78.99 52.06 54.97 0 -31294 0.759 0.758 1.000 0.759 1.000 956.8 .951 -32983 -1686 -34669 -32983 1632 -31351 -7207 -24087 -24087 -7264 -57 -1686 -1229 -25317 12120 13752 2.721 1.841 + 6 30 18 5 102.4 84.58 78.00 78.99 52.06 55.10 0 -29751 0.722 0.720 1.000 0.722 1.000 909.5 .950 -31358 -1649 -33008 -31358 1552 -29807 -6983 -22768 -22768 -7039 -56 -1649 -1197 -23965 11526 13078 2.721 1.832 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 28 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 6 30 19 0 101.7 84.48 78.00 78.99 51.99 55.13 0 -28690 0.694 0.693 1.000 0.694 1.000 874.8 .948 -30239 -1665 -31904 -30239 1493 -28747 -6822 -21868 -21868 -6879 -57 -1665 -1209 -23077 10909 12402 2.772 1.861 + 6 30 19 1 100.9 84.32 78.00 78.98 51.91 55.13 0 -28048 0.677 0.676 1.000 0.677 1.000 853.0 .946 -29561 -1697 -31258 -29561 1455 -28106 -6721 -21327 -21327 -6778 -58 -1697 -1216 -22543 10430 11885 2.834 1.897 + 6 30 19 2 100.2 84.19 78.00 78.97 51.83 55.18 0 -26911 0.648 0.646 1.000 0.648 1.000 816.2 .944 -28360 -1691 -30052 -28360 1392 -26968 -6546 -20365 -20365 -6603 -57 -1691 -1211 -21575 9785 11178 2.898 1.930 + 6 30 19 3 99.50 84.03 78.00 78.97 51.76 55.26 0 -25689 0.617 0.616 1.000 0.617 1.000 777.4 .941 -27073 -1688 -28761 -27073 1326 -25746 -6364 -19325 -19325 -6421 -57 -1688 -1196 -20521 9117 10443 2.969 1.965 + 6 30 19 4 98.78 83.92 78.00 78.96 51.70 55.37 0 -24402 0.585 0.583 1.000 0.585 1.000 736.9 .939 -25717 -1675 -27391 -25717 1257 -24459 -6171 -18232 -18232 -6228 -57 -1675 -1186 -19418 8428 9685 3.051 2.005 + 6 30 19 5 98.06 83.77 78.00 78.96 51.65 55.50 0 -23171 0.554 0.553 1.000 0.554 1.000 698.3 .936 -24413 -1669 -26082 -24413 1191 -23221 -5990 -17175 -17175 -6047 -57 -1669 -1173 -18348 7758 8950 3.147 2.050 + 6 30 20 0 96.89 83.63 78.00 78.96 51.54 55.59 0 -21053 0.502 0.500 0.959 0.523 0.990 632.2 .933 -23143 -1673 -24816 -22186 1078 -21108 -5569 -15484 -15484 -5624 -55 -1604 -1134 -16618 6711 7789 3.341 2.133 + 6 30 20 1 95.72 83.57 78.00 78.93 51.42 55.47 0 -19598 0.465 0.464 0.889 0.523 0.972 586.3 .929 -23227 -1778 -25004 -20652 1000 -19652 -5156 -14442 -14442 -5210 -54 -1580 -1106 -15548 5969 6969 3.559 2.231 + 6 30 20 2 94.55 83.50 78.00 78.93 51.32 55.44 0 -18304 0.433 0.432 0.843 0.514 0.961 545.8 .925 -22880 -1855 -24735 -19289 931 -18358 -4846 -13458 -13458 -4899 -54 -1564 -1087 -14545 5375 6306 3.735 2.307 + 6 30 20 3 93.38 83.41 78.00 78.94 51.24 55.56 0 -17281 0.408 0.406 0.833 0.489 0.958 513.8 .921 -21858 -1877 -23734 -18212 877 -17335 -4679 -12602 -12602 -4733 -54 -1563 -1083 -13686 4977 5853 3.819 2.338 + 6 30 20 4 92.21 83.29 78.00 78.94 51.17 55.70 0 -16469 0.388 0.386 0.833 0.465 0.958 488.3 .917 -20839 -1895 -22733 -17356 833 -16523 -4564 -11904 -11904 -4619 -55 -1578 -1093 -12997 4626 5459 3.915 2.381 + 6 30 20 5 91.04 83.15 78.00 78.94 51.11 55.85 0 -15673 0.368 0.367 0.833 0.442 0.958 463.6 .912 -19825 -1908 -21733 -16519 791 -15728 -4447 -11226 -11226 -4502 -55 -1590 -1102 -12328 4279 5070 4.029 2.432 + 6 30 21 0 89.72 82.98 78.00 78.94 51.02 56.03 0 -14740 0.345 0.344 0.831 0.415 0.958 434.7 .907 -18697 -1907 -20604 -15537 742 -14795 -4299 -10441 -10441 -4354 -55 -1585 -1102 -11543 3877 4618 4.185 2.499 + 6 30 21 1 88.40 82.82 78.00 78.94 50.90 56.21 0 -14053 0.328 0.326 0.842 0.389 0.960 412.7 .904 -17601 -1873 -19474 -14812 704 -14108 -4220 -9833 -9833 -4275 -55 -1577 -1108 -10941 3518 4222 4.384 2.591 + 6 30 21 2 87.08 82.64 78.00 78.93 50.77 56.41 0 -13436 0.312 0.310 0.857 0.364 0.964 392.8 .901 -16521 -1824 -18345 -14160 670 -13490 -4165 -9271 -9271 -4219 -54 -1563 -1116 -10387 3166 3836 4.639 2.708 + 6 30 21 3 85.76 82.44 78.00 78.93 50.63 56.64 0 -12856 0.297 0.296 0.877 0.339 0.969 374.0 .898 -15453 -1763 -17216 -13547 638 -12909 -4122 -8734 -8734 -4175 -53 -1545 -1120 -9854 2812 3450 4.971 2.856 + 6 30 21 4 84.44 82.22 78.00 78.93 50.49 56.91 0 -12309 0.283 0.282 0.901 0.314 0.975 356.3 .895 -14395 -1692 -16087 -12969 608 -12361 -4092 -8217 -8217 -4144 -52 -1524 -1121 -9338 2453 3061 5.421 3.050 + 6 30 21 5 83.12 82.00 78.00 78.92 50.33 57.22 0 -11815 0.270 0.269 0.933 0.290 0.983 340.3 .892 -13347 -1611 -14958 -12447 581 -11866 -4085 -7730 -7730 -4136 -51 -1503 -1120 -8850 2089 2670 6.060 3.315 + 6 30 22 0 82.13 81.78 78.00 78.90 50.21 57.47 0 -10850 0.247 0.246 0.910 0.272 0.977 311.3 .890 -12561 -1550 -14111 -11428 531 -10897 -3862 -6987 -6987 -3910 -48 -1410 -1063 -8050 1734 2265 6.743 3.554 + 6 30 22 1 81.14 81.62 78.00 78.86 50.21 57.48 0 -10162 0.232 0.231 0.861 0.269 0.965 292.1 .888 -12434 -1566 -14000 -10706 498 -10207 -3609 -6553 -6553 -3654 -45 -1349 -1022 -7576 1622 2120 6.839 3.573 + 6 30 22 2 80.15 81.48 78.00 78.82 50.25 57.47 0 -9496 0.217 0.216 0.807 0.269 0.952 273.7 .886 -12403 -1597 -14000 -10006 467 -9539 -3354 -6142 -6142 -3397 -43 -1288 -982 -7123 1541 2008 6.822 3.547 + 6 30 22 3 79.16 81.35 78.00 78.79 50.31 57.48 0 -8862 0.203 0.202 0.755 0.269 0.939 256.1 .884 -12370 -1630 -14000 -9340 437 -8903 -3116 -5746 -5746 -3157 -41 -1231 -943 -6689 1462 1899 6.804 3.522 + 6 30 22 4 78.17 81.22 78.00 78.76 50.37 57.50 0 -8250 0.190 0.189 0.705 0.269 0.926 239.2 .881 -12335 -1665 -14000 -8697 408 -8289 -2889 -5361 -5361 -2928 -39 -1174 -905 -6266 1384 1792 6.784 3.496 + 6 30 22 5 77.18 81.10 78.00 78.74 50.44 57.52 0 -7669 0.177 0.176 0.658 0.269 0.914 223.1 .878 -12297 -1703 -14000 -8087 381 -7706 -2675 -4994 -4994 -2712 -37 -1120 -869 -5863 1308 1688 6.763 3.473 + 6 30 23 0 76.49 80.99 78.00 78.71 50.50 57.54 0 -6715 0.156 0.155 0.578 0.269 0.894 195.9 .876 -12262 -1738 -14000 -7082 334 -6748 -2332 -4383 -4383 -2365 -33 -1004 -784 -5167 1174 1508 6.744 3.425 + 6 30 23 1 75.80 80.94 78.00 78.69 50.55 57.55 0 -6193 0.144 0.143 0.534 0.269 0.884 181.2 .874 -12231 -1769 -14000 -6534 309 -6225 -2143 -4050 -4050 -2174 -31 -945 -741 -4792 1099 1408 6.727 3.402 + 6 30 23 2 75.11 80.86 78.00 78.67 50.61 57.59 0 -5712 0.133 0.132 0.494 0.269 0.873 167.6 .872 -12201 -1799 -14000 -6027 286 -5741 -1973 -3739 -3739 -2002 -30 -889 -701 -4440 1028 1314 6.711 3.379 + 6 30 23 3 74.42 80.78 78.00 78.66 50.67 57.62 0 -5378 0.126 0.125 0.466 0.269 0.867 158.2 .869 -12170 -1830 -14000 -5676 270 -5406 -1853 -3525 -3525 -1881 -28 -854 -678 -4204 979 1249 6.693 3.367 + 6 30 23 4 73.73 80.67 78.00 78.64 50.73 57.64 0 -4929 0.115 0.115 0.429 0.269 0.857 145.4 .867 -12139 -1861 -14000 -5203 248 -4955 -1693 -3236 -3236 -1719 -27 -798 -639 -3874 909 1157 6.677 3.348 + 6 30 23 5 73.04 80.60 78.00 78.62 50.79 57.67 0 -4510 0.106 0.105 0.393 0.269 0.848 133.4 .865 -12107 -1893 -14000 -4762 228 -4535 -1544 -2966 -2966 -1569 -25 -745 -601 -3567 843 1071 6.659 3.331 + + +RSYS cooling subhour details for Wed 01-Jul + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet znLd loadF PLR runF spdF PLF CFMav SHR capSen capLat capTot qSCoil qSFan qSNet qSDct qsZn1 qsZn2 qBal1 qBal2 qLat1 qLat2 qtZn eComp eTot COPspl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ------ ----- ----- ----- ----- ----- ----- ---- ------ ------ ------ ------ ----- ------ ----- ------ ------ ----- ------ ------ ------ ------ ----- ------ ------ ----- + 7 1 0 0 72.35 80.52 78.00 78.60 50.85 57.70 0 -3865 .0910 .0905 0.338 0.269 0.835 114.7 .862 -12075 -1925 -14000 -4083 196 -3887 -1319 -2546 -2546 -1341 -22 -651 -529 -3075 737 932 6.641 3.298 + 7 1 0 1 71.66 80.48 78.00 78.58 50.93 57.74 0 -3463 .0818 .0814 0.304 0.269 0.826 103.1 .860 -12036 -1964 -14000 -3658 176 -3483 -1179 -2284 -2284 -1199 -20 -597 -488 -2772 669 845 6.620 3.280 + 7 1 0 2 70.97 80.42 78.00 78.57 51.03 57.80 0 -3069 .0728 .0724 0.270 0.269 0.818 91.7 .857 -11996 -2004 -14000 -3244 156 -3087 -1043 -2026 -2026 -1062 -18 -542 -445 -2471 601 758 6.598 3.260 + 7 1 0 3 70.28 80.36 78.00 78.56 51.13 57.86 0 -2688 .0640 .0636 0.238 0.269 0.809 80.7 .854 -11951 -2049 -14000 -2842 138 -2704 -912 -1776 -1776 -928 -16 -487 -402 -2178 534 672 6.573 3.242 + 7 1 0 4 69.59 80.31 78.00 78.54 51.23 57.93 0 -2314 .0554 .0550 0.206 0.269 0.801 69.8 .850 -11903 -2097 -14000 -2448 119 -2329 -784 -1530 -1530 -798 -14 -431 -357 -1887 467 586 6.546 3.223 + 7 1 0 5 68.90 80.26 78.00 78.53 51.35 58.01 0 -1955 .0470 .0467 0.175 0.269 0.794 59.2 .847 -11851 -2149 -14000 -2069 101 -1968 -661 -1294 -1294 -674 -13 -375 -312 -1606 400 501 6.518 3.205 + 7 1 1 0 68.69 80.26 78.00 78.52 51.46 58.08 0 -1623 .0392 .0389 0.146 0.269 0.786 49.4 .843 -11805 -2195 -14000 -1718 84 -1634 -548 -1075 -1075 -559 -11 -319 -266 -1341 336 421 6.493 3.188 + 7 1 1 1 68.48 80.18 78.00 78.52 51.57 58.16 0 -1369 .0332 .0330 0.123 0.269 0.781 41.8 .840 -11759 -2241 -14000 -1450 71 -1379 -462 -907 -907 -471 -9 -276 -231 -1138 287 358 6.468 3.175 + 7 1 1 2 68.27 80.16 78.00 78.50 51.68 58.23 0 -1150 .0280 .0278 0.104 0.269 0.776 35.3 .836 -11708 -2292 -14000 -1219 60 -1159 -387 -763 -763 -395 -8 -239 -200 -963 244 304 6.439 3.166 + 7 1 1 3 68.06 80.06 78.00 78.50 51.80 58.32 0 -906 .0222 .0220 .0823 0.269 0.771 27.9 .833 -11659 -2341 -14000 -960 48 -912 -305 -601 -601 -311 -7 -193 -162 -763 194 242 6.412 3.154 + 7 1 1 4 67.85 80.04 78.00 78.48 51.92 58.39 0 -699 .0172 .0171 .0639 0.269 0.766 21.7 .829 -11604 -2396 -14000 -741 37 -704 -235 -465 -465 -240 -5 -153 -129 -594 152 189 6.382 3.147 + 7 1 1 5 67.64 79.96 78.00 78.47 52.05 58.48 0 -475 .0118 .0117 .0437 0.269 0.761 14.8 .825 -11550 -2450 -14000 -504 25 -479 -159 -316 -316 -163 -4 -107 -90 -407 104 130 6.353 3.136 + 7 1 2 0 67.10 79.96 78.00 78.45 52.19 58.58 0 -146 .0036 .0036 .0135 0.269 0.753 4.6 .820 -11487 -2513 -14000 -155 8 -147 -49 -97 -97 -50 -1 -34 -29 -126 33 40 6.318 3.118 + 7 1 2 1 66.56 79.96 78.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 2 2 66.02 79.91 77.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 2 3 65.48 79.86 77.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 2 4 64.94 79.72 77.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 2 5 64.40 79.67 77.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 29 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 7 1 3 0 64.07 79.64 77.93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 3 1 63.74 79.53 77.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 3 2 63.41 79.73 77.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 3 3 63.08 79.25 77.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 3 4 62.75 79.27 77.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 3 5 62.42 79.19 77.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 4 0 62.03 79.11 77.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 4 1 61.64 79.05 77.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 4 2 61.25 78.94 77.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 4 3 60.86 78.88 77.72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 4 4 60.47 78.75 77.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 4 5 60.08 78.69 77.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 5 0 59.81 78.84 77.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 5 1 59.54 78.40 77.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 5 2 59.27 78.50 77.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 5 3 59.00 78.26 77.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 5 4 58.73 78.19 77.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 5 5 58.46 78.35 77.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 6 0 59.15 78.10 77.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 6 1 59.84 78.05 77.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 6 2 60.53 77.86 77.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 6 3 61.22 77.72 77.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 6 4 61.91 77.61 77.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 6 5 62.60 77.50 77.72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 7 0 63.44 77.41 77.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 7 1 64.28 77.31 77.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 7 2 65.12 77.22 77.86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 7 3 65.96 77.13 77.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 7 4 66.80 77.06 77.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 7 5 67.64 77.00 78.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 8 0 68.63 76.95 78.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 8 1 69.62 76.91 78.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 8 2 70.61 76.89 78.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 8 3 71.60 76.88 78.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 8 4 72.59 76.88 78.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 8 5 73.58 76.90 78.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 9 0 74.39 76.92 78.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 9 1 75.20 76.96 78.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 9 2 76.01 77.02 78.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 9 3 76.82 77.09 78.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 9 4 77.63 77.17 78.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 9 5 78.44 77.27 78.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 10 0 78.92 77.40 78.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 10 1 79.40 77.50 78.72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 10 2 79.88 77.63 78.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 10 3 80.36 77.78 78.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 10 4 80.84 77.93 78.86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 10 5 81.32 78.08 78.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 11 0 81.83 78.25 78.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 11 1 82.34 78.45 78.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 11 2 82.85 78.64 79.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 11 3 83.36 78.89 79.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 11 4 83.87 79.05 79.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 11 5 84.38 79.30 79.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 30 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 7 1 12 0 84.86 79.54 79.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 12 1 85.34 79.75 79.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 12 2 85.82 79.93 79.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 12 3 86.30 80.24 79.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 12 4 86.78 80.57 79.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 12 5 87.26 80.89 79.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 13 0 87.62 81.19 79.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 13 1 87.98 81.45 79.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 13 2 88.34 81.71 79.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 13 3 88.70 81.98 79.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 13 4 89.06 82.25 79.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 13 5 89.42 82.52 79.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 14 0 89.87 82.79 79.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 14 1 90.32 83.05 79.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 14 2 90.77 83.33 79.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 14 3 91.22 83.61 79.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 14 4 91.67 83.89 79.78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 14 5 92.12 84.17 79.84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 15 0 92.30 84.42 79.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 15 1 92.48 84.67 79.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 7 1 15 2 92.66 84.92 80.00 80.76 56.85 60.64 0 -2149 .0587 .0581 0.124 0.475 0.781 74.0 .804 -18588 -4531 -23118 -2301 126 -2174 -585 -1566 -1566 -608 -23 -561 -568 -2134 868 994 3.394 2.146 + 7 1 15 3 92.84 84.94 80.00 80.82 56.72 60.54 0 -3591 .0973 .0963 0.204 0.478 0.801 122.6 .811 -18867 -4405 -23272 -3840 209 -3631 -982 -2609 -2609 -1022 -40 -897 -910 -3519 1408 1617 3.406 2.177 + 7 1 15 4 93.02 84.98 80.00 80.83 56.53 60.35 0 -3955 0.106 0.105 0.221 0.482 0.805 134.0 .818 -19152 -4274 -23426 -4225 229 -3997 -1077 -2877 -2877 -1120 -42 -943 -957 -3835 1535 1763 3.420 2.175 + 7 1 15 5 93.20 85.11 80.00 80.84 56.33 60.17 0 -4334 0.116 0.114 0.238 0.486 0.809 145.6 .824 -19441 -4139 -23580 -4626 248 -4378 -1177 -3157 -3157 -1221 -44 -985 -1000 -4157 1664 1913 3.434 2.173 + 7 1 16 0 93.41 85.25 79.37 80.68 56.04 58.03 0 -57613 1.000 1.513 1.000 1.000 1.000 1260 .830 -40228 -8261 -48489 -40228 2150 -38078 -7448 -29392 -29392 -8686 -1238 -8261 -8380 -37772 12464 14614 3.227 2.585 + 7 1 16 1 93.62 83.19 79.00 80.20 54.46 56.97 0 -32804 0.833 0.827 1.000 0.833 1.000 1049 .864 -34828 -5503 -40331 -34828 1790 -33037 -7107 -25277 -25277 -7761 -654 -5503 -5356 -30632 10308 12099 3.379 2.532 + 7 1 16 2 93.83 82.99 79.00 79.74 53.30 57.32 0 -18770 0.464 0.461 0.930 0.499 0.983 584.4 .886 -21366 -2753 -24119 -19871 997 -18874 -4919 -13851 -13851 -5023 -104 -2561 -2469 -16320 5564 6562 3.635 2.487 + 7 1 16 3 94.04 83.74 79.00 79.69 52.92 56.91 0 -18917 0.462 0.459 0.918 0.503 0.979 581.7 .897 -21798 -2501 -24299 -20001 992 -19009 -4869 -14048 -14048 -4961 -91 -2295 -2216 -16264 5575 6567 3.663 2.477 + 7 1 16 4 94.25 83.65 79.00 79.79 52.69 56.74 0 -19417 0.468 0.466 0.922 0.508 0.981 589.7 .908 -22234 -2244 -24478 -20505 1006 -19499 -5063 -14354 -14354 -5145 -81 -2070 -2003 -16357 5664 6670 3.692 2.452 + 7 1 16 5 94.46 83.55 79.00 79.78 52.42 56.46 0 -18122 0.433 0.431 0.845 0.512 0.961 545.3 .917 -22616 -2042 -24658 -19119 930 -18188 -4686 -13436 -13436 -4752 -67 -1726 -1673 -15109 5359 6290 3.711 2.402 + 7 1 17 0 94.46 83.56 78.54 79.61 52.08 54.22 0 -73562 1.000 1.740 1.000 1.000 1.000 1260 .923 -44435 -3731 -48166 -44435 2150 -42285 -8010 -33500 -33500 -8785 -775 -3731 -3622 -37122 12800 14950 3.471 2.483 + 7 1 17 1 94.46 82.30 78.20 79.22 51.31 53.50 0 -54457 1.000 1.272 1.000 1.000 1.000 1260 .934 -44968 -3198 -48166 -44968 2150 -42819 -8228 -34016 -34016 -8803 -575 -3198 -3053 -37069 12800 14950 3.513 2.480 + 7 1 17 2 94.46 81.96 78.00 78.78 50.62 52.97 0 -39953 0.927 0.925 1.000 0.927 1.000 1168 .941 -42015 -2630 -44645 -42015 1992 -40023 -7732 -31957 -31957 -8066 -334 -2630 -2475 -34432 11796 13788 3.562 2.497 + 7 1 17 3 94.46 82.09 78.00 78.60 50.22 53.17 0 -31710 0.730 0.729 1.000 0.730 1.000 919.8 .948 -33328 -1832 -35160 -33328 1569 -31759 -6743 -24967 -24967 -6792 -49 -1832 -1707 -26674 9090 10659 3.666 2.502 + 7 1 17 4 94.46 82.21 78.00 78.62 50.09 53.13 0 -31007 0.710 0.709 1.000 0.710 1.000 894.9 .952 -32574 -1634 -34208 -32574 1527 -31047 -6676 -24331 -24331 -6716 -41 -1634 -1506 -25837 8819 10345 3.694 2.497 + 7 1 17 5 94.46 82.09 78.00 78.64 50.01 53.25 0 -29105 0.664 0.663 1.000 0.664 1.000 836.8 .956 -30566 -1422 -31988 -30566 1428 -29138 -6467 -22638 -22638 -6500 -33 -1422 -1301 -23939 8185 9613 3.734 2.490 + 7 1 18 0 94.34 81.97 78.00 78.64 49.92 53.27 0 -27973 0.637 0.636 1.000 0.637 1.000 802.0 .957 -29370 -1313 -30683 -29370 1368 -28002 -6294 -21679 -21679 -6323 -29 -1313 -1195 -22874 7792 9160 3.769 2.497 + 7 1 18 1 94.22 81.92 78.00 78.63 49.87 53.38 0 -26609 0.605 0.604 1.000 0.605 1.000 761.9 .958 -27935 -1233 -29168 -27935 1300 -26635 -6107 -20501 -20501 -6134 -27 -1233 -1109 -21610 7343 8643 3.804 2.500 + 7 1 18 2 94.10 81.83 78.00 78.63 49.85 53.48 0 -25713 0.584 0.583 1.000 0.584 1.000 735.7 .958 -26994 -1195 -28189 -26994 1255 -25739 -5989 -19724 -19724 -6015 -26 -1195 -1057 -20781 7048 8304 3.830 2.503 + 7 1 18 3 93.98 81.76 78.00 78.62 49.84 53.57 0 -24839 0.564 0.563 1.000 0.564 1.000 710.6 .957 -26077 -1172 -27249 -26077 1212 -24865 -5864 -18975 -18975 -5890 -26 -1172 -1021 -19996 6768 7980 3.853 2.506 + 7 1 18 4 93.86 81.67 78.00 78.62 49.85 53.68 0 -24037 0.546 0.545 1.000 0.546 1.000 687.5 .956 -25226 -1158 -26383 -25226 1173 -24053 -5751 -18276 -18276 -5777 -26 -1158 -995 -19271 6510 7683 3.875 2.508 + 7 1 18 5 93.74 81.60 78.00 78.61 49.85 53.79 0 -23298 0.529 0.529 1.000 0.529 1.000 666.8 .955 -24454 -1154 -25609 -24454 1138 -23317 -5642 -17648 -17648 -5668 -26 -1154 -980 -18628 6280 7418 3.894 2.511 + 7 1 19 0 93.50 81.41 78.00 78.60 49.85 53.83 0 -22949 0.521 0.521 1.000 0.521 1.000 657.0 .953 -24090 -1179 -25268 -24090 1121 -22969 -5582 -17359 -17359 -5610 -28 -1179 -989 -18348 6156 7277 3.913 2.521 + 7 1 19 1 93.26 81.35 78.00 78.58 49.81 53.88 0 -22304 0.506 0.506 1.000 0.506 1.000 638.2 .953 -23414 -1168 -24582 -23414 1089 -22326 -5473 -16825 -16825 -5501 -27 -1168 -979 -17804 5940 7028 3.942 2.533 + 7 1 19 2 93.02 81.28 78.00 78.57 49.79 53.96 0 -21686 0.492 0.492 1.000 0.492 1.000 620.3 .951 -22769 -1161 -23930 -22769 1058 -21711 -5385 -16298 -16298 -5413 -28 -1161 -962 -17260 5735 6793 3.970 2.541 + 7 1 19 3 92.78 81.10 78.00 78.56 49.78 54.07 0 -20920 0.475 0.474 0.996 0.477 0.999 598.3 .950 -22067 -1154 -23221 -21968 1021 -20947 -5266 -15654 -15654 -5294 -28 -1149 -942 -16595 5500 6520 3.999 2.545 + 7 1 19 4 92.54 81.02 78.00 78.54 49.75 54.06 0 -20474 0.465 0.464 0.984 0.472 0.996 585.5 .949 -21841 -1174 -23016 -21501 999 -20502 -5152 -15322 -15322 -5180 -28 -1156 -950 -16272 5372 6371 4.018 2.554 + 7 1 19 5 92.30 80.93 78.00 78.52 49.74 54.08 0 -19269 0.437 0.437 0.936 0.467 0.984 551.0 .948 -21617 -1194 -22810 -20237 940 -19297 -4859 -14410 -14410 -4887 -28 -1118 -914 -15323 5093 6033 4.038 2.540 + 7 1 20 0 91.34 80.70 78.00 78.52 49.63 54.14 0 -17203 0.389 0.388 0.869 0.448 0.967 490.2 .945 -20784 -1205 -21989 -18066 836 -17230 -4418 -12785 -12785 -4445 -26 -1047 -853 -13638 4514 5351 4.137 2.549 + 7 1 20 1 90.38 80.70 78.00 78.49 49.50 54.20 0 -16086 0.363 0.362 0.846 0.428 0.962 456.8 .943 -19955 -1213 -21168 -16891 779 -16112 -4199 -11887 -11887 -4225 -26 -1027 -829 -12716 4132 4912 4.251 2.589 + 7 1 20 2 89.42 80.64 78.00 78.50 49.45 54.35 0 -15029 0.338 0.337 0.826 0.409 0.956 425.9 .939 -19110 -1237 -20347 -15783 727 -15056 -4018 -11011 -11011 -4045 -27 -1022 -795 -11806 3769 4496 4.378 2.626 + 7 1 20 3 88.46 80.53 78.00 78.50 49.42 54.53 0 -14130 0.317 0.317 0.813 0.390 0.953 400.0 .935 -18250 -1275 -19526 -14841 682 -14158 -3867 -10263 -10263 -3895 -28 -1037 -778 -11042 3442 4125 4.523 2.677 + 7 1 20 4 87.50 80.43 78.00 78.49 49.41 54.74 0 -13435 0.302 0.301 0.812 0.372 0.953 380.4 .929 -17383 -1321 -18705 -14114 649 -13465 -3764 -9671 -9671 -3794 -30 -1073 -781 -10451 3157 3806 4.691 2.746 + 7 1 20 5 86.54 80.33 78.00 78.48 49.43 54.99 0 -12795 0.288 0.287 0.814 0.353 0.954 362.6 .923 -16514 -1369 -17883 -13446 619 -12827 -3676 -9119 -9119 -3708 -32 -1115 -791 -9911 2883 3502 4.891 2.830 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 31 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 7 1 21 0 85.70 80.23 78.00 78.47 49.49 55.26 0 -11822 0.267 0.266 0.790 0.337 0.947 335.8 .917 -15736 -1428 -17165 -12429 573 -11856 -3473 -8349 -8349 -3507 -34 -1128 -778 -9127 2574 3147 5.096 2.900 + 7 1 21 1 84.86 80.15 78.00 78.46 49.54 55.53 0 -11264 0.254 0.254 0.791 0.322 0.948 320.6 .911 -14978 -1469 -16446 -11846 547 -11299 -3388 -7876 -7876 -3423 -36 -1162 -788 -8664 2337 2884 5.350 3.005 + 7 1 21 2 84.02 80.04 78.00 78.46 49.59 55.82 0 -10776 0.244 0.243 0.797 0.306 0.949 307.3 .905 -14228 -1499 -15728 -11338 524 -10813 -3325 -7451 -7451 -3363 -37 -1195 -807 -8257 2108 2633 5.665 3.137 + 7 1 21 3 83.18 79.91 78.00 78.45 49.64 56.13 0 -10313 0.234 0.233 0.805 0.291 0.951 294.7 .899 -13488 -1521 -15009 -10855 503 -10352 -3267 -7046 -7046 -3306 -39 -1224 -828 -7874 1881 2384 6.067 3.303 + 7 1 21 4 82.34 79.78 78.00 78.43 49.68 56.46 0 -9881 0.225 0.224 0.816 0.275 0.954 283.0 .893 -12757 -1534 -14291 -10405 483 -9922 -3216 -6665 -6665 -3257 -40 -1251 -850 -7516 1654 2137 6.593 3.517 + 7 1 21 5 81.50 79.63 78.00 78.41 49.81 56.66 0 -9389 0.215 0.214 0.797 0.269 0.949 270.3 .887 -12412 -1588 -14000 -9892 461 -9431 -3083 -6306 -6306 -3124 -41 -1265 -865 -7171 1526 1988 6.827 3.608 + 7 1 22 0 80.66 79.51 78.00 78.38 50.00 56.78 0 -8387 0.193 0.192 0.717 0.269 0.929 243.3 .880 -12326 -1674 -14000 -8842 415 -8427 -2742 -5645 -5645 -2782 -40 -1201 -825 -6470 1403 1819 6.779 3.558 + 7 1 22 1 79.82 79.46 78.00 78.35 50.15 56.87 0 -7824 0.181 0.180 0.673 0.269 0.918 228.4 .875 -12257 -1743 -14000 -8253 390 -7863 -2547 -5277 -5277 -2586 -39 -1174 -816 -6093 1333 1723 6.741 3.537 + 7 1 22 2 78.98 79.38 78.00 78.34 50.29 56.96 0 -7296 0.170 0.169 0.631 0.269 0.908 214.1 .871 -12197 -1803 -14000 -7700 365 -7334 -2371 -4925 -4925 -2409 -38 -1138 -805 -5730 1264 1630 6.709 3.517 + 7 1 22 3 78.14 79.30 78.00 78.32 50.39 57.03 0 -6785 0.159 0.158 0.590 0.269 0.897 200.0 .868 -12148 -1852 -14000 -7163 341 -6822 -2199 -4586 -4586 -2236 -37 -1092 -789 -5375 1195 1536 6.681 3.499 + 7 1 22 4 77.30 79.21 78.00 78.30 50.48 57.08 0 -6289 0.148 0.147 0.549 0.269 0.887 186.1 .865 -12105 -1895 -14000 -6641 318 -6324 -2032 -4257 -4257 -2067 -35 -1039 -767 -5024 1124 1442 6.658 3.485 + 7 1 22 5 76.46 79.12 78.00 78.28 50.56 57.12 0 -5823 0.137 0.136 0.510 0.269 0.877 172.9 .862 -12066 -1934 -14000 -6151 295 -5856 -1876 -3947 -3947 -1909 -33 -986 -743 -4690 1056 1351 6.637 3.471 + 7 1 23 0 75.83 79.06 78.00 78.27 50.62 57.15 0 -4983 0.118 0.117 0.437 0.269 0.859 148.4 .860 -12035 -1965 -14000 -5265 253 -5012 -1600 -3383 -3383 -1629 -29 -860 -661 -4043 926 1179 6.619 3.430 + 7 1 23 1 75.20 79.06 78.00 78.25 50.69 57.19 0 -4561 0.108 0.107 0.402 0.269 0.850 136.2 .857 -12004 -1996 -14000 -4820 232 -4588 -1461 -3099 -3099 -1488 -27 -802 -624 -3723 859 1091 6.602 3.413 + 7 1 23 2 74.57 79.02 78.00 78.25 50.77 57.24 0 -4178 .0993 .0987 0.369 0.269 0.842 125.2 .855 -11970 -2030 -14000 -4417 214 -4203 -1338 -2840 -2840 -1363 -25 -749 -588 -3429 797 1010 6.584 3.394 + 7 1 23 3 73.94 78.97 78.00 78.24 50.86 57.30 0 -3809 .0909 .0903 0.338 0.269 0.834 114.5 .852 -11932 -2068 -14000 -4028 195 -3833 -1218 -2591 -2591 -1242 -24 -698 -554 -3145 736 931 6.563 3.378 + 7 1 23 4 73.31 78.96 78.00 78.23 50.95 57.36 0 -3460 .0829 .0823 0.308 0.269 0.827 104.4 .849 -11892 -2108 -14000 -3661 178 -3482 -1105 -2356 -2356 -1127 -22 -649 -519 -2875 677 855 6.541 3.363 + 7 1 23 5 72.68 78.81 78.00 78.23 51.04 57.43 0 -3112 .0748 .0743 0.278 0.269 0.819 94.3 .847 -11852 -2148 -14000 -3294 161 -3133 -993 -2120 -2120 -1013 -20 -597 -482 -2602 617 777 6.519 3.347 + + + +! Log for Run 001: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 32 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Input for Run 001: + +# #define RunDateFmt 12:05, Mon, Jan 07, 2019 +# #define RunID 7 // Proposed +# #define AnalysisType 13 // Proposed and Standard +# #define CompCodeBase 2019 // CA2019 +# #define StdDesignBase 2019 // CA2019 +# #define StandardsVersion 2020 // Compliance 2020 +# #define DesignRatingBase 2014 // RESNET2014 +# #define SEASONCHANGESETPT 60 +# #define FANVENTLOCKOUTTEMP 68 +# #define ISSEASONCOOLING (@weather.taDbAvg07 > SEASONCHANGESETPT) +# #define FANVENTAVAIL 0 // (@weather.taDbAvg07 > FANVENTLOCKOUTTEMP) +# #define WINDOWVENTAVAIL 0 // ($hour < 24 && ($hour > 12 || $radDiff > 1)) +# #define HWUSEF_WD hourval( 0.014, 0.008, 0.009, 0.011, 0.020, 0.044, 0.089, 0.107, 0.089, 0.066, 0.052, 0.038, 0.036, 0.033, 0.032, 0.026, 0.042, 0.048, 0.052, 0.047, 0.042, 0.039, 0.036, 0.022 ) +# #define HWUSEF_WE hourval( 0.018, 0.010, 0.009, 0.008, 0.015, 0.023, 0.026, 0.047, 0.077, 0.083, 0.074, 0.061, 0.051, 0.043, 0.039, 0.039, 0.052, 0.058, 0.056, 0.052, 0.047, 0.044, 0.040, 0.028 ) +# #define ShwrFLOWF 1 +# #define ShwrDRAINHREFF 0 +# #define CwshHOTF 0.22 +# #define CwshUSEF 2.03 +# #define FaucHOTF 0.5 +# #define FaucFlowF 1 +# #define BathFLOWF 1 +# #define BathDRAINHREFF 0 +# #define DwshFLOWF 1 +# #define Cook_WD hourval( .005,.004,.004,.004,.004,.014,.019,.025,.026,.022,.021,.029,.035,.032,.034,.052,.115,.193,.180,.098,.042,.020,.012,.010) +# #define Cook_WEH hourval( .005,.004,.003,.003,.003,.005,.010,.027,.048,.048,.046,.055,.063,.059,.062,.068,.091,.139,.129,.072,.032,.014,.009,.005) +# #define TV_WD hourval( .035,.026,.023,.022,.021,.021,.025,.032,.038,.040,.038,.038,.041,.042,.042,.041,.044,.049,.056,.064,.070,.074,.067,.051) +# #define TV_WEH hourval( .035,.027,.022,.021,.020,.020,.022,.029,.037,.043,.042,.039,.040,.042,.045,.048,.051,.052,.056,.061,.065,.069,.064,.050) +# #define STB_WD hourval( .040,.040,.040,.040,.040,.040,.040,.041,.040,.040,.040,.040,.040,.040,.041,.041,.042,.043,.044,.045,.046,.047,.045,.045) +# #define STB_WEH hourval( .041,.041,.040,.041,.040,.040,.040,.040,.041,.042,.042,.041,.041,.041,.041,.042,.042,.043,.044,.044,.045,.045,.044,.039) +# #define Comp_WD hourval( .036,.033,.032,.032,.031,.032,.034,.036,.039,.043,.045,.045,.046,.046,.046,.047,.048,.049,.049,.049,.049,.048,.044,.041) +# #define Comp_WEH hourval( .036,.034,.033,.033,.032,.033,.033,.035,.038,.042,.044,.045,.046,.047,.047,.048,.049,.049,.048,.048,.048,.047,.044,.041) +# #define RMEL_WD hourval( .037,.035,.034,.034,.032,.036,.042,.044,.037,.032,.033,.033,.032,.033,.035,.037,.044,.053,.058,.060,.062,.060,.052,.045) +# #define RMEL_WEH hourval( .037,.035,.034,.034,.032,.036,.042,.044,.037,.032,.033,.033,.032,.033,.035,.037,.044,.053,.058,.060,.062,.060,.052,.045) +# #define IntLight_WD hourval( .023,.019,.015,.017,.021,.031,.042,.041,.034,.029,.027,.025,.021,.021,.021,.026,.031,.044,.084,.117,.113,.096,.063,.039) +# #define IntLight_WEH hourval( .023,.019,.015,.017,.021,.031,.042,.041,.034,.029,.027,.025,.021,.021,.021,.026,.031,.044,.084,.117,.113,.096,.063,.039) +# #define ExtLight_WD hourval( .046,.046,.046,.046,.046,.037,.035,.034,.033,.028,.022,.015,.012,.011,.011,.012,.019,.037,.049,.065,.091,.105,.091,.063) +# #define ExtLight_WEH hourval( .046,.046,.045,.045,.046,.045,.044,.041,.036,.030,.024,.016,.012,.011,.011,.012,.019,.038,.048,.060,.083,.098,.085,.059) +# #define Cook_SM choose1( $month, 1.094,1.065,1.074,0.889,0.891,0.935,0.993,0.92,0.923,0.92,1.128,1.168) +# #define TV_SM choose1( $month, 1.032,.991,.986,.99,.971,.971,1.002,1.013,1.008,1.008,1.02,1.008) +# #define STB_SM choose1( $month, 1.02,.84,.92,.98,.91,.94,1.05,1.06,1.06,1.14,1.03,1.050) +# #define Comp_SM choose1( $month, 0.98,0.87,0.89,1.11,1.14,0.99,1.05,1.01,0.96,0.97,0.99,1.04) +# #define Other_SM choose1( $month, 1.19,1.11,1.02,.93,.84,.8,.82,.88,.98,1.07,1.16,1.2) +# #define RefrConst_WD hourval( -0.5436,-0.3646,-0.4044,-0.3871,-0.5341,-0.7521,-0.3747,0.0041,-0.1293,-0.4644,-0.4800,-0.4351,-0.2195,-0.3301,-0.0919,-0.1686,-0.4819,-0.4731,-0.2223,0.0604,-0.1466,-0.3214,-0.4113,-0.7701) +# #define RefrConst_WEH hourval( -0.3467,-0.2779,-0.2844,-0.2954,-0.4680,-0.5127,-0.7110,-0.5662,0.0463,-0.2995,-0.2388,-0.2646,-0.2905,-0.2730,-0.3306,-0.0031,-0.4356,-0.2580,0.2384,0.1176,-0.0458,-0.0596,-0.5300,0.0197 ) +# #define RefrTemp_WD hourval( 0.0195,0.0167,0.0169,0.0165,0.0183,0.0218,0.0178,0.0136,0.0151,0.0189,0.0188,0.0183,0.0156,0.0169,0.0137,0.0149,0.0197,0.0208,0.0184,0.0144,0.0166,0.0184,0.0188,0.0229) +# #define RefrTemp_WEH hourval( 0.0171,0.0156,0.0155,0.0154,0.0175,0.0181,0.0212,0.0201,0.0130,0.0176,0.0165,0.0171,0.0177,0.0176,0.0182,0.0139,0.0197,0.0180,0.0121,0.0135,0.0154,0.0150,0.0205,0.0129) +# #define FVCHPC 0.95 // VCHP cooling input energy factor +# #define FVCHPH 0.88 // VCHP heating input energy factor + +# #if 1 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 33 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + repHdrL = "CZ12 VC Temp Heat Pump" + wfName = "CA_SACRAMENTO-EXECUTIVE-AP_724830S_STYP20.epw" +# #define ClimateZone 12 +# #define DD1 Jun 30 +# #define CD1 Jul 10 +# #define HD1 Dec 03 +# #else +0 repHdrL = "CZ16 Low Temp Heat Pump" +0 wfName = "CA_BLUE-CANYON-AP_725845S_STYP20.epw" +# #define ClimateZone 16 // CZ16 (Blue Canyon) +# #define DD1 Aug 11 +# #define CD1 Aug 15 +# #define HD1 Jan 03 +# #endif + ebTolHour = 0.001 + ebTolDay = 0.001 + ebTolMon = 0.001 + ebTolSubHr = 0.001 + jan1DOW = "THU" + skyModel = "anisotropic" + bldgAzm = 0 + dt = "YES" + heatDsTDbO = 21.2 // °F + coolDsDay = DD1 // coolDsDay + nSubSteps = 6 + wuDays = 15 + awTrigSlr = 0.3 + anTolAbs = 0.03 + anTolRel = 0.003 + auszTol = 0.05 + awTrigT = 15 + awTrigH = 1 + + DELETE Report "eb" // move from end of CSE file + + CONSTRUCTION "cc-Exterior Wall Cons" + + LAYER "cl1-Exterior Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Exterior Wall Cons" + lrMat = "m-Ins-R21-D1.5-SH0.2-C0.02183" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "cl3-Exterior Wall Cons" + lrMat = "m-Insul-R5-D1.5-SH0.35-C0.01667" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "cl4-Exterior Wall Cons" + lrMat = "m-Synthetic Stucco" // Layer material + lrThk = 0.03125 // Thickness (feet), ft + + CONSTRUCTION "fc-Exterior Wall Cons" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 34 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + LAYER "fl1-Exterior Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Exterior Wall Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "fl3-Exterior Wall Cons" + lrMat = "m-Insul-R5-D1.5-SH0.35-C0.01667" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "fl4-Exterior Wall Cons" + lrMat = "m-Synthetic Stucco" // Layer material + lrThk = 0.03125 // Thickness (feet), ft + + CONSTRUCTION "cc-Ceiling Below Attic Cons" + + LAYER "cl1-Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Ceiling Below Attic Cons" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Ceiling Below Attic Cons" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.926282 // Thickness (feet), ft + + CONSTRUCTION "fc-Ceiling Below Attic Cons" + + LAYER "fl1-Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Ceiling Below Attic Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Ceiling Below Attic Cons" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.926282 // Thickness (feet), ft + + CONSTRUCTION "cc-Interior Floor Cons" + + LAYER "cl1-Interior Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Interior Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 35 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + LAYER "cl4-Interior Floor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "fc-Interior Floor Cons" + + LAYER "fl1-Interior Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Interior Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Interior Floor Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.9375 // Thickness (feet), ft + + LAYER "fl4-Interior Floor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "cc-Attic Roof Cons" + + LAYER "cl1-Attic Roof Cons" + lrMat = "m-Ins-R13-D1.5-SH0.2-C0.02244" // Layer material + lrThk = 0.134648 // Thickness (feet), ft + + LAYER "cl2-Attic Roof Cons" + lrMat = "m-Ins-R13-D1.5-SH0.2-C0.02244" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl4-Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl5-Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "fc-Attic Roof Cons" + + LAYER "fl2-Attic Roof Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 36 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + LAYER "fl4-Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl5-Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "cc-Garage Attic Roof Cons" + + LAYER "cl2-Garage Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-Garage Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl4-Garage Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "fc-Garage Attic Roof Cons" + + LAYER "fl1-Garage Attic Roof Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl2-Garage Attic Roof Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Garage Attic Roof Cons" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl4-Garage Attic Roof Cons" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "cc-Ext Floor Cons" + + LAYER "cl1-Ext Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Ext Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-Ext Floor Cons" + lrMat = "m-Ins-R18-D1.5-SH0.2-C0.0162" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 37 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + CONSTRUCTION "fc-Ext Floor Cons" + + LAYER "fl1-Ext Floor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Ext Floor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Ext Floor Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + CONSTRUCTION "cc-Garage Ext Wall Cons" + + LAYER "cl1-Garage Ext Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Garage Ext Wall Cons" + lrMat = "m-VertWallCavity" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Garage Ext Wall Cons" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + + CONSTRUCTION "fc-Garage Ext Wall Cons" + + LAYER "fl1-Garage Ext Wall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Garage Ext Wall Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Garage Ext Wall Cons" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + + CONSTRUCTION "cc-Garage Ceiling Below Attic Cons" + + LAYER "cl1-Garage Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "fc-Garage Ceiling Below Attic Cons" + + LAYER "fl1-Garage Ceiling Below Attic Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 38 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + LAYER "fl2-Garage Ceiling Below Attic Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + CONSTRUCTION "cc-R19 IntFloor Cons" + + LAYER "cl1-R19 IntFloor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-R19 IntFloor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-R19 IntFloor Cons" + lrMat = "m-Ins-R18-D1.5-SH0.2-C0.02546" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "cl4-R19 IntFloor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "fc-R19 IntFloor Cons" + + LAYER "fl1-R19 IntFloor Cons" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-R19 IntFloor Cons" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-R19 IntFloor Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "fl4-R19 IntFloor Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "cc-IntWall Cons" + + LAYER "cl1-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-IntWall Cons" + lrMat = "m-Ins-R21-D1.5-SH0.2-C0.02183" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "cl3-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 39 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + CONSTRUCTION "fc-IntWall Cons" + + LAYER "fl1-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-IntWall Cons" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.458333 // Thickness (feet), ft + + LAYER "fl3-IntWall Cons" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "cc-Interior Floor" + + LAYER "cl1-Interior Floor" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Interior Floor" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl4-Interior Floor" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "fc-Interior Floor" + + LAYER "fl1-Interior Floor" + lrMat = "m-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Interior Floor" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl3-Interior Floor" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.9375 // Thickness (feet), ft + + LAYER "fl4-Interior Floor" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "cc-Garage Ext Wall" + + LAYER "cl1-Garage Ext Wall" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Garage Ext Wall" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 40 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + lrMat = "m-VertWallCavity" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Garage Ext Wall" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + + CONSTRUCTION "fc-Garage Ext Wall" + + LAYER "fl1-Garage Ext Wall" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Garage Ext Wall" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Garage Ext Wall" + lrMat = "m-3 Coat Stucco" // Layer material + lrThk = 0.072917 // Thickness (feet), ft + + CONSTRUCTION "cc-Zone1ToAtticCeiling-AtcEdgWA" + + LAYER "cl1-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.449653 // Thickness (feet), ft + + LAYER "cl3-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl4-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl5-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "fc-Zone1ToAtticCeiling-AtcEdgWA" + + LAYER "fl1-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.449653 // Thickness (feet), ft + + LAYER "fl3-Zone1ToAtticCeiling-AtcEdgWA" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 41 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl4-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl5-Zone1ToAtticCeiling-AtcEdgWA" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "cc-Zone1ToAtticCeiling-AtcEdgWB" + + LAYER "cl1-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.635016 // Thickness (feet), ft + + LAYER "cl4-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.607639 // Thickness (feet), ft + + LAYER "cl5-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl6-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "cl7-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "fc-Zone1ToAtticCeiling-AtcEdgWB" + + LAYER "fl1-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Gypsum Board" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl2-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "fl3-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Ins-R9.1-D1.5-SH0.2-C0.03205" // Layer material + lrThk = 0.635016 // Thickness (feet), ft + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 42 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + LAYER "fl4-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-SoftWood" // Layer material + lrThk = 0.607639 // Thickness (feet), ft + + LAYER "fl5-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-Wood layer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "fl6-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-TileGap" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + LAYER "fl7-Zone1ToAtticCeiling-AtcEdgWB" + lrMat = "m-10 PSF Roof" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + CONSTRUCTION "scn-SlabConsCarpet" + + LAYER "cl1-SNEICCCarpet" + lrMat = "m-SNEICCarpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-SNEICCConcrete" + lrMat = "m-SNEICConcrete" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-SNEICCEarth" + lrMat = "m-SNEICEarth" // Layer material + lrThk = 2 // Thickness (feet), ft + + CONSTRUCTION "scn-SlabConsExposed" + + LAYER "cl1-SNEIXCConcrete" + lrMat = "m-SNEICConcrete" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl2-SNEIXCEarth" + lrMat = "m-SNEICEarth" // Layer material + lrThk = 2 // Thickness (feet), ft + + CONSTRUCTION "c-Zone1DoorFront-dr" + + LAYER "l-Zone1DoorFront-dr" + lrMat = "m-Zone1DoorFront-dr" // Layer material + + CONSTRUCTION "c-Zone1DoorLeft-dr" + + LAYER "l-Zone1DoorLeft-dr" + lrMat = "m-Zone1DoorLeft-dr" // Layer material + + CONSTRUCTION "c-Zone1DoorBack-dr" + + LAYER "l-Zone1DoorBack-dr" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 43 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + lrMat = "m-Zone1DoorBack-dr" // Layer material + + CONSTRUCTION "c-Zone1DoorRight-dr" + + LAYER "l-Zone1DoorRight-dr" + lrMat = "m-Zone1DoorRight-dr" // Layer material + + CONSTRUCTION "c-Zone1ToGarageDoorFront-dr" + + LAYER "l-Zone1ToGarageDoorFront-dr" + lrMat = "m-Zone1ToGarageDoorFront-dr" // Layer material + + CONSTRUCTION "c-GarageCarDoorFront-dr" + + LAYER "l-GarageCarDoorFront-dr" + lrMat = "m-GarageCarDoorFront-dr" // Layer material + + CONSTRUCTION "c-GarageCarDoorLeft-dr" + + LAYER "l-GarageCarDoorLeft-dr" + lrMat = "m-GarageCarDoorLeft-dr" // Layer material + + CONSTRUCTION "c-GarageCarDoorBack-dr" + + LAYER "l-GarageCarDoorBack-dr" + lrMat = "m-GarageCarDoorBack-dr" // Layer material + + CONSTRUCTION "c-GarageCarDoorRight-dr" + + LAYER "l-GarageCarDoorRight-dr" + lrMat = "m-GarageCarDoorRight-dr" // Layer material + + CONSTRUCTION "con-AtticTruss" + + LAYER "lyr-AtticTruss" + lrMat = "m-AtticTruss" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + CONSTRUCTION "con-AtticTruss 41" + + LAYER "lyr-AtticTruss 119" + lrMat = "m-AtticTruss 32" // Layer material + lrThk = 0.0625 // Thickness (feet), ft + + CONSTRUCTION "con-FurnIMass" + + LAYER "cl1-FurnIMass" + lrMat = "IntMassMat-SoftWood" // Layer material + lrThk = 0.208333 // Thickness (feet), ft + + CONSTRUCTION "con-FloorFrmIMass" + + LAYER "cl1-FloorFrmIMass" + lrMat = "IntMassMat-Carpet" // Layer material + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 44 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-FloorFrmIMass" + lrMat = "IntMassMat-WoodLayer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-FloorFrmIMass" + lrMat = "IntMassMat-SoftWood" // Layer material + lrThk = 0.770833 // Thickness (feet), ft + + LAYER "cl4-FloorFrmIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "con-FloorCavIMass" + + LAYER "cl1-FloorCavIMass" + lrMat = "IntMassMat-Carpet" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-FloorCavIMass" + lrMat = "IntMassMat-WoodLayer" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl3-FloorCavIMass" + lrMat = "IntMassMat-Carpet" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "cl4-FloorCavIMass" + lrMat = "IntMassMat-Carpet" // Layer material + lrThk = 0.083333 // Thickness (feet), ft + + LAYER "cl5-FloorCavIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "con-WallFrmIMass" + + LAYER "cl1-WallFrmIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-WallFrmIMass" + lrMat = "IntMassMat-SoftWood" // Layer material + lrThk = 0.291667 // Thickness (feet), ft + + LAYER "cl3-WallFrmIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + CONSTRUCTION "con-WallCavIMass" + + LAYER "cl1-WallCavIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 45 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + lrThk = 0.041667 // Thickness (feet), ft + + LAYER "cl2-WallCavIMass" + lrMat = "IntMassMat-Gypsum" // Layer material + lrThk = 0.041667 // Thickness (feet), ft + + MATERIAL "m-SoftWood" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Steel" + matDens = 489 // Density, lb/ft3 + matSpHt = 0.12 // Specific heat of material, Btu/lb-°F + matCond = 26.2 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-SIPSskin" + matDens = 41 // Density, lb/ft3 + matSpHt = 0.45 // Specific heat of material, Btu/lb-°F + matCond = 0.06127 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Gypsum Board" + matDens = 40 // Density, lb/ft3 + matSpHt = 0.27 // Specific heat of material, Btu/lb-°F + matCond = 0.09167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.000122 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Insul-R5-D1.5-SH0.35-C0.01667" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.35 // Specific heat of material, Btu/lb-°F + matCond = 0.016666 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.00175 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Synthetic Stucco" + matDens = 58 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.2 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Carpet" + matDens = 12.3 // Density, lb/ft3 + matSpHt = 0.34 // Specific heat of material, Btu/lb-°F + matCond = 0.02 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Wood layer" + matDens = 41 // Density, lb/ft3 + matSpHt = 0.45 // Specific heat of material, Btu/lb-°F + matCond = 0.06127 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-TileGap" + matDens = 0.075 // Density, lb/ft3 + matSpHt = 0.24 // Specific heat of material, Btu/lb-°F + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 46 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + matCond = 0.07353 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-10 PSF Roof" + matDens = 120 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-VertWallCavity" + matDens = 0.075 // Density, lb/ft3 + matSpHt = 0.24 // Specific heat of material, Btu/lb-°F + matCond = 0.314 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.00397 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-3 Coat Stucco" + matDens = 116 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.4167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Light Roof" + matDens = 120 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Ins-R21-D1.5-SH0.2-C0.02183" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.021825 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Ins-R9.1-D1.5-SH0.2-C0.03205" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.032051 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.00418 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Ins-R13-D1.5-SH0.2-C0.02244" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.022438 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Ins-R18-D1.5-SH0.2-C0.0162" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.016204 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-Ins-R18-D1.5-SH0.2-C0.02546" + matDens = 1.5 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 0.025463 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.003254 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-SNEICConcrete" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 47 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + matDens = 144 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-SNEICEarth" + matDens = 115 // Density, lb/ft3 + matSpHt = 0.2 // Specific heat of material, Btu/lb-°F + matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-SNEICCarpet" + matDens = 12.3 // Density, lb/ft3 + matSpHt = 0.34 // Specific heat of material, Btu/lb-°F + matCond = 0.02 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Zone1DoorFront-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Zone1DoorLeft-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Zone1DoorBack-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Zone1DoorRight-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-Zone1ToGarageDoorFront-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.01004 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-GarageCarDoorFront-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-GarageCarDoorLeft-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 48 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-GarageCarDoorBack-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-GarageCarDoorRight-dr" + matThk = 0.041667 // Thickness (feet), ft + matDens = 41 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.277778 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "m-AtticTruss" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "m-AtticTruss 32" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "IntMassMat-SoftWood" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "IntMassMat-Carpet" + matDens = 12.3 // Density, lb/ft3 + matSpHt = 0.34 // Specific heat of material, Btu/lb-°F + matCond = 0.02 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + + MATERIAL "IntMassMat-WoodLayer" + matDens = 35 // Density, lb/ft3 + matSpHt = 0.39 // Specific heat of material, Btu/lb-°F + matCond = 0.08167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.0012 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + MATERIAL "IntMassMat-Gypsum" + matDens = 40 // Density, lb/ft3 + matSpHt = 0.27 // Specific heat of material, Btu/lb-°F + matCond = 0.09167 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F + matCondCT = 0.000122 // Coefficient for temperature adjustment of matCond in the forward difference surface conduction model, F(-1) + + METER "MtrElec" + + METER "MtrNatGas" + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 49 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + IZXFER "Zone1ToAtticCeiling-BypassxA" + izNVType = "NONE" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Attic-atc" // Name of secondary zone + izHConst = 0 * 1450 * select(@znRes["Zone1-zn"].prior.H.tAir - @znRes["Attic-atc"].prior.H.tAir > 0., 1., default 0.) // expression describing Conductance between zones, Btu/°F + + IZXFER "Zone1-InfLU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-InfLS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.097875 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-InfLD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-InfHU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-InfHS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.097875 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-InfHD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 50 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + izALo = 0.048938 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-NVLU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 15.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + + IZXFER "Zone1-NVLS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 6.750 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 15.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + + IZXFER "Zone1-NVLD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 15.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + + IZXFER "Zone1-NVHU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 17.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + + IZXFER "Zone1-NVHS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 6.750 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 17.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + + IZXFER "Zone1-NVHD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 51 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + izALo = 0 // Area of low or only vent (typically VentOff), ft2 + izAHi = 3.375 * WINDOWVENTAVAIL // Additional vent area (high vent or VentOn) (expression/formula), ft2 + izHD = 17.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.5 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + + IZXFER "Zone1-xGarageH" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Garage-grg" // Name of secondary zone + izALo = 0.019388 // Area of low or only vent (typically VentOff), ft2 + izHD = 14.95 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-xGarageL" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Garage-grg" // Name of secondary zone + izALo = 0.019388 // Area of low or only vent (typically VentOff), ft2 + izHD = 5.45 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + + IZXFER "Zone1-IAQFanE" + izNVType = "AIRNETEXTFAN" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izVFmin = -88.436853 // Minimum volume flow rate (VentOff mode), cfm + izVFmax = -88.436853 // Maximum volume flow rate (VentOn mode), cfm + izFanVfDs = 88.436853 // Fan design or rated flow at rated pressure, cfm + izFanElecPwr = 0.25 // Fan input power per unit air flow (at design flow and pressure), W/cfm + izFanMtr = "MtrElec" // Name of meter, if any, to record energy used by supply fan (enduse = 'Fan') + izFanEndUse = "FANV" // Enduse to apply fan energy usage to + + IZXFER "Zone1-WHF" + izNVType = "AIRNETIZFAN" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Attic-atc" // Name of secondary zone + izVFmin = 0 // Minimum volume flow rate (VentOff mode), cfm + izVFmax = -904.5 * WINDOWVENTAVAIL * FANVENTAVAIL // expression describing Maximum volume flow rate (VentOn mode), cfm + izFanVfDs = 904.5 // Fan design or rated flow at rated pressure, cfm + izFanElecPwr = 0.14 // Fan input power per unit air flow (at design flow and pressure), W/cfm + izFanMtr = "MtrElec" // Name of meter, if any, to record energy used by supply fan (enduse = 'Fan') + izFanEndUse = "FANC" // Enduse to apply fan energy usage to + + IZXFER "Zone1ToAtticCeiling-xAttic" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Attic-atc" // Name of secondary zone + izALo = 0.599375 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 52 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + IZXFER "Attic-SU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Attic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.675 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Attic-SS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Attic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 1.35 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Attic-SD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Attic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.675 // Area of low or only vent (typically VentOff), ft2 + izHD = 19.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "GarageAttic-SU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "GarageAttic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.1 // Area of low or only vent (typically VentOff), ft2 + izHD = 9.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "GarageAttic-SS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "GarageAttic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 9.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "GarageAttic-SD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "GarageAttic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.1 // Area of low or only vent (typically VentOff), ft2 + izHD = 9.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 53 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + IZXFER "Zone1ToGarageFloorxGarage" + izNVType = "AIRNETIZ" // Choice determining interzone ventilation + izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) + izZn2 = "Garage-grg" // Name of secondary zone + izALo = 0.041649 // Area of low or only vent (typically VentOff), ft2 + izHD = 10.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 1 // Vent discharge coefficient coefficient + izExp = 0.65 // Opening exponent + + IZXFER "Garage-GrgU" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 1.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = 0.6 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Garage-GrgS" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.4 // Area of low or only vent (typically VentOff), ft2 + izHD = 1.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.65 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Garage-GrgD" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 1.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + IZXFER "Garage-GrgDH" + izNVType = "AIRNETEXT" // Choice determining interzone ventilation + izZn1 = "Garage-grg" // Name of primary zone (flow rates > 0 are into the primary zone) + izALo = 0.2 // Area of low or only vent (typically VentOff), ft2 + izHD = 8.7 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft + izNVEff = 0.6 // Vent discharge coefficient coefficient + izCpr = -0.3 // Wind pressure coefficient (for AIRNETEXT) + izExp = 0.65 // Opening exponent + + ZONE "Zone1-zn" + znModel = "CZM" // Zone model (CNE, CSE, CZM, UZM) + znArea = 2700 // Zone area, ft2 + znVol = 24300 // Zone volume, ft3 + znEaveZ = 19.7 // Height of top of the wall in this zone above the ground, ft + znCeilingHt = 9 // Nominal zone ceiling height relative to zone floor (typically 8 ? 10 ft), ft + znFloorZ = 0.7 // Nominal zone floor height relative to arbitrary 0 level, ft + znCAir = 5400 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + znSC = select( $radDiff >1., 0.5, default 0.8 ) // Expression representing zone shade closure + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 54 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + +# #if 0 +0 znTH = 68 +0 znTC = 78 +# #else + znTH = select( $dsDay==1, 70, $dsDay==2, 60, ISSEASONCOOLING, 60, default hourval(65,65,65,65,65,65,66.5,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,65)) // Expression representing heating setpoint, °F + znTC = select( $dsDay==1, 83, $dsDay==2, 78, default hourval(78,78,78,78,78,78,78,83,83,83,83,83,83,82,81,80,79,78,78,78,78,78,78,78)) // Expression representing cooling setpoint, °F +# #endif + znTD = select( $dsDay==1, 77, $dsDay==2, 99, ISSEASONCOOLING, 68, default 77 ) // Expression representing desired setpoint, °F + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + infShld = 4 // Zone local shielding class, used in ELA model + znRSys = "rsys1" // RSYS component conditioning this ZONE + + GAIN "Zone1-znLtg" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Lit" // Internal gain enduse + gnPower = 2.00548 * 2700 * select( $dsDay==1, 0., $ISWEHOL, IntLight_WEH, Default IntLight_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Zone1-znPpl" + gnPower = 7.56254 * 2700 * select( $dsDay==1, 0., default hourval(0.035,0.035,0.035,0.035,0.035,0.059,0.082,0.055,0.027,0.014,0.014,0.014,0.014,0.014,0.019,0.027,0.041,0.055,0.068,0.082,0.082,0.07,0.053,0.035) * choose1($month, 1.19,1.11,1.02,0.93,0.84,0.8,0.82,0.88,0.98,1.07,1.16,1.21)) // Expression representing internal gain power, Btuh + gnFrRad = 0.3 + gnFrLat = 0.427 + + GAIN "Zone1-znTV" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((265 + (31.8 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, TV_WEH, Default TV_WD) * TV_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.4 + + GAIN "Zone1-znSTB" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((76 + (59.4 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, STB_WEH, Default STB_WD) * STB_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Zone1-znComp" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((79 + (55.4 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, Comp_WEH, Default Comp_WD) * Comp_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Zone1-znMEL" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Rcp" // Internal gain enduse + gnPower = ((570 + (198.9 * 4)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, RMEL_WEH, Default RMEL_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.3 + gnFrLat = 0.03 + + GAIN "Zone1-znRefrig" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Refr" // Internal gain enduse + gnPower = (1.64932 * 3412 / 24) * ( select( $isWeHol, RefrConst_WEH, default RefrConst_WD ) + select( $isWeHol, RefrTemp_WEH, default RefrTemp_WD ) * @znRes["Zone1-zn"].prior.H.tAir) // Expression representing internal gain power, Btuh + gnFrRad = 0 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 55 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + GAIN "Zone1-znCookElec" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Cook" // Internal gain enduse + gnPower = 220.612 * select( $dsDay==1, 0., $ISWEHOL, Cook_WEH, Default Cook_WD) * Cook_SM // Expression representing internal gain power, Btuh + gnFrZn = 0.9 + gnFrRad = 0 + gnFrLat = 0.67 + + GAIN "Zone1-znCookGas" + gnMeter = "MtrNatGas" // Meter that tracks internal gain + gnEndUse = "Cook" // Internal gain enduse + gnPower = 4164.38 * select( $dsDay==1, 0., $ISWEHOL, Cook_WEH, Default Cook_WD) * Cook_SM // Expression representing internal gain power, Btuh + gnFrZn = 0.9 + gnFrRad = 0 + gnFrLat = 0.67 + + GAIN "Zone1-znExtLtg" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Ext" // Internal gain enduse + gnPower = (((8 * 1) + (.0532 * 2700)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, ExtLight_WEH, Default ExtLight_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrZn = 0 + + SURFACE "Zone1ToGarageWallFront-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-IntWall Cons" // Surface construction + sfArea = 40 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageWallRight-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-IntWall Cons" // Surface construction + sfArea = 22.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageAtticWall-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-IntWall Cons" // Surface construction + sfArea = 10.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageWallFront-Cav" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 56 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfType = "Wall" // Type of opaque surface + sfCon = "cc-IntWall Cons" // Surface construction + sfArea = 140 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + DOOR "Zone1ToGarageDoorFront-Sim" + drArea = 20 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1ToGarageDoorFront-dr" // Door construction + + SURFACE "Zone1ToGarageWallRight-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-IntWall Cons" // Surface construction + sfArea = 67.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageAtticWall-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-IntWall Cons" // Surface construction + sfArea = 31.5 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToAtticCeiling-Frm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Ceiling Below Attic Cons" // Surface construction + sfArea = 73.091018 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Attic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToAtticCeiling-Cav" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Ceiling Below Attic Cons" // Surface construction + sfArea = 971.066386 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Attic-atc" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToAtticCeiling-WAFrm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Zone1ToAtticCeiling-AtcEdgWA" // Surface construction + sfArea = 5.659789 // Wall area, ft2 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 57 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1ToAtticCeiling-WACav" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Zone1ToAtticCeiling-AtcEdgWA" // Surface construction + sfArea = 75.194336 // Wall area, ft2 + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1ToAtticCeiling-WBFrm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Zone1ToAtticCeiling-AtcEdgWB" // Surface construction + sfArea = 22.749193 // Wall area, ft2 + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1ToAtticCeiling-WBCav" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Zone1ToAtticCeiling-AtcEdgWB" // Surface construction + sfArea = 302.239279 // Wall area, ft2 + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallFront-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallLeft-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallBack-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 58 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallRight-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Exterior Wall Cons" // Surface construction + sfArea = 133.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Zone1WallFront-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinFront-NoScrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + WINDOW "Zone1WinFront-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorFront-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 59 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + drCon = "c-Zone1DoorFront-dr" // Door construction + + SURFACE "Zone1WallLeft-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinLeft-NoScrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + WINDOW "Zone1WinLeft-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorLeft-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1DoorLeft-dr" // Door construction + + SURFACE "Zone1WallBack-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinBack-NoScrn" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 60 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + WINDOW "Zone1WinBack-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorBack-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1DoorBack-dr" // Door construction + + SURFACE "Zone1WallRight-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Exterior Wall Cons" // Surface construction + sfArea = 539.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + WINDOW "Zone1WinRight-NoScrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "None" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 61 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + WINDOW "Zone1WinRight-Scrn" + wnArea = 67.5 // Area, ft2 + wnHeight = 5 // Height, ft + wnWidth = 3 // Width, ft + wnMult = 1 // Multiplier + wnModel = "ASHWAT" // Window model + wnFMult = 0.85 // F? multiplier + wnNGlz = 2 // Number of glazing layers + wnUnfrc = 0.3 // NFRC U-factor, Btuh/ft2-°F + wnSHGC = 0.23 // NFRC solar heat gain coefficient + wnDirtLoss = 0.1 // Dirt loss factor + wnExShd = "Inscrn" // Exterior shade type + wnInShd = "DrapeMed" // Interior shade type + + DOOR "Zone1DoorRight-Sim" + drArea = 5 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-Zone1DoorRight-dr" // Door construction + + SURFACE "Zone1ToGarageFloor-Frm" + sfType = "Floor" // Type of opaque surface + sfCon = "fc-R19 IntFloor Cons" // Surface construction + sfArea = 20 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1ToGarageFloor-Cav" + sfType = "Floor" // Type of opaque surface + sfCon = "cc-R19 IntFloor Cons" // Surface construction + sfArea = 180 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Garage-grg" // Zone that lies on the other side of this surface + + SURFACE "Zone1Slab-Prm" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsCarpet" // Surface construction + sfArea = 204.8 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0551 // Surface ??? + sfExCTaDbAvgYr = 0.0028 // Surface ??? + sfExCTaDbAvg14 = 0.0852 // Surface ??? + sfExRConGrnd = 5.267 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Zone1Slab-Int" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsCarpet" // Surface construction + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 62 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfArea = 795.2 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0446 // Surface ??? + sfExCTaDbAvgYr = 0.0238 // Surface ??? + sfExRConGrnd = 5.267 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Zone1Slab-Prm 35" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 51.2 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0737 // Surface ??? + sfExCTaDbAvgYr = 0.0014 // Surface ??? + sfExCTaDbAvg14 = 0.1692 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Zone1Slab-Int 36" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 198.8 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0521 // Surface ??? + sfExCTaDbAvgYr = 0.0251 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "Furniture-imass" + sfType = "Wall" // Type of opaque surface + sfCon = "con-FurnIMass" // Surface construction + sfArea = 5400 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "FloorFrm-imass" + sfType = "Floor" // Type of opaque surface + sfCon = "con-FloorFrmIMass" // Surface construction + sfArea = 125 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "FloorCav-imass" + sfType = "Floor" // Type of opaque surface + sfCon = "con-FloorCavIMass" // Surface construction + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 63 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfArea = 1125 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "WallFrm-imass" + sfType = "Wall" // Type of opaque surface + sfCon = "con-WallFrmIMass" // Surface construction + sfArea = 675 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + SURFACE "WallCav-imass" + sfType = "Wall" // Type of opaque surface + sfCon = "con-WallCavIMass" // Surface construction + sfArea = 2025 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "Zone1-zn" // Zone that lies on the other side of this surface + + ZONE "Garage-grg" + znModel = "UZX" // Zone model (CNE, CSE, CZM, UZM) + znArea = 440 // Zone area, ft2 + znVol = 3960 // Zone volume, ft3 + znEaveZ = 9.7 // Height of top of the wall in this zone above the ground, ft + znFloorZ = 0.7 // Nominal zone floor height relative to arbitrary 0 level, ft + znCAir = 0.01 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + + GAIN "Garage-grgLtg" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Lit" // Internal gain enduse + gnPower = ((20 + (.0063 * 2700)) * 3412/365) * 1 * select( $dsDay==1, 0., $ISWEHOL, IntLight_WEH, Default IntLight_WD) * Other_SM // Expression representing internal gain power, Btuh + gnFrRad = 0.2 + + GAIN "Garage-grgRefrig" + gnMeter = "MtrElec" // Meter that tracks internal gain + gnEndUse = "Refr" // Internal gain enduse + gnPower = ((4 * 71) * 3412/8760) * 1 * ( select( $isWeHol, RefrConst_WEH, default RefrConst_WD ) + select( $isWeHol, RefrTemp_WEH, default RefrTemp_WD ) * @znRes["Garage-grg"].prior.H.tAir) // Expression representing internal gain power, Btuh + gnFrRad = 0 + + SURFACE "GarageToGarageAttic-Frm" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Ceiling Below Attic Cons" // Surface construction + sfArea = 16.8 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "GarageToGarageAttic-Cav" + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 64 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Ceiling Below Attic Cons" // Surface construction + sfArea = 223.2 // Wall area, ft2 + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "AdjZn" // Exterior condition description + sfAdjZn = "GarageAttic-atc" // Zone that lies on the other side of this surface + + SURFACE "GarageWallFront-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallLeft-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallBack-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallRight-Frm" + sfType = "Wall" // Type of opaque surface + sfCon = "fc-Garage Ext Wall" // Surface construction + sfArea = 22.375 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageWallFront-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorFront-Sim" + drArea = 32 // Area, ft2 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 65 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorFront-dr" // Door construction + + SURFACE "GarageWallLeft-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorLeft-Sim" + drArea = 32 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorLeft-dr" // Door construction + + SURFACE "GarageWallBack-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorBack-Sim" + drArea = 32 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorBack-dr" // Door construction + + SURFACE "GarageWallRight-Cav" + sfType = "Wall" // Type of opaque surface + sfCon = "cc-Garage Ext Wall" // Surface construction + sfArea = 99.125 // Wall area, ft2 + sfTilt = 90 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.5 // Surface exterior solar absorptivity + sfModel = "Forward_Difference" // Modeling option + + DOOR "GarageCarDoorRight-Sim" + drArea = 32 // Area, ft2 + drModel = "Forward_Difference" // Modeling option + drCon = "c-GarageCarDoorRight-dr" // Door construction + + SURFACE "GarageSlab-Prm" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 108 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0737 // Surface ??? + sfExCTaDbAvgYr = 0.0014 // Surface ??? + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 66 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfExCTaDbAvg14 = 0.1692 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + SURFACE "GarageSlab-Int" + sfType = "Floor" // Type of opaque surface + sfCon = "scn-SlabConsExposed" // Surface construction + sfArea = 332 // Wall area, ft2 + sfTilt = 180 // Surface tilt, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Ground" // Exterior condition description + sfExCTGrnd = 0.0521 // Surface ??? + sfExCTaDbAvgYr = 0.0251 // Surface ??? + sfExRConGrnd = 3.187 // Surface ??? + sfInHcModel = "Unified" // Surface ??? + + ZONE "Attic-atc" + znModel = "UZX" // Zone model (CNE, CSE, CZM, UZM) + znArea = 1044.157404 // Zone area, ft2 + znVol = 2761.133984 // Zone volume, ft3 + znEaveZ = 19.7 // Height of top of the wall in this zone above the ground, ft + znCAir = 0.01 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + infShld = 4 // Zone local shielding class, used in ELA model + + SURFACE "Attic-atc-rfNF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfNC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfEF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 67 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfEC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfSF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfSC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfWF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Attic Roof Cons" // Surface construction + sfArea = 19.795484 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfWC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Attic Roof Cons" // Surface construction + sfArea = 262.997146 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 68 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "Attic-atc-rfT1" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss" // Surface construction + sfArea = 696.104936 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "Attic-atc-rfT2" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss" // Surface construction + sfArea = 696.104936 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "Attic-atc-rfT3" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss" // Surface construction + sfArea = 696.104936 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + ZONE "GarageAttic-atc" + znModel = "UZX" // Zone model (CNE, CSE, CZM, UZM) + znArea = 240 // Zone area, ft2 + znVol = 258.19889 // Zone volume, ft3 + znEaveZ = 9.7 // Height of top of the wall in this zone above the ground, ft + znCAir = 0.01 // Zone 'air' heat capacity: represents heat capacity of air, furniture, 'light' walls, and everything in zone except nonQUICK surfaces + infAC = 0 // Zone infiltration air changes per hour, 1/hr + infELA = 0 // Zone effective leakage area (ELA), in2 + infShld = 4 // Zone local shielding class, used in ELA model + + SURFACE "GarageAttic-atc-rfNF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfNC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 69 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 0 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfEF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfEC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 90 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfSF" + sfType = "Ceiling" // Type of opaque surface + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfSC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 180 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfWF" + sfType = "Ceiling" // Type of opaque surface + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 70 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + sfCon = "fc-Garage Attic Roof Cons" // Surface construction + sfArea = 4.55 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfWC" + sfType = "Ceiling" // Type of opaque surface + sfCon = "cc-Garage Attic Roof Cons" // Surface construction + sfArea = 60.45 // Wall area, ft2 + sfTilt = 22.619865 // Surface tilt, deg + sfAzm = 270 // Surface azimuth, deg + sfExAbs = 0.8 // Surface exterior solar absorptivity + sfExEpsLW = 0.85 // Surface exterior long wave (thermal) emittance + sfInEpsLW = 0.9 // Surface interior long wave (thermal) emittance + sfModel = "Forward_Difference" // Modeling option + + SURFACE "GarageAttic-atc-rfT1" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss 41" // Surface construction + sfArea = 160 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "GarageAttic-atc-rfT2" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss 41" // Surface construction + sfArea = 160 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + SURFACE "GarageAttic-atc-rfT3" + sfType = "Wall" // Type of opaque surface + sfCon = "con-AtticTruss 41" // Surface construction + sfArea = 160 // Wall area, ft2 + sfAzm = 0 // Surface azimuth, deg + sfModel = "Forward_Difference" // Modeling option + sfExCnd = "Adiabatic" // Exterior condition description + + // RSYS + // based on NEEP data for Daikin LV series mini-split + // AHRI Cert # 5265758 + +# #define HEATCAPF 1 + RSYS "rsys1" + rsType = "VCHP2" // System type + rsFChg = 0.96 // Refrigerant charge adjustment factor + rsSEER = 22 // Cooling SEER + rsEER = 13.5 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 71 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + rsVfPerTon = 350 // CFM per Ton (default = 350) + rsFanPwrH = 0.45 // Heating fan power. Heating air flow is estimated based on a 50 ?F temperature rise. + rsFanPwrC = 0.45 // Cooling fan power. + rsAdjForFanHt = No + rsParElec = ($tdboHrAv < 50) * 40 // Parasitic electric use, W + rsDefrostModel = "RevCycleAux" // Modeling options for ASHP outdoor coil defrosting + rsFxCapH = 1.466667 // Heating sizing factor + rsHSPF = 11 // ratio of BTU heat output over the heating season to watt-hours of electricity used, ratio + rsCap115 = 41846.2 // Total cooling capacity (@ 115°F), Btuh + rsCapC = 48000 // Total rated cooling capacity (@ 95°F), Btuh + rsCap82 = 52000 // Total rated cooling capacity (@ 82°F), Btuh + rsCap47 = 46000*HEATCAPF // Total rated heating capacity (@ 47°F), Btuh + rsCap17 = 42500*HEATCAPF // Total rated heating capacity (@ 17°F), Btuh + rsCap05 = 31130*HEATCAPF // Total rated heating capacity (@ 5°F), Btuh + rsCapAuxH = 50000 + // rsCtrlAuxH = CYCLE = default + rsCOP115 = 2.16013 // ratio of cooling provided over the electrical energy consumed (@ 115°F), ratio + rsCOP95 = 3.7 // ratio of cooling provided over the electrical energy consumed (@ 95°F), ratio + rsCOP82 = 5.9 // ratio of cooling provided over the electrical energy consumed (@ 82°F), ratio + rsCOP47 = 3.7 // ratio of heating provided over the electrical energy consumed (@ 47°F), ratio + rsCOP17 = 2.6 // ratio of heating provided over the electrical energy consumed (@ 17°F), ratio + rsCOP05 = 2.32 // ratio of heating provided over the electrical energy consumed (@ 5°F), ratio + rsCOPMin115 = 1.66728 // ratio of cooling provided over the elec energy consumed @ minimum 115°F capacity, ratio + rsCOPMin95 = 4 // ratio of cooling provided over the elec energy consumed @ minimum 95°F capacity, ratio + rsCOPMin82 = 7.7 // ratio of cooling provided over the elec energy consumed @ minimum 82°F capacity, ratio + rsCOPMin47 = 4.45 // ratio of heating provided over the elec energy consumed @ minimum 47°F capacity, ratio + rsCOPMin17 = 2.72 // ratio of heating provided over the elec energy consumed @ minimum 17°F capacity, ratio + rsCOPMin05 = 2.24 // ratio of heating provided over the elec energy consumed @ minimum 5°F capacity, ratio + rsLoadFMin115 = 0.523333 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 115°F), ratio + rsLoadFMin95 = 0.523333 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 95°F), ratio + rsLoadFMin82 = 0.269231 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 82°F), ratio + rsLoadFMin47 = 0.26087 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 47°F), ratio + rsLoadFMin17 = 0.489176 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 17°F), ratio + rsLoadFMin05 = 0.512046 // turndown ratio -- lowest capacity fraction handled via compressor speed reduction (@ 5°F), ratio + rsOAVType = "None" // OAV system type + rsElecMtr = "MtrElec" // Electric use meter + rsFuelMtr = "MtrNatGas" // Natural gas use meter + + +# #if 1 +# #if !defined( DUCTAF) +# #define DUCTAF 1 +# #endif +# #if !defined( DUCTR) +# #define DUCTR 4 +# #endif +# #if !defined( DUCTLF) +# #define DUCTLF 1 +# #endif + + DUCTSEG "SupplyDuct1" + dsTy = "SUPPLY" + dsInArea = DUCTAF*473.85 + dsDiameter = 0.666667 + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 72 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + +# #if 0 +0 dsExCnd = SpecifiedT +0 dsExT = 30 +# #else + dsAdjZn = "Attic-atc" +# #endif + dsInsulR = DUCTR + dsLeakF = 0.1 * DUCTLF + + DUCTSEG "ReturnDuct1" + dsTy = "RETURN" + dsInArea = DUCTAF*270 + dsDiameter = 1.333333 + dsAdjZn = "Attic-atc" + dsInsulR = DUCTR + dsLeakF = .1 * DUCTLF +# #endif + + REPORT rpType=MTR rpMeter = MtrElec rpFreq=MONTH + +# #define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ +# RXCOL colHead=WhenHead colVal=when colWid=3 \ +# RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ +# RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ +# RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ +# RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ +# RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ +# RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ +# RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ +# RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ +# RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ +# RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ +# RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ +# RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ +# RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ +# RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ +# RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ +# RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ +# RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 73 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + +# RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ +# RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + + REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYS -- Aux Cycle / Def RevCyc" + SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.000001,3) + REPORT rpType=UDT rpFreq=YEAR rpHeader = No + SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.000001,3) + +# #define TPERFCOLS( RXCOL, whenHead, when, X, F, dp, mtr, rs, zn) \ +# RXCOL colHead=WhenHead colVal=when colWid=3 \ +# RXCOL colHead="eHtg" colVal=@METER[ mtr].X.htg*F colDec=dp colWid=6 \ +# RXCOL colHead="eHPBU" colVal=@METER[ mtr].X.HPBU*F colDec=dp colWid=6 \ +# RXCOL colHead="eFanH" colVal=@METER[ mtr].X.fanH*F colDec=dp colWid=6 \ +# RXCOL colHead="eHTot" colVal=(@METER[ mtr].X.htg+@METER[ mtr].X.HPBU+@METER[ mtr].X.fanH+@RSysRes[rs].X.ehParasitic)*F colDec=dp colWid=6 \ +# RXCOL colHead="qhZone" colVal=@ZnRes[zn].X.qshHVAC*F colDec=dp colWid=6 \ +# RXCOL colHead="COPH" colVal=@ZnRes[zn].X.qshHVAC / max(1.,@METER[ mtr].X.htg+@METER[ mtr].X.HPBU+@METER[ mtr].X.fanH+@RSysRes[rs].X.ehParasitic) colDec=dp colWid=6 \ +# RXCOL colHead="eHTot2" colVal=@RsysRes[ rs].X.ehTot*F colDec=dp colWid=6 \ +# RXCOL colHead="qhZone2" colVal=@RsysRes[ rs].X.qhZoneSen*F colDec=dp colWid=6 \ +# RXCOL colHead="COPH2" colVal=@RsysRes[ rs].X.qhZoneSen/max(1.,@RsysRes[ rs].X.ehTot) colDec=dp colWid = 6 \ +# RXCOL colHead="eClg" colVal=(@METER[ mtr].X.clg+@METER[ mtr].X.fanC+@RSysRes[rs].X.ecParasitic)*F colDec=dp colWid=10 \ +# RXCOL colHead="qcZone" colVal=@ZnRes[zn].X.qcMech*F colDec=dp colWid=6 \ +# RXCOL colHead="COPC" colVal=-@ZnRes[zn].X.qcMech / max(1.,@METER[ mtr].X.clg+@METER[ mtr].X.fanC+@RSysRes[rs].X.ecParasitic) colDec=dp colWid=6 \ +# RXCOL colHead="eClg2" colVal=@RsysRes[ rs].X.ecTot*F colDec=dp colWid=6 \ +# RXCOL colHead="qcZone2" colVal=(@RsysRes[ rs].X.qcZoneSen+@RsysRes[ rs].X.qcZoneLat)*F colDec=dp colWid=6 \ +# RXCOL colHead="COPC2" colVal=-(@RsysRes[ rs].X.qcZoneSen+@RsysRes[ rs].X.qcZoneLat)/max(1.,@RsysRes[ rs].X.ecTot) colDec=dp colWid = 6 \ +# RXCOL colHead="ParErr" colVal=@METER[ mtr].X.aux - @RsysRes[ rs].X.ehParasitic - @RsysRes[ rs].X.ecParasitic - @RsysRes[ rs].X.evParasitic colDec=dp colWid = 6 + + REPORT ENUSEMO rpType=UDT rpFreq=MONTH rpTitle = "RSYS -- Aux Cycle / Def RevCyc" + TPERFCOLS( REPORTCOL,"Mon",@Top.monstr,M,.000001,3,MtrElec, 1, 1) + REPORT rpType=UDT rpFreq=YEAR rpHeader = No + TPERFCOLS( REPORTCOL,"","Yr",Y,.000001,3,MtrElec, 1, 1) + + REPORT ENUSEHR rpType=UDT rpFreq=HOUR rpTitle = "RSYS -- Aux Cycle / Def RevCyc" rpDayBeg=Jan 1 rpDayEnd=Jan 3 + TPERFCOLS( REPORTCOL,"Hr",$hour,H,.001,3,MtrElec, 1, 1) + + + +# #define SYSINFCOOL( s) REPORT rpType = UDT rpFreq=Year rpTitle="HVAC Cooling Info" rpCPL=-1 \ +# REPORTCOL colVal = s colHead="Sys #" colDec=0 colWid=5 \ +# REPORTCOL colVal = @Rsys[s].name colHead="System" colDec=0 colWid=24 \ +# REPORTCOL colVal = @Rsys[s].Cap115 colHead="Cap115" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].Cap95 colHead="Cap95" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].Cap82 colHead="Cap82" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COP115 colHead="COP115" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COP95 colHead="COP95" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COP82 colHead="COP82" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COPmin115 colHead="COPm115" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COPmin95 colHead="COPm95" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COPmin82 colHead="COPm82" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].SEER colHead="SEER" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].EER95 colHead="EER95" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].SEERnfX colHead="SEERnfX" colDec=2 colWid=7 \ + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 74 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + +# REPORTCOL colVal = @Rsys[s].EERnfX colHead="EERnfX" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].cdC colHead="CdC" colDec=3 colWid=4 \ +# REPORTCOL colVal = @Rsys[s].vfPerTon colHead="vfPerTon" colDec=0 colWid=8 \ +# REPORTCOL colVal = @Rsys[s].fanPwrC colHead="fanPwrC" colDec=3 colWid=7 \ +# REPORTCOL colVal = @Rsys[s].fanHeatC colHead="fanElecC" colDec=2 colWid=8 + SYSINFCOOL( 1) + +# #define SYSINFHEAT( s) REPORT rpType = UDT rpFreq=Year rpTitle="HVAC Heating Info" rpCPL=-1 \ +# REPORTCOL colVal = s colHead="Sys #" colDec=0 colWid=5 \ +# REPORTCOL colVal = @Rsys[s].name colHead="System" colDec=0 colWid=24 \ +# REPORTCOL colVal = @Rsys[s].Cap47 colHead="Cap47" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].Cap35 colHead="Cap35" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].Cap17 colHead="Cap17" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].Cap05 colHead="Cap05" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COP47 colHead="COP47" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COP35 colHead="COP35" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COP17 colHead="COP17" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COP05 colHead="COP05" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COPmin47 colHead="COPm47" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COPmin35 colHead="COPm35" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COPmin17 colHead="COPm17" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].COPmin05 colHead="COPm05" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].HSPF colHead="HSPF" colDec=2 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].cdH colHead="CdH" colDec=3 colWid=4 \ +# REPORTCOL colVal = @Rsys[s].CapH colHead="CapH" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].CapAuxH colHead="AuxH" colDec=0 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].AFUE colHead="AFUE" colDec=3 colWid=6 \ +# REPORTCOL colVal = @Rsys[s].fanPwrH colHead="fanPwrH" colDec=3 colWid=7 \ +# REPORTCOL colVal = @Rsys[s].fanHeatH colHead="fanElecH" colDec=2 colWid=8 + + SYSINFHEAT( 1) + +# #if 0 +0 // columns for all DUCTSEGRES values (conduction, leakage / supply, return, total) +# #define DUCTCOLS( RXCOL, s, r, t, X, f, WhenHead, When) \ +# RXCOL colHead=WhenHead colVal=when colWid=3 \ +# RXCOL colHead="ShCond" colVal=@DUCTSEGRES[ s].X.qhCond*f colWid=6 colDec=0 \ +# RXCOL colHead="ShLk" colVal=@DUCTSEGRES[ s].X.qhLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="ShTot" colVal=@DUCTSEGRES[ s].X.qhTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="ScCond" colVal=@DUCTSEGRES[ s].X.qcCond*f colWid=6 colDec=0 \ +# RXCOL colHead="ScLkS" colVal=@DUCTSEGRES[ s].X.qcLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="ScTotS" colVal=@DUCTSEGRES[ s].X.qcTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="ScLkL" colVal=@DUCTSEGRES[ s].X.qcLeakLat*f colWid=6 colDec=0 \ +# RXCOL colHead="RhCond" colVal=@DUCTSEGRES[ r].X.qhCond*f colWid=6 colDec=0 \ +# RXCOL colHead="RhLk" colVal=@DUCTSEGRES[ r].X.qhLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="RhTot" colVal=@DUCTSEGRES[ r].X.qhTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="RcCond" colVal=@DUCTSEGRES[ r].X.qcCond*f colWid=6 colDec=0 \ +# RXCOL colHead="RcLkS" colVal=@DUCTSEGRES[ r].X.qcLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="RcTotS" colVal=@DUCTSEGRES[ r].X.qcTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="RcLkL" colVal=@DUCTSEGRES[ r].X.qcLeakLat*f colWid=6 colDec=0 \ +# RXCOL colHead="ThCond" colVal=@DUCTSEGRES[ t].X.qhCond*f colWid=6 colDec=0 \ +# RXCOL colHead="ThLk" colVal=@DUCTSEGRES[ t].X.qhLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="ThTot" colVal=@DUCTSEGRES[ t].X.qhTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="TcCond" colVal=@DUCTSEGRES[ t].X.qcCond*f colWid=6 colDec=0 \ + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 75 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + +# RXCOL colHead="TcLkS" colVal=@DUCTSEGRES[ t].X.qcLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="TcTotS" colVal=@DUCTSEGRES[ t].X.qcTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="TcLkL" colVal=@DUCTSEGRES[ t].X.qcLeakLat*f colWid=6 colDec=0 +0 +0 REPORT rpType=UDT rpFreq=subhour rpDayBeg=(HD1)-1 rpDayEnd=(HD1)+1 rpCpl=-1 +0 DUCTCOLS( Reportcol, 1, 2, 3, S, 1, "SH", $subhour) +0 +0 REPORT rpType=UDT rpFreq=month +0 DUCTCOLS( Reportcol, 1, 2, 3, M, .001, "Mon", @Top.monStr) +0 REPORT rpType=UDT rpFreq=Year rpHeader = No +0 DUCTCOLS( Reportcol, 1, 2, 3, Y, .001, "", "Yr") +# #endif + + // report columns: system <-> duct <-> zone energy balance +# #define DUCTCOLX( RXCOL, X, zn, rs, dctSup, dctRet, dctTot, f, WhenHead, When) \ +# RXCOL colHead=WhenHead colVal=when colWid=3 \ +# RXCOL colHead="Tzn" colVal=@ZNRES[zn].X.tAir colWid=6 colDec=2 \ +# RXCOL colHead="ShCond" colVal=@DUCTSEGRES[ dctTot].X.qhCond*f colWid=10 colDec=0 \ +# RXCOL colHead="ShLk" colVal=@DUCTSEGRES[ dctTot].X.qhLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="ShTot" colVal=@DUCTSEGRES[ dctTot].X.qhTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="QhSys" colVal=@RSYSRES[ rs].X.qhNet*f colWid=6 colDec=0 \ +# RXCOL colHead="QhZn" colVal=@ZNRES[ zn].X.qshHvac*f colWid=6 colDec=0 \ +# RXCOL colHead="QhBal" colVal=(@RSYSRES[ rs].X.qhNet-@ZNRES[ zn].X.qshHvac-@DUCTSEGRES[ dctTot].X.qhTotSen)*f colWid=6 colDec=0 \ +# RXCOL colHead="ScCond" colVal=@DUCTSEGRES[ dctTot].X.qcCond*f colWid=12 colDec=0 \ +# RXCOL colHead="ScLkS" colVal=@DUCTSEGRES[ dctTot].X.qcLeakSen*f colWid=6 colDec=0 \ +# RXCOL colHead="ScLkL" colVal=@DUCTSEGRES[ dctTot].X.qcLeakLat*f colWid=6 colDec=0 \ +# RXCOL colHead="ScTotS" colVal=@DUCTSEGRES[ dctTot].X.qcTotSen*f colWid=6 colDec=0 \ +# RXCOL colHead="QcSys" colVal=@RSYSRES[ rs].X.qcSenNet*f colWid=6 colDec=0 \ +# RXCOL colHead="QcZn" colVal=@ZNRES[ zn].X.qscHVAC*f colWid=6 colDec=0 \ +# RXCOL colHead="QcBal" colVal=(@RSYSRES[ rs].X.qcSenNet-@ZNRES[ zn].X.qscHvac-@DUCTSEGRES[ dctTot].X.qcTotSen)*f colWid=6 colDec=0 + + REPORT rpType=UDT rpFreq=month rpTitle="Duct / system / zone energy balance" + DUCTCOLX( Reportcol,M, 1, 1, 1, 2, 3, .001, "Mon", @Top.monStr) + ENDREPORT + REPORT rpType=UDT rpFreq=Year rpHeader = No + DUCTCOLX( Reportcol,Y,1, 1, 1, 2, 3, .001, "", "Yr") + ENDREPORT + + REPORT rpType=UDT rpFreq=subhour rpDayBeg=(HD1)-1 rpDayEnd=(HD1)+1 rpCpl=-1 rpTitle="Duct / system / zone energy balance" + DUCTCOLX( Reportcol,S, 1, 1, 1, 2, 3, 1, "SH", $subhour) + ENDREPORT + + + // report columns: RSYS heating subhour details +# #define SYSCOLSH( RXCOL, rs, zn, zat, dctTot) \ +# RXCOL colHead="mon" colVal=$Month colWid=3 \ +# RXCOL colHead="day" colVal=$Dayofmonth colWid=3 \ +# RXCOL colHead="Hr" colVal=@Top.iHr colWid=2 \ +# RXCOL colHead="Sh" colVal=@Top.iSubHr colWid=2 \ +# RXCOL colHead="ToDb" colVal=@Top.tDbOSh colWid=5 colDec=2 \ +# RXCOL colHead="Tatt" colVal=@Zone[zat].tz colWid=5 colDec=2 \ +# RXCOL colHead="Tzn" colVal=@Zone[zn].tz colWid=5 colDec=2 \ +# RXCOL colHead="Tent" colVal=@RSYS[ rs].asIn.tDb colWid=6 colDec=2 \ +# RXCOL colHead="Tlv" colVal=@RSYS[ rs].asOut.tDb colWid=6 colDec=2 \ + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 76 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + +# RXCOL colHead="Tsup" colVal=@RSYS[ rs].asSup.tDb colWid=6 colDec=2 \ +# RXCOL colHead="UnMet" colVal=@ZnRes[zn].S.unMetHdH colWid=5 colDec=2 \ +# RXCOL colHead="capFS" colVal=@RSYS[ rs].capHt colWid=5 colDec=0 \ +# RXCOL colHead="capMS" colVal=@RSYS[ rs].capHtMin colWid=5 colDec=0 \ +# RXCOL colHead="znLd" colVal=@RSYS[ rs].znLoad[ 0] colWid=5 colDec=0 \ +# RXCOL colHead="loadF" colVal=@RSYS[ rs].loadF colWid=5 colDec=3 \ +# RXCOL colHead="PLR" colVal=@RSYS[ rs].PLR colWid=5 colDec=3 \ +# RXCOL colHead="spdF" colVal=@RSYS[ rs].speedF colWid=5 colDec=3 \ +# RXCOL colHead="runF" colVal=@RSYS[ rs].runF colWid=5 colDec=3 \ +# RXCOL colHead="PLF" colVal=@RSYS[ rs].plf colWid=5 colDec=3 \ +# RXCOL colHead="runFAux" colVal=@RSYS[ rs].runFAux colWid=7 colDec=3 \ +# RXCOL colHead="CFMav" colVal=@Zone[ zn].rsAmfSup/4.5 colWid=5 colDec=1 \ +# RXCOL colHead="qComp" colVal=@RSYS[ rs].outSen colWid=6 colDec=0 \ +# RXCOL colHead="qAux" colVal=@RSYS[ rs].outAux colWid=6 colDec=0 \ +# RXCOL colHead="qDef" colVal=@RSYS[ rs].outDefrost colWid=5 colDec=0 \ +# RXCOL colHead="qFan" colVal=@RSYS[ rs].outFan colWid=5 colDec=0 \ +# RXCOL colHead="qNet" colVal=@RSYS[ rs].outSenTot colWid=6 colDec=0 \ +# RXCOL colHead="qDct" colVal=-@DUCTSEGRES[ dctTot].S.qhTotSen/@Top.subhrDur colWid=6 colDec=0 \ +# RXCOL colHead="qZn" colVal=@Zone[zn].qsHVAC colWid=6 colDec=0 \ +# RXCOL colHead="qBal1" colVal=@RSYS[ rs].outSenTot-@Zone[zn].qsHVAC colWid=5 colDec=0 \ +# RXCOL colHead="qBal2" colVal=(@RSYSRES[ rs].S.qhNet-@ZNRES[ zn].S.qshHvac-@DUCTSEGRES[ dctTot].S.qhTotSen)/@Top.subhrDur colWid=6 colDec=0 \ +# RXCOL colHead="eComp" colVal=@RSYS[rs].inPrimary colWid=5 colDec=0 \ +# RXCOL colHead="eTot" colVal=@RSYSRES[rs].S.ehTot / @Top.subhrDur colWid=6 colDec = 0 \ +# RXCOL colHead="COPfs" colVal=@RSYS[ rs].effHt colWid=5 colDec=3 \ +# RXCOL colHead="COPpl" colVal=@RSYS[ rs].COPHtAdj colWid=5 colDec=3 \ +# RXCOL colHead="COPov" colVal=abs( @Zone[zn].qsHVAC)/max( 1, @RSYS[rs].inPrimary+@RSYS[rs].inAux+@RSYS[rs].inDefrost+@RSYS[rs].inFan) colWid=5 colDec=3 + + REPORT rpType=UDT rpFreq=subhour rpDayBeg=(HD1)-1 rpDayEnd=(HD1)+1 rpCpl=-1 rpTitle="RSYS Heating subhour details" + SYSCOLSH( Reportcol, 1, 1, "Attic-atc", 3) + + // report columns: RSYS cooling subhour details +# #define SYSCOLSC( RXCOL, rs, zn, zat, dctTot) \ +# RXCOL colHead="mon" colVal=$Month colWid=3 \ +# RXCOL colHead="day" colVal=$Dayofmonth colWid=3 \ +# RXCOL colHead="Hr" colVal=@Top.iHr colWid=2 \ +# RXCOL colHead="Sh" colVal=@Top.iSubHr colWid=2 \ +# RXCOL colHead="ToDb" colVal=@Top.tDbOSh colWid=5 colDec=2 \ +# RXCOL colHead="Tatt" colVal=@Zone[zat].tz colWid=5 colDec=2 \ +# RXCOL colHead="Tzn" colVal=@Zone[zn].tz colWid=5 colDec=2 \ +# RXCOL colHead="Tent" colVal=@RSYS[ rs].asIn.tDb colWid=6 colDec=2 \ +# RXCOL colHead="Tlv" colVal=@RSYS[ rs].asOut.tDb colWid=6 colDec=2 \ +# RXCOL colHead="Tsup" colVal=@RSYS[ rs].asSup.tDb colWid=6 colDec=2 \ +# RXCOL colHead="UnMet" colVal=@ZnRes[zn].S.unMetCdH colWid=5 colDec=2 \ +# RXCOL colHead="znLd" colVal=@RSYS[ rs].znLoad[ 0] colWid=6 colDec=0 \ +# RXCOL colHead="loadF" colVal=@RSYS[ rs].loadF colWid=5 colDec=3 \ +# RXCOL colHead="PLR" colVal=@RSYS[ rs].PLR colWid=5 colDec=3 \ +# RXCOL colHead="runF" colVal=@RSYS[ rs].runF colWid=5 colDec=3 \ +# RXCOL colHead="spdF" colVal=@RSYS[ rs].speedF colWid=5 colDec=3 \ +# RXCOL colHead="PLF" colVal=@RSYS[ rs].plf colWid=5 colDec=3 \ +# RXCOL colHead="CFMav" colVal=@Zone[ zn].rsAmfSup/4.5 colWid=5 colDec=1 \ +# RXCOL colHead="SHR" colVal=@RSYS[ rs].shr colWid=4 colDec=3 \ +# RXCOL colHead="capSen" colVal=@RSYS[rs].capSenCt colWid=6 colDec=0 \ +# RXCOL colHead="capLat" colVal=@RSYS[rs].capLatCt colWid=6 colDec=0 \ +# RXCOL colHead="capTot" colVal=@RSYS[rs].capTotCt colWid=6 colDec=0 \ + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 77 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + +# RXCOL colHead="qSCoil" colVal=@RSYS[ rs].outSen colWid=6 colDec=0 \ +# RXCOL colHead="qSFan" colVal=@RSYS[ rs].outFan colWid=5 colDec=0 \ +# RXCOL colHead="qSNet" colVal=@RSYS[ rs].outSenTot colWid=6 colDec=0 \ +# RXCOL colHead="qSDct" colVal=@DuctSegRes[ dctTot].S.qcTotSen/@Top.subhrDur colWid=5 colDec=0 \ +# RXCOL colHead="qsZn1" colVal=@ZnRes[zn].S.qscHVAC/@Top.subhrDur colWid=6 colDec=0 \ +# RXCOL colHead="qsZn2" colVal=@Zone[ zn].qsHVAC colWid=6 colDec=0 \ +# RXCOL colHead="qBal1" colVal=@RSYS[ rs].outSenTot-@Zone[zn].qsHVAC colWid=5 colDec=0 \ +# RXCOL colHead="qBal2" colVal=(@RSYSRES[ rs].S.qcSenNet-@ZNRES[ zn].S.qscHvac-@DUCTSEGRES[ dctTot].S.qcTotSen)/@Top.subhrDur colWid=6 colDec=0 \ +# RXCOL colHead="qLat1" colVal=@RSYS[ rs].outLat colWid=6 colDec=0 \ +# RXCOL colHead="qLat2" colVal=@ZnRes[zn].S.qlMech/@Top.subhrDur colWid=6 colDec=0 \ +# RXCOL colHead="qtZn" colVal=(@ZnRes[zn].S.qscHvac+@ZnRes[zn].S.qlMech)/@Top.subhrDur colWid=6 colDec=0 \ +# RXCOL colHead="eComp" colVal=@RSYS[rs].inPrimary colWid=5 colDec=0 \ +# RXCOL colHead="eTot" colVal=@RSYSRES[rs].S.ecTot / @Top.subhrDur colWid=6 colDec = 0 \ +# RXCOL colHead="COPspl" colVal=@RSYS[ rs].effCt colWid=6 colDec=3 \ +# RXCOL colHead="COPov" colVal=(abs(@ZnRes[zn].S.qscHvac+@ZnRes[zn].S.qlMech)/@Top.subhrDur)/max( 1, @RSYS[rs].inPrimary+@RSYS[rs].inFan) colWid=5 colDec=3 + + + REPORT rpType=UDT rpFreq=subhour rpDayBeg=(DD1)-1 rpDayEnd=(DD1)+1 rpCpl=-1 rpTitle="RSYS cooling subhour details" + SYSCOLSC( Reportcol, 1, 1, "Attic-atc", 3) + + +# #if 0 +0 // repeat subhour info to CSV file +0 EXPORT exType=UDT exFreq=subhour exDayBeg=(HD1)-1 exDayEnd=(HD1)+1 +0 SYSCOLSH( Exportcol, 1, 1, "Attic-atc", 3) +0 +0 EXPORT exType=UDT exFreq=subhour exDayBeg=(DD1)-1 exDayEnd=(DD1)+1 +0 SYSCOLSC( Exportcol, 1, 1, "Attic-atc", 3) +# #endif + + RUN + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 001 Sat 01-Jan-22 2:52:38 pm Page 78 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 002: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 55 subhours of run. + Total condensation heat = 0.0549509 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.775 0 0.269 0.168 0 0 0 0 0.0555 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.401 0 1.090 0.728 0 0 0 0 0.221 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.316 0 1.133 0.586 0 0 0 0 0.232 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.604 0 0.711 0.594 0 0 0 0 0.152 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.327 0 0.0841 0.0312 0 0 0 0 0.0172 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.311 0 0.0825 0.0773 0 0 0 0 0.0182 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Alt / Def RevCycleAux + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 70.154 2.897 1.022 0.0231 0.145 0.0555 1.246 0 0 0 0 0 0 0 0 0 0 0.269 0.0231 0.145 0.0555 0.0359 0.528 0 0 0 0 0 0 0 0.875 -.0073 0 0 0 0 + Dec 269.66 11.517 3.979 0.152 0.576 0.221 4.928 0 0 0 0 0 0 0 0 0 0 1.090 0.152 0.576 0.221 0.0605 2.099 0 0 0 0 0 0 0 3.607 -.0274 0 0 0 0 + Jan 298.46 10.079 4.365 0.0816 0.504 0.232 5.183 0 0 0 0 0 0 0 0 0 0 1.133 0.0816 0.504 0.232 0.0760 2.026 0 0 0 0 0 0 0 3.813 -.0311 0 0 0 0 + Feb 177.11 10.525 2.681 0.0680 0.526 0.152 3.427 0 0 0 0 0 0 0 0 0 0 0.711 0.0680 0.526 0.152 0.0498 1.508 0 0 0 0 0 0 0 2.488 -.0181 0 0 0 0 + Mar 24.467 0.620 0.338 .00019 0.0310 0.0172 0.386 0 0 0 0 0 0 0 0 0 0 0.0841 .00019 0.0310 0.0172 .00887 0.141 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 20.637 1.412 0.314 .00668 0.0706 0.0182 0.410 0 0 0 0 0 0 0 0 0 0 0.0825 .00668 0.0706 0.0182 0.0180 0.196 0 0 0 0 0 0 0 0.289 -.0015 0 0 0 0 + + Yr 860.49 37.051 12.699 0.332 1.853 0.696 15.580 0 0 0 0 0 0 0 0 0 0 3.369 0.332 1.853 0.696 0.249 6.499 0 0 0 0 0 0 0 11.337 -.0893 0 0 0 0 + + + +RSYS -- Aux Alt / Def RevCycleAux + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.269 0.168 0.0555 0.528 0.875 1.658 0.528 0.875 1.658 0 0 0 0 0 0 0 + Dec 1.090 0.728 0.221 2.099 3.607 1.718 2.099 3.607 1.718 0 0 0 0 0 0 -.0078 + Jan 1.133 0.586 0.232 2.026 3.813 1.882 2.026 3.813 1.882 0 0 0 0 0 0 0 + Feb 0.711 0.594 0.152 1.508 2.488 1.650 1.508 2.488 1.650 0 0 0 0 0 0 -.0039 + Mar 0.0841 0.0312 0.0172 0.141 0.265 1.875 0.141 0.265 1.875 0 0 0 0 0 0 -.0020 + Apr 0.0825 0.0773 0.0182 0.196 0.289 1.474 0.196 0.289 1.474 0 0 0 0 0 0 -.0020 + + Yr 3.369 2.185 0.696 6.499 11.337 1.745 6.499 11.337 1.745 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 79 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Alt / Def RevCycleAux for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.770 0 0.335 2.241 4.702 2.098 2.241 4.702 2.098 0 0 0 0 0 0 -0.000 + 8 6.157 8.333 1.466 16.093 25.380 1.577 16.093 25.380 1.577 0 0 0 0 0 0 -0.000 + 9 4.708 0 0.891 5.735 14.016 2.444 5.735 14.016 2.444 0 0 0 0 0 0 -0.000 + 10 3.934 0 0.764 4.834 11.600 2.400 4.834 11.600 2.400 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.148 9.800 2.362 4.148 9.800 2.362 0 0 0 0 0 0 -0.000 + 12 2.899 0 0.595 3.630 8.453 2.329 3.630 8.453 2.329 0 0 0 0 0 0 -0.000 + 13 2.362 0 0.502 3.000 7.081 2.360 3.000 7.081 2.360 0 0 0 0 0 0 -0.000 + 14 1.979 0 0.401 2.379 5.690 2.391 2.379 5.690 2.391 0 0 0 0 0 0 0 + 15 1.975 0 0.400 2.375 5.699 2.399 2.375 5.699 2.399 0 0 0 0 0 0 0 + 16 1.963 0 0.397 2.360 5.691 2.412 2.360 5.691 2.412 0 0 0 0 0 0 0 + 17 1.979 0 0.401 2.379 5.775 2.427 2.379 5.775 2.427 0 0 0 0 0 0 0 + 18 1.953 0 0.394 2.347 5.705 2.431 2.347 5.705 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.383 5.444 2.285 2.383 5.444 2.285 0 0 0 0 0 0 -0.000 + 20 1.835 0 0.365 2.336 5.361 2.295 2.336 5.361 2.295 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.503 2.315 2.376 5.503 2.315 0 0 0 0 0 0 -0.000 + 22 2.074 0 0.418 2.628 6.183 2.353 2.628 6.183 2.353 0 0 0 0 0 0 -0.000 + 23 2.386 0 0.482 3.004 7.159 2.383 3.004 7.159 2.383 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def RevCycleAux for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.425 0.841 0.804 6.207 12.548 2.021 6.207 12.548 2.021 0 0 0 0 0 0 -0.000 + 8 5.573 17.499 1.660 24.869 30.268 1.217 24.869 30.268 1.217 0 0 0 0 0 0 -0.000 + 9 5.909 0.853 1.028 7.926 17.176 2.167 7.926 17.176 2.167 0 0 0 0 0 0 -0.000 + 10 4.409 0.480 0.804 5.829 12.966 2.224 5.829 12.966 2.224 0 0 0 0 0 0 -0.000 + 11 3.666 0.307 0.694 4.804 10.933 2.276 4.804 10.933 2.276 0 0 0 0 0 0 -0.000 + 12 3.214 0 0.629 3.979 9.671 2.430 3.979 9.671 2.430 0 0 0 0 0 0 -0.000 + 13 2.285 0 0.477 2.899 7.225 2.493 2.899 7.225 2.493 0 0 0 0 0 0 -0.000 + 14 2.010 0 0.408 2.554 6.193 2.424 2.554 6.193 2.424 0 0 0 0 0 0 -0.000 + 15 1.936 0 0.390 2.463 5.949 2.415 2.463 5.949 2.415 0 0 0 0 0 0 -0.000 + 16 1.339 0 0.252 1.728 3.858 2.233 1.728 3.858 2.233 0 0 0 0 0 0 -0.000 + 17 1.799 0 0.357 2.293 5.470 2.386 2.293 5.470 2.386 0 0 0 0 0 0 -0.000 + 18 1.978 0 0.399 2.514 6.176 2.457 2.514 6.176 2.457 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 80 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.106 0.0676 0.409 2.719 6.356 2.338 2.719 6.356 2.338 0 0 0 0 0 0 -0.000 + 20 2.387 0.411 0.450 3.384 7.117 2.103 3.384 7.117 2.103 0 0 0 0 0 0 -0.000 + 21 2.661 0.598 0.498 3.894 7.969 2.047 3.894 7.969 2.047 0 0 0 0 0 0 -0.000 + 22 2.914 0.772 0.545 4.367 8.831 2.022 4.367 8.831 2.022 0 0 0 0 0 0 -0.000 + 23 3.298 1.058 0.617 5.109 10.104 1.978 5.109 10.104 1.978 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def RevCycleAux for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.597 0.122 0.0834 0.939 1.319 1.405 0.939 1.319 1.405 0 0 0 0 0 0 -0.000 + 6 1.733 0.357 0.248 2.474 3.943 1.594 2.474 3.943 1.594 0 0 0 0 0 0 -0.000 + 7 7.837 9.988 1.533 19.494 27.144 1.392 19.494 27.144 1.392 0 0 0 0 0 0 -0.000 + 8 4.771 32.019 2.028 38.955 39.125 1.004 38.955 39.125 1.004 0 0 0 0 0 0 -0.000 + 9 7.224 2.146 1.139 10.647 19.525 1.834 10.647 19.525 1.834 0 0 0 0 0 0 -0.000 + 10 3.479 0.926 0.627 5.168 10.042 1.943 5.168 10.042 1.943 0 0 0 0 0 0 -0.000 + 11 1.878 0.239 0.344 2.597 5.358 2.063 2.597 5.358 2.063 0 0 0 0 0 0 -0.000 + 12 1.405 0 0.253 1.795 3.856 2.149 1.795 3.856 2.149 0 0 0 0 0 0 -0.000 + 13 0.908 0 0.162 1.207 2.464 2.042 1.207 2.464 2.042 0 0 0 0 0 0 -0.000 + 14 0.433 0 0.0740 0.643 1.115 1.733 0.643 1.115 1.733 0 0 0 0 0 0 -0.000 + 15 0.0364 0 .00601 0.179 0.0899 0.502 0.179 0.0899 0.502 0 0 0 0 0 0 -0.000 + 16 0.0243 0 .00402 0.165 0.0594 0.361 0.165 0.0594 0.361 0 0 0 0 0 0 -0.000 + 17 0.613 0 0.107 0.856 1.576 1.841 0.856 1.576 1.841 0 0 0 0 0 0 -0.000 + 18 1.706 0.0614 0.315 2.219 4.707 2.122 2.219 4.707 2.122 0 0 0 0 0 0 -0.000 + 19 2.235 0.443 0.408 3.223 6.306 1.957 3.223 6.306 1.957 0 0 0 0 0 0 -0.000 + 20 2.692 0.761 0.485 4.075 7.667 1.881 4.075 7.667 1.881 0 0 0 0 0 0 -0.000 + 21 2.952 0.916 0.536 4.541 8.554 1.884 4.541 8.554 1.884 0 0 0 0 0 0 -0.000 + 22 3.290 1.158 0.600 5.185 9.667 1.864 5.185 9.667 1.864 0 0 0 0 0 0 -0.000 + 23 3.665 1.363 0.672 5.836 10.937 1.874 5.836 10.937 1.874 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 40140 42500 31130 3.70 2.91 2.60 2.32 4.45 3.03 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 81 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 254 111 365 1246 875 6 0 0 0 0 0 0 0 + Dec 67.53 896 410 1306 4928 3607 15 0 0 0 0 0 0 0 + Jan 67.52 938 416 1355 5183 3813 15 0 0 0 0 0 0 0 + Feb 67.64 628 297 925 3427 2488 14 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 386 265 2 0 0 0 0 0 0 0 + Apr 69.33 80 38 118 410 289 3 0 0 0 0 0 0 0 + + Yr 68.43 2884 1304 4188 15580 11337 55 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 82 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 82 38 120 451 330 -0 0 0 0 0 0 0 0 + 1 65.00 90 43 133 501 368 0 0 0 0 0 0 0 0 + 2 65.00 104 49 152 578 425 0 0 0 0 0 0 0 0 + 3 65.00 116 55 170 645 475 0 0 0 0 0 0 0 0 + 4 65.00 128 61 188 714 525 -0 0 0 0 0 0 0 0 + 5 65.00 141 67 208 788 580 0 0 0 0 0 0 0 0 + 6 65.00 158 75 233 882 649 -0 0 0 0 0 0 0 0 + 1 65.96 636 831 1467 8692 7005 220 0 0 0 0 0 0 0 + 2 66.50 588 706 1294 7203 5792 117 0 0 0 0 0 0 0 + 3 66.50 529 332 861 3957 3096 0 0 0 0 0 0 0 0 + 4 66.50 523 336 860 3968 3108 0 0 0 0 0 0 0 0 + 5 66.50 536 351 887 3988 3101 0 0 0 0 0 0 0 0 + 6 66.50 529 322 851 3719 2868 0 0 0 0 0 0 0 0 + 1 67.11 622 809 1431 8692 7122 139 0 0 0 0 0 0 0 + 2 67.56 634 819 1453 8692 7135 104 0 0 0 0 0 0 0 + 3 67.90 621 797 1418 8692 7195 79 0 0 0 0 0 0 0 + 4 68.00 545 639 1184 7045 5841 21 0 0 0 0 0 0 0 + 5 68.00 539 548 1087 6122 5034 0 0 0 0 0 0 0 0 + 6 68.00 538 496 1034 5543 4509 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 83 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 542 436 978 4924 3946 0 0 0 0 0 0 0 0 + 2 68.00 534 376 910 4355 3445 0 0 0 0 0 0 0 0 + 3 68.00 529 324 854 3832 2979 0 0 0 0 0 0 0 0 + 4 68.00 524 281 805 3402 2597 -0 0 0 0 0 0 0 0 + 5 68.00 519 245 764 3031 2267 0 0 0 0 0 0 0 0 + 6 68.00 513 212 726 2695 1970 0 0 0 0 0 0 0 0 + 1 68.00 508 193 701 2498 1797 0 0 0 0 0 0 0 0 + 2 68.00 485 171 656 2255 1599 0 0 0 0 0 0 0 0 + 3 68.00 436 152 588 2004 1416 0 0 0 0 0 0 0 0 + 4 68.00 399 136 535 1804 1269 0 0 0 0 0 0 0 0 + 5 68.00 362 122 484 1608 1125 0 0 0 0 0 0 0 0 + 6 68.00 327 108 435 1425 990 -0 0 0 0 0 0 0 0 + 1 68.00 318 104 422 1364 942 0 0 0 0 0 0 0 0 + 2 68.00 290 93 383 1221 837 0 0 0 0 0 0 0 0 + 3 68.00 262 83 346 1089 743 0 0 0 0 0 0 0 0 + 4 68.00 236 74 310 963 652 0 0 0 0 0 0 0 0 + 5 68.00 212 65 278 851 573 0 0 0 0 0 0 0 0 + 6 68.00 185 57 242 736 494 0 0 0 0 0 0 0 0 + 1 68.00 202 62 264 799 535 0 0 0 0 0 0 0 0 + 2 68.00 180 55 236 711 475 0 0 0 0 0 0 0 0 + 3 68.00 157 48 205 619 414 0 0 0 0 0 0 0 0 + 4 68.00 136 42 178 535 358 0 0 0 0 0 0 0 0 + 5 68.00 116 36 152 456 304 -0 0 0 0 0 0 0 0 + 6 68.00 96 29 126 376 250 -0 0 0 0 0 0 0 0 + 1 68.00 60 18 78 233 155 0 0 0 0 0 0 0 0 + 2 68.00 37 11 49 144 96 -0 0 0 0 0 0 0 0 + 3 68.00 15 5 20 58 39 -0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 84 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 7 2 10 27 17 -0 0 0 0 0 0 0 0 + 1 68.00 73 22 95 262 167 0 0 0 0 0 0 0 0 + 2 68.00 80 24 104 287 182 0 0 0 0 0 0 0 0 + 3 68.00 97 29 126 348 222 0 0 0 0 0 0 0 0 + 4 68.00 107 32 139 381 242 0 0 0 0 0 0 0 0 + 5 68.00 117 35 152 417 265 0 0 0 0 0 0 0 0 + 6 68.00 133 40 173 475 302 0 0 0 0 0 0 0 0 + 1 68.00 133 40 172 472 299 0 0 0 0 0 0 0 0 + 2 68.00 149 44 194 530 336 0 0 0 0 0 0 0 0 + 3 68.00 162 48 210 572 362 -0 0 0 0 0 0 0 0 + 4 68.00 179 53 232 632 400 0 0 0 0 0 0 0 0 + 5 68.00 191 57 247 672 425 -0 0 0 0 0 0 0 0 + 6 68.00 207 61 269 731 462 0 0 0 0 0 0 0 0 + 1 68.00 232 69 301 817 517 0 0 0 0 0 0 0 0 + 2 68.00 249 74 323 877 554 0 0 0 0 0 0 0 0 + 3 68.00 265 78 343 934 591 0 0 0 0 0 0 0 0 + 4 68.00 276 82 358 977 619 0 0 0 0 0 0 0 0 + 5 68.00 290 86 376 1028 652 0 0 0 0 0 0 0 0 + 6 68.00 301 90 391 1076 686 0 0 0 0 0 0 0 0 + 1 68.00 326 99 425 1182 758 0 0 0 0 0 0 0 0 + 2 68.00 336 103 439 1234 794 0 0 0 0 0 0 0 0 + 3 68.00 345 107 452 1282 830 0 0 0 0 0 0 0 0 + 4 68.00 353 111 464 1331 867 0 0 0 0 0 0 0 0 + 5 68.00 361 116 477 1380 903 0 0 0 0 0 0 0 0 + 6 68.00 368 120 488 1426 938 0 0 0 0 0 0 0 0 + 1 68.00 405 133 538 1584 1046 0 0 0 0 0 0 0 0 + 2 68.00 413 137 550 1633 1083 0 0 0 0 0 0 0 0 + 3 68.00 418 141 558 1676 1118 0 0 0 0 0 0 0 0 + 4 68.00 424 144 568 1723 1155 0 0 0 0 0 0 0 0 + 5 68.00 430 148 578 1768 1190 0 0 0 0 0 0 0 0 + 6 68.00 434 152 585 1807 1222 -0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 85 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 49 23 72 242 170 -0 0 0 0 0 0 0 0 + 4 65.00 121 56 177 595 418 0 0 0 0 0 0 0 0 + 5 65.00 139 65 204 690 486 0 0 0 0 0 0 0 0 + 6 65.00 154 73 227 775 548 -0 0 0 0 0 0 0 0 + 1 65.95 715 903 1618 8692 6855 219 0 0 0 0 0 0 0 + 2 66.50 664 778 1442 7245 5684 119 0 0 0 0 0 0 0 + 3 66.50 591 350 940 3868 2927 0 0 0 0 0 0 0 0 + 4 66.50 585 359 943 3915 2972 0 0 0 0 0 0 0 0 + 5 66.50 600 386 986 4027 3041 0 0 0 0 0 0 0 0 + 6 66.50 592 356 948 3776 2828 0 0 0 0 0 0 0 0 + 1 67.12 689 870 1558 8692 6992 142 0 0 0 0 0 0 0 + 2 67.58 698 877 1575 8692 7011 107 0 0 0 0 0 0 0 + 3 67.94 681 850 1531 8692 7079 82 0 0 0 0 0 0 0 + 4 68.00 602 638 1240 6587 5335 12 0 0 0 0 0 0 0 + 5 68.00 594 562 1155 5871 4715 -0 0 0 0 0 0 0 0 + 6 68.00 591 503 1094 5281 4187 0 0 0 0 0 0 0 0 + 1 68.00 592 440 1032 4692 3660 0 0 0 0 0 0 0 0 + 2 68.00 584 378 962 4127 3165 0 0 0 0 0 0 0 0 + 3 68.00 578 328 905 3653 2748 0 0 0 0 0 0 0 0 + 4 68.00 570 284 854 3241 2387 0 0 0 0 0 0 0 0 + 5 68.00 564 247 811 2893 2082 0 0 0 0 0 0 0 0 + 6 68.00 557 216 773 2595 1822 -0 0 0 0 0 0 0 0 + 1 68.00 534 198 733 2411 1679 0 0 0 0 0 0 0 0 + 2 68.00 482 177 659 2157 1499 0 0 0 0 0 0 0 0 + 3 68.00 435 158 593 1930 1337 0 0 0 0 0 0 0 0 + 4 68.00 394 141 535 1720 1186 0 0 0 0 0 0 0 0 + 5 68.00 358 126 484 1541 1057 -0 0 0 0 0 0 0 0 + 6 68.00 323 112 436 1371 935 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 86 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 350 119 470 1454 985 0 0 0 0 0 0 0 0 + 2 68.00 325 108 433 1324 891 0 0 0 0 0 0 0 0 + 3 68.00 296 97 393 1190 797 -0 0 0 0 0 0 0 0 + 4 68.00 269 86 355 1063 708 0 0 0 0 0 0 0 0 + 5 68.00 244 76 320 947 626 -0 0 0 0 0 0 0 0 + 6 68.00 217 66 283 827 544 0 0 0 0 0 0 0 0 + 1 68.00 215 65 280 812 532 -0 0 0 0 0 0 0 0 + 2 68.00 196 59 255 735 480 0 0 0 0 0 0 0 0 + 3 68.00 176 53 228 660 432 0 0 0 0 0 0 0 0 + 4 68.00 156 47 203 587 385 0 0 0 0 0 0 0 0 + 5 68.00 139 41 180 522 342 0 0 0 0 0 0 0 0 + 6 68.00 122 36 158 458 300 -0 0 0 0 0 0 0 0 + 1 68.00 85 25 110 319 209 0 0 0 0 0 0 0 0 + 2 68.00 66 20 86 248 163 0 0 0 0 0 0 0 0 + 3 68.00 47 14 61 177 116 0 0 0 0 0 0 0 0 + 4 68.00 31 9 40 114 75 0 0 0 0 0 0 0 0 + 5 68.00 15 5 20 56 37 0 0 0 0 0 0 0 0 + 6 68.00 1 0 1 4 2 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 68 20 88 254 166 -0 0 0 0 0 0 0 0 + 5 68.00 137 41 178 511 333 0 0 0 0 0 0 0 0 + 6 68.00 152 45 197 572 375 0 0 0 0 0 0 0 0 + 1 68.00 151 45 196 570 374 0 0 0 0 0 0 0 0 + 2 68.00 176 53 229 668 439 -0 0 0 0 0 0 0 0 + 3 68.00 196 61 257 761 504 0 0 0 0 0 0 0 0 + 4 68.00 214 68 282 851 569 -0 0 0 0 0 0 0 0 + 5 68.00 231 76 307 945 638 0 0 0 0 0 0 0 0 + 6 68.00 247 83 330 1039 708 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 87 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 247 84 331 1048 717 0 0 0 0 0 0 0 0 + 2 68.00 256 87 343 1093 750 0 0 0 0 0 0 0 0 + 3 68.00 264 90 354 1131 777 0 0 0 0 0 0 0 0 + 4 68.00 272 93 366 1175 809 0 0 0 0 0 0 0 0 + 5 68.00 279 96 375 1206 832 0 0 0 0 0 0 0 0 + 6 68.00 287 99 386 1249 862 0 0 0 0 0 0 0 0 + 1 68.00 300 105 406 1315 909 0 0 0 0 0 0 0 0 + 2 68.00 305 108 413 1344 931 0 0 0 0 0 0 0 0 + 3 68.00 314 112 426 1395 969 -0 0 0 0 0 0 0 0 + 4 68.00 318 115 433 1422 989 0 0 0 0 0 0 0 0 + 5 68.00 327 119 446 1472 1027 0 0 0 0 0 0 0 0 + 6 68.00 330 121 451 1495 1044 0 0 0 0 0 0 0 0 + 1 68.00 349 127 476 1569 1093 0 0 0 0 0 0 0 0 + 2 68.00 355 128 483 1585 1102 -0 0 0 0 0 0 0 0 + 3 68.00 360 129 489 1597 1108 0 0 0 0 0 0 0 0 + 4 68.00 365 130 495 1606 1111 -0 0 0 0 0 0 0 0 + 5 68.00 370 130 500 1613 1113 0 0 0 0 0 0 0 0 + 6 68.00 374 131 505 1615 1110 -0 0 0 0 0 0 0 0 + 1 68.00 404 141 545 1746 1200 0 0 0 0 0 0 0 0 + 2 68.00 410 143 553 1772 1219 0 0 0 0 0 0 0 0 + 3 68.00 414 145 559 1796 1236 0 0 0 0 0 0 0 0 + 4 68.00 415 145 560 1800 1240 0 0 0 0 0 0 0 0 + 5 68.00 417 146 563 1819 1256 0 0 0 0 0 0 0 0 + 6 68.00 419 147 566 1834 1269 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 88 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 18 8 26 91 65 -0 0 0 0 0 0 0 0 + 2 65.00 100 46 146 509 364 0 0 0 0 0 0 0 0 + 3 65.00 113 52 165 577 412 0 0 0 0 0 0 0 0 + 4 65.00 125 58 183 644 461 0 0 0 0 0 0 0 0 + 5 65.00 139 64 203 714 511 0 0 0 0 0 0 0 0 + 6 65.00 153 71 224 786 562 0 0 0 0 0 0 0 0 + 1 65.96 682 873 1555 8692 6917 220 0 0 0 0 0 0 0 + 2 66.50 634 743 1377 7185 5692 117 0 0 0 0 0 0 0 + 3 66.50 565 339 905 3884 2980 0 0 0 0 0 0 0 0 + 4 66.50 560 352 912 3962 3050 0 0 0 0 0 0 0 0 + 5 66.50 574 379 953 4084 3130 -0 0 0 0 0 0 0 0 + 6 66.50 567 349 916 3823 2907 0 0 0 0 0 0 0 0 + 1 67.10 660 844 1504 8692 7050 138 0 0 0 0 0 0 0 + 2 67.54 670 851 1521 8692 7069 102 0 0 0 0 0 0 0 + 3 67.88 654 826 1480 8692 7135 77 0 0 0 0 0 0 0 + 4 68.00 579 692 1271 7316 6019 26 0 0 0 0 0 0 0 + 5 68.00 572 587 1159 6284 5126 0 0 0 0 0 0 0 0 + 6 68.00 568 531 1099 5722 4624 0 0 0 0 0 0 0 0 + 1 68.00 569 467 1036 5097 4061 0 0 0 0 0 0 0 0 + 2 68.00 563 408 971 4545 3574 0 0 0 0 0 0 0 0 + 3 68.00 558 356 913 4035 3122 -0 0 0 0 0 0 0 0 + 4 68.00 552 319 871 3680 2809 0 0 0 0 0 0 0 0 + 5 68.00 548 289 837 3386 2549 0 0 0 0 0 0 0 0 + 6 68.00 544 265 809 3156 2347 0 0 0 0 0 0 0 0 + 1 68.00 542 259 800 3098 2298 -0 0 0 0 0 0 0 0 + 2 68.00 538 244 782 2960 2178 0 0 0 0 0 0 0 0 + 3 68.00 535 233 768 2850 2082 -0 0 0 0 0 0 0 0 + 4 68.00 533 223 756 2748 1993 -0 0 0 0 0 0 0 0 + 5 68.00 531 215 745 2663 1918 0 0 0 0 0 0 0 0 + 6 68.00 530 206 736 2572 1836 -0 0 0 0 0 0 0 0 + 1 68.00 529 207 736 2588 1852 0 0 0 0 0 0 0 0 + 2 68.00 526 202 728 2536 1809 0 0 0 0 0 0 0 0 + 3 68.00 523 197 720 2488 1768 0 0 0 0 0 0 0 0 + 4 68.00 521 192 713 2439 1726 0 0 0 0 0 0 0 0 + 5 68.00 519 185 704 2370 1666 0 0 0 0 0 0 0 0 + 6 68.00 514 179 693 2311 1618 -0 0 0 0 0 0 0 0 + 1 68.00 503 170 673 2222 1549 0 0 0 0 0 0 0 0 + 2 68.00 483 163 646 2122 1476 -0 0 0 0 0 0 0 0 + 3 68.00 466 155 622 2044 1422 0 0 0 0 0 0 0 0 + 4 68.00 447 148 595 1947 1353 0 0 0 0 0 0 0 0 + 5 68.00 431 141 572 1869 1298 0 0 0 0 0 0 0 0 + 6 68.00 411 134 544 1770 1225 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 89 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 371 120 490 1601 1111 0 0 0 0 0 0 0 0 + 2 68.00 347 112 459 1500 1041 -0 0 0 0 0 0 0 0 + 3 68.00 325 104 429 1395 966 0 0 0 0 0 0 0 0 + 4 68.00 304 97 402 1299 897 -0 0 0 0 0 0 0 0 + 5 68.00 288 92 380 1221 841 -0 0 0 0 0 0 0 0 + 6 68.00 270 86 356 1141 785 0 0 0 0 0 0 0 0 + 1 68.00 240 76 316 1006 690 0 0 0 0 0 0 0 0 + 2 68.00 221 69 290 917 626 -0 0 0 0 0 0 0 0 + 3 68.00 203 63 265 832 567 -0 0 0 0 0 0 0 0 + 4 68.00 187 58 246 768 523 0 0 0 0 0 0 0 0 + 5 68.00 179 56 235 734 499 0 0 0 0 0 0 0 0 + 6 68.00 173 53 226 706 479 0 0 0 0 0 0 0 0 + 1 68.00 174 54 228 710 482 0 0 0 0 0 0 0 0 + 2 68.00 176 54 230 716 486 -0 0 0 0 0 0 0 0 + 3 68.00 174 54 228 709 480 0 0 0 0 0 0 0 0 + 4 68.00 168 52 220 683 463 -0 0 0 0 0 0 0 0 + 5 68.00 160 49 210 652 442 -0 0 0 0 0 0 0 0 + 6 68.00 151 47 198 613 416 0 0 0 0 0 0 0 0 + 1 68.00 104 32 136 423 287 0 0 0 0 0 0 0 0 + 2 68.00 92 28 120 374 253 0 0 0 0 0 0 0 0 + 3 68.00 83 25 108 335 227 0 0 0 0 0 0 0 0 + 4 68.00 89 27 116 360 244 0 0 0 0 0 0 0 0 + 5 68.00 110 34 144 444 300 0 0 0 0 0 0 0 0 + 6 68.00 131 40 171 527 356 0 0 0 0 0 0 0 0 + 1 68.00 183 56 239 740 502 0 0 0 0 0 0 0 0 + 2 68.00 208 64 272 846 573 -0 0 0 0 0 0 0 0 + 3 68.00 230 71 301 946 645 -0 0 0 0 0 0 0 0 + 4 68.00 251 77 329 1035 706 0 0 0 0 0 0 0 0 + 5 68.00 268 82 350 1107 757 0 0 0 0 0 0 0 0 + 6 68.00 281 87 368 1170 801 0 0 0 0 0 0 0 0 + 1 68.00 293 91 384 1222 838 0 0 0 0 0 0 0 0 + 2 68.00 300 94 394 1262 868 0 0 0 0 0 0 0 0 + 3 68.00 306 96 401 1293 892 0 0 0 0 0 0 0 0 + 4 68.00 312 98 411 1332 921 0 0 0 0 0 0 0 0 + 5 68.00 317 100 417 1360 943 0 0 0 0 0 0 0 0 + 6 68.00 323 103 426 1397 971 0 0 0 0 0 0 0 0 + 1 68.00 309 100 409 1357 948 0 0 0 0 0 0 0 0 + 2 68.00 314 103 418 1401 983 0 0 0 0 0 0 0 0 + 3 68.00 320 107 427 1445 1018 0 0 0 0 0 0 0 0 + 4 68.00 324 110 434 1488 1054 -0 0 0 0 0 0 0 0 + 5 68.00 328 113 441 1530 1089 0 0 0 0 0 0 0 0 + 6 68.00 332 117 449 1577 1127 0 0 0 0 0 0 0 0 + 1 68.00 326 116 442 1568 1125 0 0 0 0 0 0 0 0 + 2 68.00 329 118 447 1598 1151 0 0 0 0 0 0 0 0 + 3 68.00 332 121 453 1630 1177 0 0 0 0 0 0 0 0 + 4 68.00 335 123 458 1661 1202 0 0 0 0 0 0 0 0 + 5 68.00 338 126 465 1695 1230 0 0 0 0 0 0 0 0 + 6 68.00 341 129 470 1725 1255 -0 0 0 0 0 0 0 0 + 1 68.00 350 131 481 1758 1277 0 0 0 0 0 0 0 0 + 2 68.00 352 131 483 1759 1275 0 0 0 0 0 0 0 0 + 3 68.00 353 131 483 1755 1272 0 0 0 0 0 0 0 0 + 4 68.00 355 131 486 1759 1273 0 0 0 0 0 0 0 0 + 5 68.00 355 130 486 1747 1261 -0 0 0 0 0 0 0 0 + 6 68.00 356 129 485 1744 1259 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 90 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 366 135 501 1809 1309 0 0 0 0 0 0 0 0 + 2 68.00 367 136 503 1834 1331 0 0 0 0 0 0 0 0 + 3 68.00 367 138 506 1858 1353 0 0 0 0 0 0 0 0 + 4 68.00 369 141 510 1886 1376 -0 0 0 0 0 0 0 0 + 5 68.00 371 143 514 1913 1399 0 0 0 0 0 0 0 0 + 6 68.00 373 145 518 1941 1422 0 0 0 0 0 0 0 0 + 1 68.00 396 154 550 2055 1505 0 0 0 0 0 0 0 0 + 2 68.00 399 155 554 2071 1517 0 0 0 0 0 0 0 0 + 3 68.00 401 155 556 2083 1526 -0 0 0 0 0 0 0 0 + 4 68.00 403 156 559 2093 1534 -0 0 0 0 0 0 0 0 + 5 68.00 405 157 562 2104 1541 0 0 0 0 0 0 0 0 + 6 68.00 405 156 561 2096 1535 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 91 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.58 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.43 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.26 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.10 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.91 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.77 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.61 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.45 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.29 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.13 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.97 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.81 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.65 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.49 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.33 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.17 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 66.01 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.85 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.69 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.53 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.37 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.21 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 65.05 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.89 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.73 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.57 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.41 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.24 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.08 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.92 65.00 64.84 95.02 89.58 0 46278 17533 2705 .0589 .0632 0.381 0.153 0.788 0 73.8 2395 0 184 126 2705 -723 1983 722 -1 917 1364 2.831 2.611 1.616 + 12 2 5 0 30.77 64.14 65.00 64.81 94.97 89.62 0 46260 17579 3008 .0655 .0702 0.383 0.170 0.792 0 82.1 2666 0 202 140 3008 -799 2209 799 0 1018 1496 2.828 2.619 1.624 + 12 2 5 1 30.62 64.09 65.00 64.84 95.00 89.67 0 46243 17626 3467 .0755 .0809 0.384 0.195 0.799 0 94.7 3077 0 229 161 3467 -915 2553 915 0 1168 1695 2.825 2.635 1.638 + 12 2 5 2 30.47 64.02 65.00 64.83 94.98 89.66 0 46225 17672 3872 .0844 .0903 0.385 0.218 0.804 0 105.7 3439 0 253 180 3872 -1021 2851 1021 0 1299 1869 2.823 2.647 1.646 + 12 2 5 3 30.32 63.99 65.00 64.82 94.95 89.64 0 46208 17719 4283 .0934 .0998 0.386 0.240 0.810 0 117.0 3808 0 276 200 4283 -1131 3152 1131 -0 1431 2043 2.820 2.660 1.653 + 12 2 5 4 30.17 63.94 65.00 64.81 94.93 89.63 0 46190 17766 4729 0.103 0.110 0.387 0.264 0.816 0 129.2 4208 0 300 220 4729 -1248 3481 1248 0 1573 2230 2.817 2.675 1.662 + 12 2 5 5 30.02 63.92 65.00 64.80 94.91 89.62 0 46173 17812 5293 0.116 0.123 0.389 0.295 0.824 0 144.7 4715 0 331 247 5293 -1398 3895 1398 -0 1750 2464 2.814 2.694 1.673 + 12 2 6 0 29.90 63.91 65.96 64.85 98.87 96.41 0 46159 17849 81067 .0501 1.887 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8801 42031 10122 1321 0 52290 2.812 2.109 0.806 + 12 2 6 1 29.78 67.40 66.50 65.68 95.77 93.39 0 46145 17887 43231 0.937 1.006 0.937 1.000 1.000 0 1182 38249 0 2952 2017 43218 -7763 34754 8465 701 13589 18694 2.810 2.815 1.873 + 12 2 6 2 29.66 67.17 66.50 66.57 96.65 92.66 0 46131 17924 23741 0.517 0.552 0.515 1.000 1.000 0 649.7 21127 0 1505 1108 23741 -5165 18576 5165 0 7336 10086 2.807 2.880 1.867 + 12 2 6 3 29.54 66.00 66.50 66.56 96.64 92.68 0 46117 17961 23805 0.519 0.553 0.516 1.000 1.000 0 651.6 21200 0 1494 1112 23805 -5158 18647 5158 0 7367 10109 2.805 2.878 1.870 + 12 2 6 4 29.42 66.20 66.50 66.41 96.48 92.48 0 46103 17998 23928 0.522 0.556 0.519 1.000 1.000 0 655.2 21324 0 1486 1118 23928 -5321 18607 5321 0 7417 10158 2.803 2.875 1.857 + 12 2 6 5 29.30 66.42 66.50 66.44 96.49 92.25 0 46089 18035 22314 0.487 0.518 0.484 1.000 1.000 0 611.2 19916 0 1355 1043 22314 -5108 17206 5108 0 6906 9440 2.801 2.884 1.850 + 12 2 7 0 29.57 66.53 67.11 66.48 100.49 98.07 0 46120 17952 104k .0501 2.425 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8585 42733 9421 835 0 52290 2.806 2.104 0.819 + 12 2 7 1 29.84 67.99 67.56 67.02 101.03 98.58 0 46152 17868 78008 .0501 1.815 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8716 42812 9341 625 0 52290 2.811 2.108 0.821 + 12 2 7 2 30.11 68.44 67.90 67.59 101.60 99.18 0 46183 17784 57908 .0502 1.349 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8508 43170 8983 475 0 52290 2.816 2.112 0.828 + 12 2 7 3 30.38 68.55 68.00 67.95 98.09 95.76 0 46215 17700 42288 0.915 0.986 0.915 1.000 1.000 0 1155 37288 0 3015 1970 42273 -7105 35045 7228 123 13187 18308 2.821 2.828 1.929 + 12 2 7 4 30.65 68.29 68.00 68.05 98.21 95.56 0 46246 17617 36730 0.795 0.857 0.794 1.000 1.000 0 1003 32374 0 2646 1711 36730 -6523 30206 6524 0 11380 15873 2.826 2.845 1.920 + 12 2 7 5 30.92 68.14 68.00 68.03 98.21 95.28 0 46278 17533 33258 0.720 0.777 0.719 1.000 1.000 0 907.2 29284 0 2426 1548 33258 -6203 27055 6203 0 10241 14352 2.831 2.859 1.903 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 92 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.49 68.00 68.01 98.31 94.98 0 46463 17039 29545 0.637 0.693 0.636 1.000 1.000 0 802.7 25777 0 2398 1369 29545 -5867 23678 5867 0 8886 12790 2.861 2.901 1.871 + 12 2 8 1 34.10 68.53 68.00 68.06 98.48 94.74 0 46649 16545 26128 0.561 0.616 0.560 1.000 1.000 0 707.1 22570 0 2352 1206 26128 -5457 20671 5457 0 7666 11361 2.893 2.944 1.842 + 12 2 8 2 35.69 68.64 68.00 68.07 98.61 94.38 0 46834 16051 22995 0.491 0.539 0.491 1.000 1.000 0 619.8 19855 0 2082 1057 22994 -5122 17872 5122 0 6579 9856 2.952 3.018 1.839 + 12 2 8 3 37.28 68.69 68.00 68.09 98.75 94.01 0 47020 15558 20414 0.433 0.470 0.434 1.000 1.000 0 548.1 17854 0 1625 935 20414 -4831 15582 4831 -0 5693 8389 3.049 3.136 1.888 + 12 2 8 4 38.87 68.75 68.00 68.10 98.89 93.59 0 47205 15065 18189 0.383 0.412 0.385 1.000 1.000 0 486.4 16111 0 1248 830 18189 -4584 13604 4584 0 4924 7138 3.148 3.272 1.943 + 12 2 8 5 40.46 68.81 68.00 68.12 99.02 93.10 0 47391 14574 16172 0.339 0.360 0.341 1.000 1.000 0 430.8 14510 0 928 735 16172 -4353 11819 4353 0 4225 6024 3.250 3.435 2.008 + 12 2 9 0 41.12 68.86 68.00 68.13 99.09 92.74 0 47468 14370 14990 0.314 0.331 0.316 1.000 1.000 0 398.6 13518 0 791 680 14990 -4208 10782 4208 0 3838 5446 3.293 3.522 2.031 + 12 2 9 1 41.78 68.86 68.00 68.15 99.15 92.43 0 47545 14167 13531 0.282 0.297 0.296 0.962 0.990 0 359.3 12269 0 649 613 13531 -3938 9593 3938 0 3084 4482 3.337 3.979 2.207 + 12 2 9 2 42.44 68.78 68.00 68.15 99.21 92.38 0 47622 13963 12025 0.251 0.262 0.291 0.867 0.967 0 318.8 10970 0 511 544 12025 -3529 8496 3529 0 2781 3972 3.381 3.945 2.215 + 12 2 9 3 43.10 68.62 68.00 68.14 99.25 92.31 0 47699 13760 10823 0.225 0.234 0.287 0.792 0.948 0 286.4 9935 0 399 489 10823 -3211 7612 3211 0 2527 3551 3.425 3.932 2.229 + 12 2 9 4 43.76 68.45 68.00 68.12 99.27 92.21 0 47776 13557 9650 0.201 0.207 0.282 0.716 0.929 0 255.0 8915 0 300 435 9650 -2903 6747 2903 0 2274 3145 3.471 3.921 2.243 + 12 2 9 5 44.42 68.17 68.00 68.09 99.29 92.09 0 47853 13354 8552 0.178 0.182 0.278 0.644 0.911 0 225.6 7952 0 215 385 8552 -2610 5942 2610 -0 2031 2767 3.516 3.915 2.259 + 12 2 10 0 44.93 67.93 68.00 68.04 99.29 91.97 0 47912 13197 8187 0.170 0.174 0.274 0.623 0.906 0 215.7 7652 0 167 368 8187 -2534 5653 2534 0 1937 2608 3.552 3.950 2.287 + 12 2 10 1 45.44 67.81 68.00 67.99 98.90 91.56 0 47392 12839 7323 0.155 0.155 0.271 0.570 0.893 0 195.1 6991 0 0 333 7323 -2299 5024 2299 0 1796 2266 3.588 3.892 2.360 + 12 2 10 2 45.95 67.50 68.00 67.97 99.04 91.57 0 47641 12748 6534 0.137 0.137 0.268 0.513 0.878 0 173.1 6239 0 0 295 6534 -2074 4460 2074 0 1596 2028 3.624 3.909 2.358 + 12 2 10 3 46.46 67.35 68.00 67.92 99.15 91.52 0 47890 12658 5777 0.121 0.121 0.264 0.456 0.864 0 152.3 5517 0 0 260 5777 -1862 3915 1862 0 1403 1800 3.661 3.931 2.354 + 12 2 10 4 46.97 67.11 68.00 67.89 99.28 91.50 0 48139 12567 5107 0.106 0.106 0.261 0.406 0.852 0 133.9 4878 0 0 228 5107 -1666 3440 1666 0 1231 1596 3.698 3.962 2.357 + 12 2 10 5 47.48 66.94 68.00 67.84 99.24 91.42 0 48154 12562 4417 .0917 .0917 0.261 0.352 0.838 0 115.8 4219 0 0 198 4417 -1452 2965 1452 0 1081 1415 3.700 3.903 2.319 + 12 2 11 0 48.20 66.83 68.00 67.80 99.21 91.37 0 48154 12562 4791 .0995 .0995 0.261 0.381 0.845 0 125.6 4577 0 0 214 4791 -1582 3209 1582 0 1162 1513 3.700 3.938 2.331 + 12 2 11 1 48.92 66.86 68.00 67.78 99.18 91.32 0 48154 12562 4264 .0885 .0885 0.261 0.339 0.835 0 111.8 4073 0 0 191 4264 -1414 2850 1414 0 1047 1375 3.700 3.889 2.302 + 12 2 11 2 49.64 66.83 68.00 67.78 99.19 91.32 0 48154 12562 3716 .0772 .0772 0.261 0.296 0.824 0 97.4 3550 0 0 166 3716 -1232 2484 1232 0 925 1228 3.700 3.838 2.277 + 12 2 11 3 50.36 66.75 68.00 67.77 99.18 91.31 0 48154 12562 3212 .0667 .0667 0.261 0.256 0.814 0 84.2 3068 0 0 144 3212 -1067 2145 1067 0 809 1089 3.700 3.792 2.251 + 12 2 11 4 51.08 66.68 68.00 67.75 99.16 91.27 0 48154 12562 2734 .0568 .0568 0.261 0.218 0.804 0 71.7 2612 0 0 122 2734 -911 1823 911 -0 697 956 3.700 3.747 2.226 + 12 2 11 5 51.80 66.60 68.00 67.74 99.14 91.24 0 48154 12562 2256 .0468 .0468 0.261 0.180 0.795 0 59.1 2155 0 0 101 2256 -753 1503 753 -0 582 819 3.700 3.703 2.200 + 12 2 12 0 52.70 66.49 68.00 67.72 99.13 91.21 0 48154 12562 1400 .0291 .0291 0.261 0.111 0.778 0 36.7 1338 0 0 63 1400 -469 932 469 0 369 432 3.700 3.624 2.158 + 12 2 12 1 53.60 66.30 68.00 67.70 99.10 91.17 0 48154 12562 867 .0180 .0180 0.261 .0690 0.767 0 22.7 828 0 0 39 867 -291 575 291 -0 232 270 3.700 3.574 2.128 + 12 2 12 2 54.50 66.14 68.00 67.66 99.06 91.10 0 48154 12562 350 .0073 .0073 0.261 .0279 0.757 0 9.2 335 0 0 16 350 -118 232 118 -0 95 111 3.700 3.526 2.098 + 12 2 12 3 55.40 65.97 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.88 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.82 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.79 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.74 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.69 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.67 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.63 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.59 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.54 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.49 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.45 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.40 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.36 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.31 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.25 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.21 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.15 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 65.09 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 65.02 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 65.00 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.95 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.89 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.83 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.78 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.67 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.60 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 93 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.55 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.41 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.34 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.27 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.22 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 64.05 68.00 67.23 98.63 90.27 0 48154 12562 160 .0033 .0033 0.261 .0128 0.753 0 4.2 153 0 0 7 160 -58 102 58 -0 44 51 3.700 3.509 2.013 + 12 2 18 0 53.00 63.96 68.00 67.17 98.57 90.22 0 48154 12562 1570 .0326 .0326 0.261 0.125 0.781 0 41.2 1500 0 0 70 1570 -570 1000 570 0 412 482 3.700 3.639 2.073 + 12 2 18 1 52.94 64.11 68.00 67.15 98.55 90.19 0 48154 12562 1721 .0357 .0357 0.261 0.137 0.784 0 45.1 1644 0 0 77 1721 -627 1094 627 0 450 527 3.700 3.653 2.076 + 12 2 18 2 52.88 63.98 68.00 67.18 98.58 90.23 0 48154 12562 2088 .0434 .0434 0.261 0.166 0.792 0 54.7 1995 0 0 93 2088 -758 1330 758 0 541 634 3.700 3.687 2.097 + 12 2 18 3 52.82 63.96 68.00 67.15 98.56 90.19 0 48154 12562 2286 .0475 .0475 0.261 0.182 0.795 0 59.9 2183 0 0 102 2286 -832 1454 832 0 589 691 3.700 3.706 2.102 + 12 2 18 4 52.76 63.97 68.00 67.15 98.55 90.18 0 48154 12562 2504 .0520 .0520 0.261 0.199 0.800 0 65.6 2392 0 0 112 2504 -913 1592 913 0 642 754 3.700 3.726 2.111 + 12 2 18 5 52.70 63.83 68.00 67.15 98.55 90.18 0 48154 12562 2847 .0591 .0591 0.261 0.227 0.807 0 74.6 2720 0 0 127 2847 -1038 1810 1038 0 724 851 3.700 3.758 2.126 + 12 2 19 0 52.19 63.84 68.00 67.12 98.52 90.14 0 48154 12562 2830 .0588 .0588 0.261 0.225 0.806 0 74.2 2704 0 0 127 2830 -1035 1796 1035 0 720 846 3.700 3.756 2.121 + 12 2 19 1 51.68 63.74 68.00 67.12 98.52 90.13 0 48154 12562 3180 .0660 .0660 0.261 0.253 0.813 0 83.4 3038 0 0 142 3180 -1163 2017 1163 0 802 944 3.700 3.789 2.137 + 12 2 19 2 51.17 63.74 68.00 67.10 98.50 90.10 0 48154 12562 3434 .0713 .0713 0.261 0.273 0.818 0 90.0 3281 0 0 154 3434 -1259 2175 1259 -0 861 1014 3.700 3.812 2.144 + 12 2 19 3 50.66 63.67 68.00 67.10 98.50 90.09 0 48154 12562 3792 .0787 .0787 0.261 0.302 0.825 0 99.4 3622 0 0 170 3792 -1391 2401 1391 0 942 1112 3.700 3.845 2.160 + 12 2 19 4 50.15 63.69 68.00 67.08 98.49 90.07 0 48154 12562 4034 .0838 .0838 0.261 0.321 0.830 0 105.8 3854 0 0 180 4034 -1483 2552 1483 -0 996 1177 3.700 3.868 2.168 + 12 2 19 5 49.64 63.61 68.00 67.09 98.49 90.07 0 48154 12562 4385 .0911 .0911 0.261 0.349 0.837 0 115.0 4189 0 0 196 4385 -1611 2774 1611 0 1074 1270 3.700 3.900 2.184 + 12 2 20 0 49.13 63.62 68.00 67.07 98.48 90.05 0 48154 12562 4904 0.102 0.102 0.261 0.390 0.848 0 128.6 4685 0 0 219 4904 -1805 3099 1805 0 1186 1542 3.700 3.948 2.205 + 12 2 20 1 48.62 63.70 68.00 67.07 98.48 90.05 0 48154 12562 5261 0.109 0.109 0.261 0.419 0.855 0 137.9 5025 0 0 235 5261 -1936 3324 1936 0 1262 1634 3.700 3.981 2.220 + 12 2 20 2 48.11 63.78 68.00 67.09 98.49 90.07 0 48154 12562 5605 0.116 0.116 0.261 0.446 0.862 0 146.9 5354 0 0 251 5605 -2059 3546 2059 0 1334 1721 3.700 4.013 2.237 + 12 2 20 3 47.60 63.89 68.00 67.10 98.51 90.10 0 48154 12562 5860 0.122 0.122 0.261 0.466 0.867 0 153.6 5598 0 0 262 5860 -2149 3711 2149 0 1387 1785 3.700 4.037 2.251 + 12 2 20 4 47.09 63.98 68.00 67.12 98.53 90.13 0 48154 12562 6169 0.128 0.128 0.261 0.491 0.873 0 161.7 5893 0 0 276 6169 -2256 3913 2256 0 1450 1862 3.700 4.066 2.268 + 12 2 20 5 46.58 64.15 68.00 67.14 98.41 90.14 0 47949 12636 6458 0.135 0.135 0.264 0.511 0.878 0 170.0 6168 0 0 290 6458 -2343 4115 2343 0 1537 1963 3.669 4.014 2.252 + 12 2 21 0 46.10 64.23 68.00 67.18 98.29 90.16 0 47714 12722 7095 0.149 0.149 0.267 0.558 0.889 0 187.7 6774 0 0 320 7095 -2548 4546 2548 0 1700 2157 3.635 3.984 2.250 + 12 2 21 1 45.62 64.35 68.00 67.20 98.16 90.15 0 47480 12807 7402 0.156 0.156 0.270 0.578 0.894 0 196.8 7066 0 0 336 7402 -2636 4766 2636 0 1799 2271 3.601 3.928 2.233 + 12 2 21 2 45.14 64.45 68.00 67.23 98.04 90.16 0 47245 12892 7693 0.163 0.163 0.273 0.597 0.899 0 205.5 7342 0 0 351 7693 -2713 4980 2713 0 1895 2382 3.567 3.874 2.217 + 12 2 21 3 44.66 64.53 68.00 67.25 98.48 90.60 0 47881 13280 7987 0.166 0.170 0.276 0.604 0.901 0 210.6 7445 0 183 359 7987 -2785 5202 2785 0 1909 2588 3.533 3.899 2.122 + 12 2 21 4 44.18 64.61 68.00 67.27 98.46 90.68 0 47825 13428 8277 0.172 0.177 0.279 0.620 0.905 0 218.5 7679 0 226 373 8277 -2860 5418 2860 0 1987 2723 3.500 3.863 2.095 + 12 2 21 5 43.70 64.70 68.00 67.29 98.45 90.77 0 47769 13575 8556 0.178 0.184 0.283 0.634 0.908 0 226.1 7900 0 271 386 8556 -2928 5627 2928 0 2063 2856 3.466 3.828 2.069 + 12 2 22 0 43.28 64.79 68.00 67.31 98.43 90.84 0 47720 13705 9507 0.198 0.205 0.285 0.698 0.925 0 251.5 8742 0 336 429 9507 -3229 6278 3229 0 2269 3170 3.438 3.853 2.069 + 12 2 22 1 42.86 64.98 68.00 67.33 98.42 90.91 0 47671 13834 9800 0.204 0.212 0.288 0.713 0.928 0 259.5 8976 0 382 443 9800 -3300 6500 3300 0 2345 3306 3.409 3.828 2.051 + 12 2 22 2 42.44 65.10 68.00 67.37 98.43 91.02 0 47622 13963 10058 0.210 0.219 0.291 0.725 0.931 0 266.6 9175 0 428 455 10058 -3348 6709 3348 0 2414 3433 3.381 3.800 2.035 + 12 2 22 3 42.02 65.19 68.00 67.40 98.43 91.11 0 47573 14093 10338 0.216 0.226 0.294 0.739 0.935 0 274.3 9394 0 476 468 10338 -3409 6929 3409 0 2488 3568 3.353 3.776 2.019 + 12 2 22 4 41.60 65.29 68.00 67.42 98.41 91.18 0 47524 14222 10607 0.222 0.233 0.297 0.751 0.938 0 281.7 9602 0 524 481 10607 -3467 7140 3467 0 2560 3701 3.325 3.751 2.003 + 12 2 22 5 41.18 65.39 68.00 67.44 98.41 91.26 0 47475 14352 10842 0.227 0.239 0.300 0.761 0.940 0 288.3 9778 0 573 492 10842 -3511 7331 3511 -0 2625 3826 3.297 3.725 1.987 + 12 2 23 0 41.27 65.48 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 64.01 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.67 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.46 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.33 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.16 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.07 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 63.01 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.83 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.75 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.58 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.50 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 94 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.45 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.31 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.27 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.17 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.17 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 62.05 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.98 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.94 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.93 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.85 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.74 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.65 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.54 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.45 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.34 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.24 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.14 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 61.03 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.93 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.82 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.70 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.59 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.48 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.37 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.25 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.13 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 60.01 65.00 64.15 94.18 88.47 0 46047 18147 1451 .0318 .0337 0.397 .0793 0.770 0 39.8 1302 0 82 68 1451 -432 1021 430 -2 524 810 2.794 2.482 1.515 + 12 3 5 3 28.64 60.13 65.00 64.10 94.11 88.43 0 46012 18240 3570 .0783 .0828 0.400 0.194 0.799 0 97.9 3208 0 195 167 3570 -1061 2508 1061 0 1251 1749 2.789 2.565 1.555 + 12 3 5 4 28.34 60.38 65.00 64.12 94.11 88.46 0 45977 18333 4137 .0908 .0958 0.402 0.224 0.806 0 113.6 3724 0 219 194 4137 -1223 2914 1223 0 1444 1993 2.783 2.579 1.569 + 12 3 5 5 28.04 60.42 65.00 64.16 94.12 88.54 0 45942 18426 4651 0.102 0.108 0.404 0.250 0.813 0 127.8 4195 0 238 218 4651 -1363 3288 1363 -0 1619 2212 2.778 2.590 1.584 + 12 3 6 0 28.07 60.44 65.95 64.39 98.40 95.76 0 45945 18417 82183 .0499 1.902 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9710 41129 11025 1314 0 52290 2.779 2.084 0.789 + 12 3 6 1 28.10 64.61 66.50 65.21 95.17 92.62 0 45949 18408 43485 0.946 1.007 0.946 1.000 1.000 0 1194 38847 0 2588 2038 43473 -8654 34104 9369 715 13955 18717 2.779 2.784 1.835 + 12 3 6 2 28.13 64.33 66.50 66.10 96.07 91.70 0 45952 18398 23205 0.508 0.537 0.505 1.000 1.000 0 637.5 20853 0 1265 1088 23205 -5642 17563 5642 0 7293 9782 2.780 2.859 1.821 + 12 3 6 3 28.16 62.93 66.50 66.09 96.06 91.78 0 45956 18389 23491 0.514 0.544 0.511 1.000 1.000 0 645.3 21102 0 1287 1101 23490 -5660 17831 5660 0 7384 9909 2.780 2.858 1.825 + 12 3 6 4 28.19 63.18 66.50 65.92 95.89 91.65 0 45959 18380 24162 0.529 0.559 0.526 1.000 1.000 0 663.6 21694 0 1336 1132 24161 -5915 18246 5915 0 7602 10206 2.781 2.854 1.812 + 12 3 6 5 28.22 63.49 66.50 65.94 95.92 91.44 0 45963 18370 22655 0.496 0.525 0.493 1.000 1.000 0 622.2 20353 0 1240 1062 22654 -5689 16966 5689 0 7105 9543 2.781 2.865 1.804 + 12 3 7 0 28.52 63.76 67.12 66.09 100.10 97.52 0 45998 18277 105k .0499 2.427 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9349 41953 10201 852 0 52290 2.787 2.090 0.804 + 12 3 7 1 28.82 65.46 67.58 66.66 100.67 98.06 0 46033 18184 77103 .0500 1.789 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9447 42064 10090 643 0 52290 2.792 2.094 0.807 + 12 3 7 2 29.12 65.91 67.94 67.27 101.29 98.72 0 46068 18091 55866 .0500 1.297 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9187 42474 9680 493 0 52290 2.798 2.098 0.814 + 12 3 7 3 29.42 66.07 68.00 67.63 97.70 95.06 0 46103 17998 39524 0.858 0.919 0.857 1.000 1.000 0 1082 35072 0 2605 1846 39524 -7442 32011 7513 71 12456 17044 2.803 2.816 1.893 + 12 3 7 4 29.72 65.83 68.00 67.70 97.79 94.85 0 46138 17905 35224 0.765 0.819 0.763 1.000 1.000 0 963.7 31226 0 2353 1644 35224 -6932 28292 6932 -0 11026 15160 2.809 2.832 1.883 + 12 3 7 5 30.02 65.86 68.00 67.66 97.77 94.53 0 46173 17812 31688 0.688 0.738 0.686 1.000 1.000 0 866.3 28063 0 2147 1478 31688 -6566 25122 6566 0 9852 13613 2.814 2.848 1.864 + 12 3 8 0 31.40 66.07 68.00 67.65 97.87 94.19 0 46334 17384 28150 0.609 0.658 0.608 1.000 1.000 0 767.0 24741 0 2101 1308 28150 -6190 21961 6190 0 8571 12118 2.840 2.886 1.833 + 12 3 8 1 32.78 66.15 68.00 67.67 97.99 93.84 0 46495 16955 24762 0.534 0.581 0.533 1.000 1.000 0 672.3 21585 0 2029 1147 24762 -5769 18992 5769 0 7375 10688 2.867 2.927 1.800 + 12 3 8 2 34.16 66.26 68.00 67.66 98.09 93.43 0 46656 16526 21919 0.470 0.517 0.470 1.000 1.000 0 593.1 18934 0 1973 1012 21919 -5431 16488 5431 0 6379 9501 2.894 2.968 1.761 + 12 3 8 3 35.54 66.31 68.00 67.67 98.20 92.98 0 46817 16097 19445 0.415 0.457 0.415 1.000 1.000 0 524.3 16764 0 1786 895 19445 -5124 14320 5124 0 5528 8345 2.943 3.033 1.745 + 12 3 8 4 36.92 66.41 68.00 67.66 98.30 92.49 0 46978 15669 17360 0.368 0.402 0.370 1.000 1.000 0 466.5 15125 0 1440 796 17360 -4869 12491 4869 0 4817 7189 3.027 3.140 1.771 + 12 3 8 5 38.30 66.48 68.00 67.66 98.40 91.98 0 47139 15242 15572 0.328 0.355 0.330 1.000 1.000 0 417.0 13708 0 1152 711 15572 -4638 10934 4638 -0 4202 6202 3.112 3.263 1.803 + 12 3 9 0 38.84 66.53 68.00 67.67 98.45 91.81 0 47202 15074 14467 0.304 0.328 0.317 0.966 0.991 0 386.9 12788 0 1019 660 14467 -4395 10072 4395 0 3418 5233 3.146 3.741 1.976 + 12 3 9 1 39.38 66.55 68.00 67.68 98.50 91.79 0 47265 14907 12943 0.272 0.291 0.313 0.874 0.968 0 345.7 11492 0 861 590 12943 -3952 8991 3952 0 3111 4698 3.180 3.694 1.971 + 12 3 9 2 39.92 66.38 68.00 67.68 98.55 91.76 0 47328 14741 11580 0.243 0.259 0.309 0.791 0.948 0 308.9 10329 0 724 527 11580 -3558 8022 3558 0 2826 4214 3.215 3.655 1.967 + 12 3 9 3 40.46 66.26 68.00 67.65 98.56 91.67 0 47391 14574 10321 0.216 0.230 0.305 0.713 0.928 0 274.9 9249 0 603 469 10321 -3208 7113 3208 0 2555 3763 3.250 3.621 1.961 + 12 3 9 4 41.00 66.09 68.00 67.63 98.58 91.58 0 47454 14407 9247 0.193 0.204 0.301 0.646 0.912 0 246.0 8326 0 502 420 9247 -2905 6342 2905 -0 2314 3372 3.285 3.597 1.960 + 12 3 9 5 41.54 65.88 68.00 67.60 98.59 91.49 0 47517 14241 8226 0.172 0.181 0.298 0.582 0.895 0 218.5 7442 0 411 373 8226 -2615 5611 2615 0 2081 3001 3.321 3.577 1.959 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 95 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.82 68.00 67.56 98.61 91.36 0 47608 14000 8725 0.182 0.190 0.292 0.628 0.907 0 231.3 7950 0 380 395 8725 -2818 5907 2818 0 2155 3066 3.373 3.690 2.017 + 12 3 10 1 43.10 65.87 68.00 67.54 98.65 91.26 0 47699 13760 7944 0.165 0.172 0.287 0.581 0.895 0 210.2 7292 0 293 359 7944 -2599 5345 2599 0 1963 2752 3.425 3.714 2.044 + 12 3 10 2 43.88 65.86 68.00 67.55 98.72 91.20 0 47790 13520 7138 0.148 0.153 0.281 0.531 0.883 0 188.5 6602 0 214 322 7138 -2356 4781 2356 -0 1766 2439 3.479 3.738 2.077 + 12 3 10 3 44.66 65.81 68.00 67.54 98.77 91.11 0 47881 13280 6381 0.133 0.136 0.276 0.483 0.871 0 168.2 5948 0 146 287 6381 -2130 4250 2130 0 1579 2148 3.533 3.768 2.113 + 12 3 10 4 45.44 65.76 68.00 67.53 98.44 90.72 0 47392 12839 5680 0.120 0.120 0.271 0.442 0.861 0 151.3 5422 0 0 258 5680 -1922 3758 1922 -0 1445 1840 3.588 3.752 2.206 + 12 3 10 5 46.22 65.71 68.00 67.52 98.67 90.76 0 47773 12700 4961 0.104 0.104 0.266 0.391 0.848 0 131.1 4737 0 0 224 4961 -1699 3262 1699 0 1241 1601 3.644 3.817 2.227 + 12 3 11 0 46.58 65.69 68.00 67.50 98.77 90.77 0 47949 12636 4872 0.102 0.102 0.264 0.386 0.846 0 128.3 4654 0 0 219 4872 -1679 3194 1679 -0 1202 1558 3.669 3.870 2.247 + 12 3 11 1 46.94 65.82 68.00 67.50 98.88 90.79 0 48124 12572 4409 .0916 .0916 0.261 0.351 0.838 0 115.7 4212 0 0 197 4409 -1528 2882 1528 0 1082 1416 3.696 3.892 2.252 + 12 3 11 2 47.30 65.87 68.00 67.52 98.92 90.83 0 48154 12562 3958 .0822 .0822 0.261 0.315 0.829 0 103.8 3781 0 0 177 3958 -1368 2589 1368 0 979 1293 3.700 3.861 2.239 + 12 3 11 3 47.66 65.92 68.00 67.53 98.93 90.84 0 48154 12562 3524 .0732 .0732 0.261 0.281 0.820 0 92.4 3367 0 0 158 3524 -1217 2307 1217 0 881 1175 3.700 3.820 2.221 + 12 3 11 4 48.02 65.95 68.00 67.53 98.94 90.86 0 48154 12562 3131 .0650 .0650 0.261 0.249 0.812 0 82.1 2991 0 0 140 3131 -1080 2051 1080 0 790 1067 3.700 3.784 2.204 + 12 3 11 5 48.38 65.92 68.00 67.54 98.94 90.86 0 48154 12562 2747 .0570 .0570 0.261 0.219 0.805 0 72.0 2624 0 0 123 2747 -947 1800 947 -0 700 959 3.700 3.748 2.187 + 12 3 12 0 48.86 65.91 68.00 67.54 98.94 90.86 0 48154 12562 1914 .0397 .0397 0.261 0.152 0.788 0 50.2 1828 0 0 86 1914 -660 1254 660 0 498 720 3.700 3.671 2.148 + 12 3 12 1 49.34 65.73 68.00 67.53 98.94 90.85 0 48154 12562 1490 .0310 .0310 0.261 0.119 0.780 0 39.1 1424 0 0 67 1490 -514 976 514 0 392 595 3.700 3.632 2.128 + 12 3 12 2 49.82 65.61 68.00 67.50 98.91 90.80 0 48154 12562 1065 .0221 .0221 0.261 .0848 0.771 0 27.9 1017 0 0 48 1065 -369 696 369 0 283 467 3.700 3.592 2.104 + 12 3 12 3 50.30 65.50 68.00 67.48 98.89 90.77 0 48154 12562 687 .0143 .0143 0.261 .0547 0.764 0 18.0 656 0 0 31 687 -239 448 239 0 184 352 3.700 3.557 2.083 + 12 3 12 4 50.78 65.39 68.00 67.47 98.87 90.74 0 48154 12562 337 .0070 .0070 0.261 .0268 0.757 0 8.8 322 0 0 15 337 -117 219 117 0 91 243 3.700 3.525 2.064 + 12 3 12 5 51.26 65.29 68.00 67.45 98.85 90.71 0 48154 12562 22 .0005 .0005 0.261 .0018 0.750 0 0.6 21 0 0 1 22 -8 14 8 0 6 143 3.700 3.496 2.047 + 12 3 13 0 51.59 65.25 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.26 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.27 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.29 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.28 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.32 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.41 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.48 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.55 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.35 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.54 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.50 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.59 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.64 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.65 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.64 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.69 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.53 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.62 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.62 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.64 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.67 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.68 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.70 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.74 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.55 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.75 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.36 68.00 67.53 98.93 90.84 0 48154 12562 1524 .0317 .0317 0.261 0.121 0.780 0 40.0 1456 0 0 68 1524 -528 998 527 -1 401 469 3.700 3.635 2.128 + 12 3 17 4 49.49 65.90 68.00 67.45 98.85 90.73 0 48154 12562 3064 .0636 .0636 0.261 0.244 0.811 0 80.3 2927 0 0 137 3064 -1068 1995 1068 0 775 912 3.700 3.778 2.189 + 12 3 17 5 49.10 65.99 68.00 67.54 98.94 90.87 0 48154 12562 3434 .0713 .0713 0.261 0.273 0.818 0 90.0 3280 0 0 154 3434 -1183 2250 1183 0 860 1014 3.700 3.812 2.219 + 12 3 18 0 48.05 66.05 68.00 67.56 98.97 90.91 0 48154 12562 3421 .0710 .0710 0.261 0.272 0.818 0 89.7 3268 0 0 153 3421 -1175 2246 1175 0 858 1147 3.700 3.811 2.223 + 12 3 18 1 47.00 66.11 68.00 67.57 98.98 90.93 0 48154 12562 4006 .0832 .0832 0.261 0.319 0.830 0 105.0 3827 0 0 179 4006 -1373 2633 1373 -0 990 1306 3.700 3.865 2.252 + 12 3 18 2 45.95 66.26 68.00 67.59 98.66 90.88 0 47641 12748 4567 .0959 .0959 0.268 0.358 0.840 0 121.0 4361 0 0 206 4567 -1541 3026 1541 0 1167 1510 3.624 3.738 2.204 + 12 3 18 3 44.90 66.42 68.00 67.62 98.87 91.23 0 47909 13206 5104 0.106 0.108 0.274 0.388 0.847 0 134.5 4769 0 105 229 5104 -1689 3415 1689 -0 1292 1763 3.550 3.691 2.099 + 12 3 18 4 43.85 66.63 68.00 67.65 98.82 91.39 0 47786 13529 5671 0.118 0.122 0.281 0.422 0.855 0 149.8 5244 0 172 256 5671 -1841 3830 1841 0 1449 2013 3.477 3.619 2.042 + 12 3 18 5 42.80 66.86 68.00 67.70 98.78 91.55 0 47664 13852 6233 0.130 0.135 0.289 0.453 0.863 0 165.1 5705 0 246 282 6233 -1983 4250 1983 0 1605 2269 3.405 3.554 1.993 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 96 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.96 68.00 67.74 98.81 91.63 0 47646 13899 6289 0.131 0.137 0.290 0.456 0.864 0 166.6 5748 0 256 284 6289 -1985 4303 1985 0 1622 2299 3.395 3.543 1.990 + 12 3 19 1 42.50 66.97 68.00 67.76 98.82 91.68 0 47629 13945 6555 0.137 0.143 0.291 0.473 0.868 0 173.7 5983 0 275 296 6555 -2058 4498 2058 0 1686 2395 3.385 3.548 1.992 + 12 3 19 2 42.35 67.08 68.00 67.76 98.81 91.70 0 47611 13991 6784 0.141 0.148 0.292 0.488 0.872 0 179.9 6183 0 294 307 6784 -2123 4661 2123 0 1741 2478 3.375 3.551 1.990 + 12 3 19 3 42.20 67.04 68.00 67.78 98.82 91.75 0 47594 14037 7050 0.147 0.154 0.293 0.506 0.876 0 187.0 6417 0 314 319 7050 -2194 4856 2194 0 1805 2574 3.365 3.556 1.992 + 12 3 19 4 42.05 67.08 68.00 67.78 98.81 91.77 0 47576 14083 7239 0.151 0.158 0.294 0.518 0.879 0 192.1 6580 0 331 328 7239 -2248 4991 2248 0 1851 2646 3.355 3.555 1.988 + 12 3 19 5 41.90 67.02 68.00 67.79 98.81 91.80 0 47559 14130 7491 0.156 0.164 0.295 0.534 0.883 0 198.8 6800 0 352 339 7491 -2318 5173 2318 0 1911 2739 3.345 3.559 1.988 + 12 3 20 0 41.60 66.99 68.00 67.79 98.78 91.82 0 47524 14222 7890 0.165 0.173 0.297 0.559 0.890 0 209.6 7142 0 390 358 7890 -2434 5456 2434 0 2007 2891 3.325 3.559 1.981 + 12 3 20 1 41.30 67.08 68.00 67.78 98.76 91.84 0 47489 14315 8067 0.169 0.178 0.299 0.568 0.892 0 214.4 7283 0 418 366 8067 -2478 5589 2478 0 2055 2976 3.305 3.543 1.968 + 12 3 20 2 41.00 66.99 68.00 67.80 98.75 91.90 0 47454 14407 8368 0.175 0.185 0.301 0.585 0.896 0 222.6 7534 0 454 380 8368 -2553 5815 2553 -0 2130 3100 3.285 3.537 1.962 + 12 3 20 3 40.70 67.02 68.00 67.79 98.72 91.91 0 47419 14500 8530 0.179 0.189 0.304 0.593 0.898 0 227.1 7660 0 483 387 8530 -2595 5934 2595 0 2175 3182 3.266 3.521 1.949 + 12 3 20 4 40.40 66.93 68.00 67.80 98.70 91.94 0 47384 14592 8833 0.185 0.197 0.306 0.610 0.902 0 235.3 7911 0 520 401 8833 -2674 6159 2674 0 2251 3309 3.246 3.515 1.942 + 12 3 20 5 40.10 66.94 68.00 67.79 98.67 91.95 0 47349 14685 8970 0.188 0.200 0.308 0.615 0.904 0 239.1 8013 0 549 408 8970 -2708 6261 2708 0 2291 3384 3.227 3.498 1.928 + 12 3 21 0 40.43 66.88 68.00 67.79 98.69 91.93 0 47387 14583 9416 0.197 0.209 0.306 0.650 0.913 0 250.8 8435 0 552 428 9416 -2855 6561 2855 0 2372 3488 3.248 3.557 1.957 + 12 3 21 1 40.76 66.85 68.00 67.78 98.71 91.89 0 47426 14481 9508 0.199 0.211 0.303 0.661 0.915 0 253.1 8543 0 534 432 9508 -2899 6609 2899 -0 2378 3479 3.270 3.593 1.977 + 12 3 21 2 41.09 66.80 68.00 67.78 98.73 91.86 0 47464 14379 9581 0.200 0.212 0.301 0.671 0.918 0 254.8 8634 0 513 435 9581 -2936 6645 2936 0 2379 3463 3.291 3.629 1.998 + 12 3 21 3 41.42 66.73 68.00 67.77 98.75 91.82 0 47503 14278 9635 0.201 0.212 0.298 0.680 0.920 0 256.0 8708 0 490 437 9635 -2969 6666 2969 -0 2376 3440 3.313 3.665 2.018 + 12 3 21 4 41.75 66.59 68.00 67.75 98.76 91.77 0 47541 14176 9680 0.202 0.212 0.296 0.688 0.922 0 257.0 8775 0 467 439 9680 -3002 6679 3002 0 2371 3413 3.335 3.701 2.038 + 12 3 21 5 42.08 66.62 68.00 67.73 98.76 91.70 0 47580 14074 9689 0.202 0.212 0.294 0.693 0.923 0 257.1 8809 0 441 439 9689 -3028 6660 3028 -0 2358 3375 3.357 3.735 2.057 + 12 3 22 0 42.05 66.62 68.00 67.73 98.76 91.71 0 47576 14083 10473 0.219 0.229 0.294 0.749 0.937 0 277.9 9520 0 479 474 10473 -3271 7203 3271 0 2513 3603 3.355 3.789 2.078 + 12 3 22 1 42.02 66.67 68.00 67.73 98.76 91.71 0 47573 14093 10634 0.222 0.233 0.294 0.760 0.940 0 282.2 9664 0 489 481 10634 -3320 7315 3320 0 2545 3652 3.353 3.797 2.081 + 12 3 22 2 41.99 66.71 68.00 67.74 98.77 91.73 0 47569 14102 10773 0.225 0.236 0.294 0.769 0.942 0 285.9 9787 0 498 488 10773 -3356 7417 3356 0 2573 3696 3.351 3.804 2.084 + 12 3 22 3 41.96 66.91 68.00 67.75 98.77 91.75 0 47566 14111 10803 0.225 0.236 0.295 0.771 0.943 0 286.7 9811 0 502 489 10803 -3360 7443 3360 0 2580 3708 3.349 3.803 2.084 + 12 3 22 4 41.93 67.01 68.00 67.78 98.80 91.80 0 47562 14120 10911 0.228 0.239 0.295 0.778 0.945 0 289.6 9907 0 510 494 10911 -3375 7536 3375 0 2602 3743 3.347 3.807 2.090 + 12 3 22 5 41.90 67.08 68.00 67.80 98.82 91.84 0 47559 14130 11006 0.230 0.241 0.295 0.784 0.946 0 292.1 9990 0 517 498 11006 -3393 7612 3393 0 2621 3773 3.345 3.811 2.093 + 12 3 23 0 41.51 67.19 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.75 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.39 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.43 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.33 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.25 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.16 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 65.01 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.95 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.85 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.75 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.60 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.56 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.45 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.44 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.33 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.20 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.09 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.97 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.86 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.74 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.63 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.51 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.39 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 97 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.27 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.15 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 63.02 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.90 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.77 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.64 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.52 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.39 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.26 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.13 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.98 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.85 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.72 65.00 64.46 94.57 88.96 0 46169 17821 544 .0119 .0127 0.389 .0303 0.758 0 14.9 484 0 34 25 544 -155 389 154 -1 196 391 2.814 2.477 1.528 + 12 4 5 1 29.96 61.66 65.00 64.40 94.51 88.89 0 46166 17831 3056 .0667 .0712 0.389 0.170 0.793 0 83.6 2724 0 190 143 3056 -874 2183 874 0 1052 1521 2.813 2.590 1.577 + 12 4 5 2 29.93 61.92 65.00 64.39 94.50 88.87 0 46162 17840 3461 .0756 .0806 0.389 0.193 0.798 0 94.7 3085 0 215 161 3461 -991 2470 991 0 1183 1696 2.812 2.607 1.584 + 12 4 5 3 29.90 61.91 65.00 64.43 94.53 88.93 0 46159 17849 3863 .0844 .0899 0.390 0.215 0.804 0 105.7 3444 0 239 180 3863 -1099 2764 1099 0 1312 1868 2.812 2.625 1.596 + 12 4 5 4 29.87 61.87 65.00 64.43 94.53 88.93 0 46155 17859 4282 .0935 .0997 0.390 0.238 0.809 0 117.1 3818 0 264 200 4282 -1218 3063 1218 0 1445 2045 2.811 2.642 1.605 + 12 4 5 5 29.84 61.88 65.00 64.42 94.52 88.92 0 46152 17868 4714 0.103 0.110 0.390 0.262 0.815 0 128.9 4204 0 290 220 4714 -1342 3371 1342 0 1580 2226 2.811 2.661 1.613 + 12 4 6 0 29.72 61.88 65.96 64.58 98.60 96.03 0 46138 17905 81578 .0501 1.898 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9332 41501 10652 1321 0 52290 2.809 2.106 0.796 + 12 4 6 1 29.60 65.85 66.50 65.40 95.48 92.98 0 46124 17942 43128 0.935 1.003 0.935 1.000 1.000 0 1180 38196 0 2903 2013 43113 -8261 34152 8961 700 13585 18638 2.806 2.812 1.846 + 12 4 6 2 29.48 65.53 66.50 66.30 96.37 92.13 0 46110 17980 23306 0.508 0.542 0.505 1.000 1.000 0 638.0 20768 0 1449 1089 23306 -5427 17878 5427 0 7211 9886 2.804 2.880 1.834 + 12 4 6 3 29.36 64.22 66.50 66.29 96.35 92.22 0 46096 18017 23769 0.518 0.552 0.516 1.000 1.000 0 650.9 21192 0 1467 1111 23769 -5470 18300 5470 0 7371 10085 2.802 2.875 1.839 + 12 4 6 4 29.24 64.47 66.50 66.13 96.18 92.10 0 46082 18054 24501 0.534 0.569 0.532 1.000 1.000 0 671.2 21854 0 1502 1145 24501 -5719 18782 5719 -0 7619 10403 2.800 2.868 1.830 + 12 4 6 5 29.12 64.74 66.50 66.15 96.20 91.89 0 46068 18091 22937 0.501 0.533 0.498 1.000 1.000 0 628.5 20489 0 1376 1072 22937 -5494 17443 5494 0 7123 9707 2.798 2.877 1.823 + 12 4 7 0 29.42 64.98 67.10 66.26 100.27 97.75 0 46103 17998 105k .0501 2.447 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9024 42302 9852 828 0 52290 2.803 2.102 0.811 + 12 4 7 1 29.72 66.60 67.54 66.81 100.82 98.28 0 46138 17905 79126 .0501 1.841 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9125 42415 9739 614 0 52290 2.809 2.106 0.813 + 12 4 7 2 30.02 67.04 67.88 67.39 101.40 98.90 0 46173 17812 59280 .0501 1.380 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8877 42813 9341 464 0 52290 2.814 2.111 0.821 + 12 4 7 3 30.32 67.17 68.00 67.74 97.88 95.55 0 46208 17719 43906 0.950 1.023 0.950 1.000 1.000 0 1199 38725 0 3125 2046 43896 -7625 36115 7781 156 13715 19022 2.820 2.824 1.912 + 12 4 7 4 30.62 67.10 68.00 67.86 98.02 95.33 0 46243 17626 37706 0.816 0.880 0.815 1.000 1.000 0 1029 33235 0 2715 1756 37706 -6951 30754 6952 0 11695 16303 2.825 2.842 1.902 + 12 4 7 5 30.92 67.06 68.00 67.85 98.03 95.10 0 46278 17533 34334 0.743 0.802 0.742 1.000 1.000 0 936.6 30226 0 2511 1598 34334 -6592 27742 6592 0 10582 14828 2.831 2.856 1.888 + 12 4 8 0 32.18 67.24 68.00 67.84 98.12 94.80 0 46425 17142 30582 0.660 0.717 0.659 1.000 1.000 0 831.6 26733 0 2430 1419 30582 -6218 24364 6218 0 9247 13232 2.855 2.891 1.860 + 12 4 8 1 33.44 67.32 68.00 67.86 98.23 94.54 0 46572 16750 27269 0.586 0.642 0.586 1.000 1.000 0 739.1 23656 0 2351 1261 27268 -5827 21442 5827 0 8082 11831 2.880 2.927 1.834 + 12 4 8 2 34.70 67.43 68.00 67.87 98.33 94.19 0 46719 16359 24211 0.518 0.572 0.518 1.000 1.000 0 654.2 20830 0 2265 1116 24211 -5480 18730 5480 -0 7026 10544 2.905 2.965 1.800 + 12 4 8 3 35.96 67.48 68.00 67.88 98.44 93.92 0 46866 15967 22081 0.471 0.516 0.471 1.000 1.000 0 594.8 19107 0 1959 1015 22081 -5228 16853 5228 0 6286 9396 2.969 3.040 1.820 + 12 4 8 4 37.22 67.58 68.00 67.88 98.54 93.64 0 47013 15576 20318 0.431 0.468 0.432 1.000 1.000 0 545.6 17761 0 1626 931 20318 -5025 15293 5025 0 5669 8362 3.045 3.133 1.859 + 12 4 8 5 38.48 67.67 68.00 67.90 98.66 93.41 0 47160 15186 18935 0.400 0.430 0.401 1.000 1.000 0 506.8 16721 0 1349 865 18934 -4855 14079 4855 0 5170 7520 3.124 3.234 1.907 + 12 4 9 0 39.11 67.78 68.00 67.91 98.72 93.38 0 47233 14991 18588 0.392 0.420 0.394 1.000 1.000 0 496.8 16502 0 1239 848 18588 -4802 13785 4802 -0 5022 7244 3.163 3.286 1.940 + 12 4 9 1 39.74 67.84 68.00 67.93 98.78 93.22 0 47307 14796 17763 0.373 0.398 0.375 1.000 1.000 0 474.0 15850 0 1104 809 17763 -4693 13070 4693 0 4735 6785 3.204 3.347 1.966 + 12 4 9 2 40.37 67.83 68.00 67.94 98.84 93.08 0 47380 14602 17102 0.359 0.381 0.361 1.000 1.000 0 455.6 15340 0 984 777 17101 -4607 12495 4607 -0 4498 6396 3.244 3.411 1.996 + 12 4 9 3 41.00 67.82 68.00 67.95 98.89 92.93 0 47454 14407 16491 0.345 0.365 0.348 1.000 1.000 0 438.7 14871 0 872 748 16491 -4533 11957 4533 -0 4275 6032 3.285 3.478 2.028 + 12 4 9 4 41.63 67.71 68.00 67.95 98.94 92.80 0 47527 14213 15978 0.334 0.351 0.336 1.000 1.000 0 424.4 14487 0 767 724 15978 -4472 11505 4472 0 4081 5708 3.327 3.550 2.065 + 12 4 9 5 42.26 67.81 68.00 67.93 98.98 92.62 0 47601 14019 15434 0.322 0.337 0.324 1.000 1.000 0 409.3 14071 0 664 698 15434 -4418 11016 4418 -0 3878 5377 3.369 3.628 2.102 + 12 4 10 0 42.41 67.89 68.00 67.95 99.01 92.69 0 47618 13972 15527 0.324 0.338 0.326 1.000 1.000 0 411.6 14177 0 648 702 15527 -4415 11112 4415 0 3893 5379 3.379 3.642 2.119 + 12 4 10 1 42.56 67.93 68.00 67.97 99.03 92.62 0 47636 13926 15217 0.317 0.331 0.319 1.000 1.000 0 403.3 13911 0 618 688 15217 -4366 10851 4366 0 3793 5236 3.389 3.667 2.128 + 12 4 10 2 42.71 67.95 68.00 67.98 99.05 92.53 0 47653 13880 14931 0.311 0.324 0.313 1.000 1.000 0 395.5 13666 0 590 675 14931 -4323 10608 4323 0 3701 5102 3.399 3.692 2.136 + 12 4 10 3 42.86 67.97 68.00 67.98 99.07 92.44 0 47671 13834 14634 0.305 0.317 0.307 1.000 1.000 0 387.5 13411 0 562 661 14634 -4281 10353 4281 0 3606 4965 3.409 3.719 2.144 + 12 4 10 4 43.01 68.17 68.00 67.99 99.09 92.29 0 47688 13788 14219 0.296 0.308 0.298 1.000 1.000 0 376.4 13046 0 531 642 14219 -4225 9994 4225 0 3478 4787 3.419 3.751 2.149 + 12 4 10 5 43.16 68.26 68.00 68.02 99.14 92.20 0 47706 13742 13870 0.289 0.300 0.291 1.000 1.000 0 366.9 12737 0 502 626 13865 -4158 9707 4158 -0 3367 4631 3.430 3.783 2.160 + 12 4 11 0 43.49 68.22 68.00 68.05 99.18 92.11 0 47744 13640 13331 0.277 0.287 0.284 0.983 0.996 0 352.5 12284 0 446 601 13331 -4039 9292 4039 0 2943 4128 3.452 4.173 2.328 + 12 4 11 1 43.82 68.42 68.00 68.04 99.21 92.09 0 47783 13538 12735 0.265 0.273 0.282 0.946 0.987 0 336.4 11772 0 389 574 12735 -3876 8858 3876 -0 2823 3922 3.475 4.171 2.340 + 12 4 11 2 44.15 68.41 68.00 68.08 99.27 92.12 0 47821 13437 12264 0.255 0.262 0.279 0.918 0.979 0 323.7 11374 0 338 552 12264 -3729 8535 3729 0 2722 3749 3.497 4.178 2.362 + 12 4 11 3 44.48 68.51 68.00 68.08 99.29 92.09 0 47860 13335 11684 0.243 0.249 0.277 0.881 0.970 0 308.2 10872 0 287 526 11684 -3568 8117 3568 0 2603 3552 3.520 4.177 2.376 + 12 4 11 4 44.81 68.45 68.00 68.10 99.34 92.09 0 47898 13234 11216 0.233 0.238 0.275 0.851 0.963 0 295.6 10471 0 241 504 11216 -3431 7785 3431 0 2502 3384 3.543 4.185 2.397 + 12 4 11 5 45.14 68.68 68.00 68.09 98.91 91.71 0 47245 12892 10617 0.225 0.225 0.273 0.824 0.956 0 283.7 10133 0 0 484 10617 -3265 7353 3265 0 2461 3081 3.567 4.118 2.497 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 98 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.75 68.00 68.13 98.99 91.79 0 47319 12866 9608 0.203 0.203 0.272 0.747 0.937 0 256.3 9171 0 0 437 9608 -2943 6666 2943 0 2259 2833 3.577 4.060 2.472 + 12 4 12 1 45.44 68.65 68.00 68.15 99.05 91.83 0 47392 12839 9002 0.190 0.190 0.271 0.701 0.925 0 239.8 8593 0 0 409 9002 -2757 6246 2757 -0 2130 2676 3.588 4.034 2.460 + 12 4 12 2 45.59 68.52 68.00 68.13 99.09 91.81 0 47465 12812 8372 0.176 0.176 0.270 0.653 0.913 0 222.7 7993 0 0 380 8372 -2576 5797 2576 0 1995 2511 3.599 4.006 2.441 + 12 4 12 3 45.74 68.36 68.00 68.11 99.11 91.80 0 47538 12786 7792 0.164 0.164 0.269 0.609 0.902 0 206.9 7439 0 0 353 7792 -2409 5382 2409 -0 1868 2357 3.609 3.982 2.424 + 12 4 12 4 45.89 68.31 68.00 68.08 99.13 91.76 0 47612 12759 7324 0.154 0.154 0.268 0.574 0.893 0 194.2 6992 0 0 331 7324 -2279 5044 2279 -0 1762 2230 3.620 3.968 2.410 + 12 4 12 5 46.04 68.34 68.00 68.07 99.17 91.76 0 47685 12732 6846 0.144 0.144 0.267 0.538 0.884 0 181.2 6537 0 0 309 6846 -2138 4708 2138 0 1654 2100 3.631 3.952 2.398 + 12 4 13 0 46.40 68.17 68.00 68.08 99.29 91.80 0 47861 12668 6035 0.126 0.126 0.265 0.476 0.869 0 159.2 5763 0 0 272 6035 -1894 4141 1894 0 1462 1870 3.656 3.943 2.389 + 12 4 13 1 46.76 68.07 68.00 68.05 99.38 91.78 0 48036 12604 5500 0.115 0.115 0.262 0.436 0.859 0 144.5 5254 0 0 247 5500 -1743 3757 1743 -0 1327 1710 3.683 3.959 2.388 + 12 4 13 2 47.12 68.02 68.00 68.03 99.43 91.76 0 48154 12562 4991 0.104 0.104 0.261 0.397 0.849 0 130.8 4768 0 0 223 4991 -1592 3399 1592 -0 1205 1565 3.700 3.956 2.380 + 12 4 13 3 47.48 67.96 68.00 68.02 99.42 91.75 0 48154 12562 4611 .0958 .0958 0.261 0.367 0.842 0 120.9 4405 0 0 206 4611 -1473 3138 1473 0 1123 1466 3.700 3.921 2.360 + 12 4 13 4 47.84 67.90 68.00 68.01 99.41 91.72 0 48154 12562 4402 .0914 .0914 0.261 0.350 0.838 0 115.4 4205 0 0 197 4402 -1409 2992 1409 0 1078 1411 3.700 3.902 2.348 + 12 4 13 5 48.20 67.84 68.00 68.00 99.40 91.70 0 48154 12562 4235 .0879 .0879 0.261 0.337 0.834 0 111.0 4045 0 0 189 4235 -1358 2876 1358 0 1041 1367 3.700 3.886 2.338 + 12 4 14 0 48.47 67.83 68.00 67.98 99.39 91.68 0 48154 12562 4263 .0885 .0885 0.261 0.339 0.835 0 111.8 4072 0 0 191 4263 -1369 2893 1369 0 1047 1374 3.700 3.889 2.338 + 12 4 14 1 48.74 67.75 68.00 67.98 99.38 91.68 0 48154 12562 4296 .0892 .0892 0.261 0.342 0.835 0 112.6 4104 0 0 192 4296 -1381 2915 1381 -0 1054 1383 3.700 3.892 2.338 + 12 4 14 2 49.01 67.78 68.00 67.97 99.37 91.65 0 48154 12562 4251 .0883 .0883 0.261 0.338 0.835 0 111.4 4061 0 0 190 4251 -1369 2882 1369 0 1045 1371 3.700 3.888 2.334 + 12 4 14 3 49.28 67.84 68.00 67.97 99.38 91.66 0 48154 12562 4100 .0851 .0851 0.261 0.326 0.832 0 107.5 3917 0 0 183 4100 -1320 2780 1320 -0 1011 1331 3.700 3.874 2.327 + 12 4 14 4 49.55 67.76 68.00 67.98 99.38 91.67 0 48154 12562 3910 .0812 .0812 0.261 0.311 0.828 0 102.5 3735 0 0 175 3910 -1257 2653 1257 -0 969 1280 3.700 3.856 2.320 + 12 4 14 5 49.82 67.77 68.00 67.97 99.37 91.65 0 48154 12562 3679 .0764 .0764 0.261 0.293 0.823 0 96.5 3515 0 0 165 3679 -1185 2494 1185 0 916 1218 3.700 3.835 2.307 + 12 4 15 0 49.67 67.78 68.00 67.97 99.37 91.65 0 48154 12562 2538 .0527 .0527 0.261 0.202 0.801 0 66.5 2424 0 0 114 2538 -818 1720 818 0 650 900 3.700 3.729 2.253 + 12 4 15 1 49.52 67.76 68.00 67.97 99.37 91.65 0 48154 12562 2244 .0466 .0466 0.261 0.179 0.795 0 58.8 2143 0 0 100 2244 -723 1521 723 0 579 816 3.700 3.702 2.238 + 12 4 15 2 49.37 67.74 68.00 67.96 99.36 91.63 0 48154 12562 2011 .0418 .0418 0.261 0.160 0.790 0 52.7 1921 0 0 90 2011 -649 1362 649 0 522 748 3.700 3.680 2.225 + 12 4 15 3 49.22 67.68 68.00 67.95 99.36 91.62 0 48154 12562 2163 .0449 .0449 0.261 0.172 0.793 0 56.7 2066 0 0 97 2163 -699 1464 699 0 559 793 3.700 3.694 2.232 + 12 4 15 4 49.07 67.66 68.00 67.94 99.34 91.60 0 48154 12562 2665 .0554 .0554 0.261 0.212 0.803 0 69.9 2546 0 0 119 2665 -863 1802 863 0 681 936 3.700 3.741 2.253 + 12 4 15 5 48.92 67.87 68.00 67.94 99.34 91.59 0 48154 12562 3163 .0657 .0657 0.261 0.252 0.813 0 82.9 3022 0 0 141 3163 -1025 2139 1025 0 798 1076 3.700 3.787 2.276 + 12 4 16 0 48.59 67.88 68.00 67.97 99.38 91.65 0 48154 12562 4441 .0922 .0922 0.261 0.354 0.838 0 116.4 4242 0 0 199 4441 -1431 3010 1431 0 1086 1421 3.700 3.905 2.342 + 12 4 16 1 48.26 68.34 68.00 67.98 99.38 91.66 0 48154 12562 5073 0.105 0.105 0.261 0.404 0.851 0 133.0 4846 0 0 227 5073 -1634 3440 1634 -0 1223 1586 3.700 3.964 2.373 + 12 4 16 2 47.93 68.34 68.00 68.05 99.46 91.79 0 48154 12562 5674 0.118 0.118 0.261 0.452 0.863 0 148.7 5420 0 0 254 5674 -1805 3868 1805 -0 1348 1739 3.700 4.020 2.414 + 12 4 16 3 47.60 68.45 68.00 68.06 99.47 91.81 0 48154 12562 6210 0.129 0.129 0.261 0.494 0.874 0 162.8 5932 0 0 278 6210 -1972 4237 1972 0 1458 1872 3.700 4.069 2.442 + 12 4 16 4 47.27 68.55 68.00 68.09 99.49 91.85 0 48154 12562 6641 0.138 0.138 0.261 0.529 0.882 0 174.1 6344 0 0 297 6641 -2102 4539 2102 0 1544 1977 3.700 4.109 2.466 + 12 4 16 5 46.94 68.56 68.00 68.11 99.49 91.89 0 48124 12572 7018 0.146 0.146 0.261 0.558 0.890 0 184.1 6704 0 0 314 7018 -2210 4807 2210 0 1622 2073 3.696 4.133 2.483 + 12 4 17 0 46.79 68.70 68.00 68.11 99.45 91.88 0 48051 12599 7332 0.153 0.153 0.262 0.582 0.895 0 192.6 7004 0 0 329 7332 -2303 5029 2303 0 1695 2160 3.685 4.133 2.485 + 12 4 17 1 46.64 68.78 68.00 68.14 99.43 91.92 0 47978 12626 7573 0.158 0.158 0.263 0.600 0.900 0 199.3 7233 0 0 340 7573 -2363 5210 2363 0 1753 2229 3.674 4.126 2.489 + 12 4 17 2 46.49 68.92 68.00 68.16 99.40 91.94 0 47905 12652 7759 0.162 0.162 0.264 0.613 0.903 0 204.5 7411 0 0 349 7759 -2409 5351 2409 0 1801 2286 3.663 4.115 2.489 + 12 4 17 3 46.34 68.99 68.00 68.19 99.38 91.97 0 47831 12679 7991 0.167 0.167 0.265 0.630 0.908 0 210.9 7631 0 0 360 7991 -2464 5527 2464 0 1858 2354 3.652 4.107 2.492 + 12 4 17 4 46.19 69.12 68.00 68.20 99.35 91.99 0 47758 12706 8162 0.171 0.171 0.266 0.642 0.911 0 215.7 7794 0 0 368 8162 -2505 5657 2505 0 1903 2408 3.641 4.095 2.491 + 12 4 17 5 46.04 69.19 68.00 68.23 99.32 92.02 0 47685 12732 8383 0.176 0.176 0.267 0.658 0.915 0 221.9 8005 0 0 379 8383 -2556 5827 2556 0 1959 2474 3.631 4.087 2.493 + 12 4 18 0 45.47 69.32 68.00 68.24 99.16 91.99 0 47407 12834 8144 0.172 0.172 0.271 0.635 0.909 0 216.9 7774 0 0 370 8144 -2457 5687 2457 0 1960 2466 3.590 3.966 2.441 + 12 4 18 1 44.90 69.34 68.00 68.26 99.51 92.37 0 47909 13206 8405 0.175 0.178 0.274 0.639 0.910 0 221.5 7854 0 174 378 8405 -2506 5900 2506 0 1981 2669 3.550 3.965 2.330 + 12 4 18 2 44.33 69.46 68.00 68.27 99.47 92.43 0 47842 13382 8672 0.180 0.185 0.278 0.651 0.913 0 228.8 8056 0 225 390 8672 -2561 6111 2561 0 2059 2810 3.510 3.914 2.285 + 12 4 18 3 43.76 69.58 68.00 68.29 99.44 92.51 0 47776 13557 8930 0.186 0.192 0.282 0.663 0.916 0 235.9 8250 0 278 403 8930 -2607 6323 2607 -0 2135 2951 3.471 3.865 2.246 + 12 4 18 4 43.19 69.70 68.00 68.31 99.42 92.60 0 47709 13732 9182 0.191 0.198 0.286 0.673 0.918 0 242.9 8436 0 331 414 9182 -2647 6534 2647 0 2209 3092 3.432 3.818 2.211 + 12 4 18 5 42.62 69.84 68.00 68.33 99.40 92.69 0 47643 13908 9459 0.197 0.206 0.290 0.685 0.921 0 250.6 8644 0 388 428 9459 -2694 6765 2694 0 2289 3241 3.393 3.776 2.179 + 12 4 19 0 42.20 69.89 68.00 68.35 99.39 92.76 0 47594 14037 9406 0.196 0.205 0.293 0.675 0.919 0 249.5 8561 0 419 426 9406 -2653 6753 2653 0 2297 3278 3.365 3.727 2.150 + 12 4 19 1 41.78 69.88 68.00 68.36 99.37 92.82 0 47545 14167 9590 0.200 0.210 0.296 0.682 0.920 0 254.6 8696 0 460 434 9590 -2683 6908 2683 0 2352 3383 3.337 3.697 2.128 + 12 4 19 2 41.36 69.88 68.00 68.36 99.34 92.85 0 47496 14296 9779 0.204 0.215 0.299 0.689 0.922 0 259.9 8834 0 502 443 9779 -2718 7061 2718 0 2408 3490 3.309 3.669 2.106 + 12 4 19 3 40.94 69.89 68.00 68.36 99.31 92.89 0 47447 14426 9964 0.208 0.220 0.302 0.696 0.924 0 265.1 8967 0 545 452 9964 -2751 7214 2751 0 2463 3597 3.281 3.641 2.085 + 12 4 19 4 40.52 69.84 68.00 68.37 99.28 92.93 0 47398 14555 10167 0.213 0.226 0.305 0.704 0.926 0 270.8 9116 0 589 462 10167 -2787 7380 2787 0 2521 3709 3.254 3.616 2.066 + 12 4 19 5 40.10 69.84 68.00 68.36 99.24 92.95 0 47349 14685 10349 0.217 0.231 0.308 0.710 0.927 0 275.9 9246 0 633 471 10349 -2822 7527 2822 -0 2576 3816 3.227 3.590 2.046 + 12 4 20 0 40.37 69.80 68.00 68.36 99.26 92.94 0 47380 14602 10548 0.221 0.235 0.306 0.728 0.932 0 281.0 9445 0 624 479 10548 -2887 7661 2887 0 2604 3843 3.244 3.627 2.067 + 12 4 20 1 40.64 69.85 68.00 68.36 99.28 92.91 0 47412 14518 10553 0.221 0.234 0.304 0.732 0.933 0 281.0 9471 0 602 479 10553 -2900 7652 2900 0 2593 3811 3.262 3.653 2.083 + 12 4 20 2 40.91 69.89 68.00 68.37 99.31 92.91 0 47443 14435 10531 0.220 0.233 0.302 0.735 0.934 0 280.2 9475 0 579 478 10531 -2901 7630 2901 0 2577 3770 3.279 3.677 2.100 + 12 4 20 3 41.18 69.75 68.00 68.38 99.34 92.90 0 47475 14352 10553 0.221 0.233 0.300 0.741 0.935 0 280.6 9517 0 557 479 10553 -2914 7639 2914 0 2569 3741 3.297 3.705 2.119 + 12 4 20 4 41.45 69.89 68.00 68.36 99.34 92.85 0 47506 14268 10480 0.219 0.231 0.298 0.740 0.935 0 278.5 9474 0 531 475 10480 -2914 7566 2914 -0 2542 3684 3.315 3.727 2.132 + 12 4 20 5 41.72 69.84 68.00 68.38 99.38 92.87 0 47538 14185 10464 0.218 0.230 0.296 0.743 0.936 0 277.9 9482 0 507 474 10464 -2910 7554 2910 0 2526 3644 3.333 3.753 2.154 + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 99 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.96 68.00 68.37 99.34 92.89 0 47489 14315 10855 0.227 0.239 0.299 0.764 0.941 0 288.5 9800 0 563 492 10855 -3004 7851 3004 0 2621 3813 3.305 3.738 2.135 + 12 4 21 1 40.88 70.02 68.00 68.39 99.33 92.95 0 47440 14444 11006 0.230 0.244 0.302 0.767 0.942 0 292.9 9899 0 607 500 11006 -3018 7988 3018 0 2670 3914 3.277 3.707 2.115 + 12 4 21 2 40.46 70.00 68.00 68.40 99.31 93.00 0 47391 14574 11151 0.234 0.248 0.305 0.771 0.943 0 297.0 9992 0 652 507 11151 -3033 8118 3033 0 2718 4013 3.250 3.676 2.094 + 12 4 21 3 40.04 70.00 68.00 68.40 99.27 93.03 0 47342 14704 11314 0.237 0.253 0.308 0.775 0.944 0 301.7 10102 0 697 515 11314 -3060 8254 3060 -0 2769 4117 3.223 3.648 2.073 + 12 4 21 4 39.62 69.99 68.00 68.40 99.24 93.06 0 47293 14833 11480 0.241 0.258 0.312 0.779 0.945 0 306.4 10214 0 744 523 11480 -3085 8395 3085 0 2821 4224 3.196 3.621 2.054 + 12 4 21 5 39.20 69.99 68.00 68.39 99.20 93.09 0 47244 14963 11643 0.245 0.263 0.315 0.783 0.946 0 311.1 10322 0 790 531 11643 -3111 8532 3111 0 2872 4329 3.169 3.594 2.035 + 12 4 22 0 39.29 70.00 68.00 68.39 99.21 93.08 0 47254 14935 12330 0.259 0.278 0.314 0.831 0.958 0 329.4 10939 0 828 562 12330 -3298 9032 3298 0 3000 4527 3.175 3.646 2.057 + 12 4 22 1 39.38 70.09 68.00 68.40 99.22 93.08 0 47265 14907 12429 0.261 0.280 0.313 0.839 0.960 0 331.9 11035 0 827 566 12429 -3327 9102 3327 0 3015 4544 3.180 3.661 2.065 + 12 4 22 2 39.47 70.13 68.00 68.41 99.25 93.10 0 47275 14880 12496 0.262 0.281 0.313 0.845 0.961 0 333.7 11104 0 823 569 12496 -3339 9157 3339 -0 3023 4552 3.186 3.673 2.074 + 12 4 22 3 39.56 70.14 68.00 68.42 99.26 93.12 0 47286 14852 12560 0.264 0.282 0.312 0.851 0.963 0 335.3 11169 0 819 572 12560 -3354 9206 3354 -0 3030 4558 3.192 3.686 2.082 + 12 4 22 4 39.65 70.09 68.00 68.43 99.27 93.11 0 47296 14824 12621 0.265 0.283 0.311 0.857 0.964 0 336.9 11232 0 815 575 12621 -3372 9249 3372 0 3037 4563 3.198 3.698 2.089 + 12 4 22 5 39.74 70.26 68.00 68.42 99.27 93.10 0 47307 14796 12577 0.264 0.282 0.311 0.856 0.964 0 335.6 11201 0 803 573 12577 -3368 9208 3368 0 3024 4537 3.204 3.703 2.093 + 12 4 23 0 39.59 70.35 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.79 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.35 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.21 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.95 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.79 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 002: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 002: + + + UNSET begDay begDay=nov 1 + UNSET endDay endDay=Apr 30 + +# #define FIXRPTITLES( t) \ +# ALTER REPORT SYSRESMO rpTitle = t \ +# ALTER REPORT ENUSEMO rpTitle = t \ +# ALTER REPORT ENUSEHR rpTitle = t + + ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE + FIXRPTITLES("RSYS -- Aux Alt / Def RevCycleAux") + + RUN + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 002 Sat 01-Jan-22 2:52:41 pm Page 100 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 003: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 55 subhours of run. + Total condensation heat = 0.0547104 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.778 0 0.267 0.172 0 0 0 0 0.0555 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.422 0 1.077 0.762 0 0 0 0 0.221 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.353 0 1.116 0.640 0 0 0 0 0.231 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.617 0 0.704 0.615 0 0 0 0 0.152 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.328 0 0.0835 0.0333 0 0 0 0 0.0172 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.323 0 0.0767 0.0953 0 0 0 0 0.0181 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Lockout / Def RevCycleAux + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 70.052 2.990 1.018 0.0228 0.149 0.0555 1.246 0 0 0 0 0 0 0 0 0 0 0.267 0.0228 0.149 0.0555 0.0359 0.531 0 0 0 0 0 0 0 0.875 -.0073 0 0 0 0 + Dec 268.89 12.247 3.945 0.150 0.612 0.221 4.928 0 0 0 0 0 0 0 0 0 0 1.077 0.150 0.612 0.221 0.0605 2.121 0 0 0 0 0 0 0 3.607 -.0273 0 0 0 0 + Jan 297.26 11.217 4.311 0.0795 0.561 0.231 5.183 0 0 0 0 0 0 0 0 0 0 1.116 0.0795 0.561 0.231 0.0760 2.063 0 0 0 0 0 0 0 3.813 -.0311 0 0 0 0 + Feb 176.65 10.956 2.660 0.0670 0.548 0.152 3.427 0 0 0 0 0 0 0 0 0 0 0.704 0.0670 0.548 0.152 0.0498 1.521 0 0 0 0 0 0 0 2.488 -.0181 0 0 0 0 + Mar 24.435 0.663 0.336 .00019 0.0331 0.0172 0.387 0 0 0 0 0 0 0 0 0 0 0.0835 .00019 0.0331 0.0172 .00887 0.143 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 20.226 1.793 0.296 .00565 0.0896 0.0181 0.410 0 0 0 0 0 0 0 0 0 0 0.0767 .00565 0.0896 0.0181 0.0180 0.208 0 0 0 0 0 0 0 0.289 -.0015 0 0 0 0 + + Yr 857.51 39.866 12.566 0.325 1.993 0.695 15.580 0 0 0 0 0 0 0 0 0 0 3.325 0.325 1.993 0.695 0.249 6.587 0 0 0 0 0 0 0 11.337 -.0893 0 0 0 0 + + + +RSYS -- Aux Lockout / Def RevCycleAux + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.267 0.172 0.0555 0.531 0.875 1.649 0.531 0.875 1.649 0 0 0 0 0 0 0 + Dec 1.077 0.762 0.221 2.121 3.607 1.701 2.121 3.607 1.701 0 0 0 0 0 0 -.0078 + Jan 1.116 0.640 0.231 2.063 3.813 1.848 2.063 3.813 1.848 0 0 0 0 0 0 0 + Feb 0.704 0.615 0.152 1.521 2.488 1.635 1.521 2.488 1.635 0 0 0 0 0 0 -.0039 + Mar 0.0835 0.0333 0.0172 0.143 0.265 1.857 0.143 0.265 1.857 0 0 0 0 0 0 -.0020 + Apr 0.0767 0.0953 0.0181 0.208 0.289 1.388 0.208 0.289 1.388 0 0 0 0 0 0 -.0020 + + Yr 3.325 2.318 0.695 6.587 11.337 1.721 6.587 11.337 1.721 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 101 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Lockout / Def RevCycleAux for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.770 0 0.335 2.241 4.702 2.098 2.241 4.702 2.098 0 0 0 0 0 0 -0.000 + 8 6.157 8.333 1.466 16.093 25.380 1.577 16.093 25.380 1.577 0 0 0 0 0 0 -0.000 + 9 4.708 0 0.891 5.735 14.016 2.444 5.735 14.016 2.444 0 0 0 0 0 0 -0.000 + 10 3.934 0 0.764 4.834 11.600 2.400 4.834 11.600 2.400 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.148 9.800 2.362 4.148 9.800 2.362 0 0 0 0 0 0 -0.000 + 12 2.899 0 0.595 3.630 8.454 2.329 3.630 8.454 2.329 0 0 0 0 0 0 -0.000 + 13 2.362 0 0.502 3.000 7.081 2.360 3.000 7.081 2.360 0 0 0 0 0 0 -0.000 + 14 1.979 0 0.401 2.379 5.690 2.391 2.379 5.690 2.391 0 0 0 0 0 0 0 + 15 1.975 0 0.400 2.375 5.699 2.399 2.375 5.699 2.399 0 0 0 0 0 0 0 + 16 1.963 0 0.397 2.360 5.691 2.412 2.360 5.691 2.412 0 0 0 0 0 0 0 + 17 1.979 0 0.401 2.379 5.775 2.427 2.379 5.775 2.427 0 0 0 0 0 0 0 + 18 1.953 0 0.394 2.347 5.705 2.431 2.347 5.705 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.383 5.444 2.285 2.383 5.444 2.285 0 0 0 0 0 0 -0.000 + 20 1.835 0 0.365 2.336 5.361 2.295 2.336 5.361 2.295 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.503 2.315 2.376 5.503 2.315 0 0 0 0 0 0 -0.000 + 22 2.074 0 0.418 2.628 6.183 2.353 2.628 6.183 2.353 0 0 0 0 0 0 -0.000 + 23 2.386 0 0.482 3.004 7.159 2.383 3.004 7.159 2.383 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Lockout / Def RevCycleAux for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.425 0.841 0.804 6.207 12.548 2.021 6.207 12.548 2.021 0 0 0 0 0 0 -0.000 + 8 5.573 17.499 1.660 24.869 30.268 1.217 24.869 30.268 1.217 0 0 0 0 0 0 -0.000 + 9 5.909 0.853 1.028 7.926 17.176 2.167 7.926 17.176 2.167 0 0 0 0 0 0 -0.000 + 10 4.409 0.480 0.804 5.829 12.967 2.224 5.829 12.967 2.224 0 0 0 0 0 0 -0.000 + 11 3.666 0.307 0.694 4.804 10.933 2.276 4.804 10.933 2.276 0 0 0 0 0 0 -0.000 + 12 3.214 0 0.629 3.979 9.671 2.430 3.979 9.671 2.430 0 0 0 0 0 0 -0.000 + 13 2.285 0 0.477 2.899 7.225 2.493 2.899 7.225 2.493 0 0 0 0 0 0 -0.000 + 14 2.010 0 0.408 2.554 6.193 2.424 2.554 6.193 2.424 0 0 0 0 0 0 -0.000 + 15 1.936 0 0.390 2.463 5.949 2.415 2.463 5.949 2.415 0 0 0 0 0 0 -0.000 + 16 1.339 0 0.252 1.728 3.858 2.233 1.728 3.858 2.233 0 0 0 0 0 0 -0.000 + 17 1.799 0 0.357 2.293 5.470 2.386 2.293 5.470 2.386 0 0 0 0 0 0 -0.000 + 18 1.978 0 0.399 2.514 6.176 2.457 2.514 6.176 2.457 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 102 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.106 0.0676 0.409 2.719 6.356 2.338 2.719 6.356 2.338 0 0 0 0 0 0 -0.000 + 20 2.387 0.411 0.450 3.384 7.117 2.103 3.384 7.117 2.103 0 0 0 0 0 0 -0.000 + 21 2.661 0.598 0.498 3.894 7.969 2.047 3.894 7.969 2.047 0 0 0 0 0 0 -0.000 + 22 2.913 0.772 0.545 4.366 8.830 2.022 4.366 8.830 2.022 0 0 0 0 0 0 -0.000 + 23 3.298 1.058 0.617 5.109 10.104 1.978 5.109 10.104 1.978 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Lockout / Def RevCycleAux for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.598 0.122 0.0835 0.940 1.321 1.405 0.940 1.321 1.405 0 0 0 0 0 0 -0.000 + 6 1.733 0.357 0.248 2.475 3.943 1.593 2.475 3.943 1.593 0 0 0 0 0 0 -0.000 + 7 7.837 9.988 1.533 19.495 27.144 1.392 19.495 27.144 1.392 0 0 0 0 0 0 -0.000 + 8 3.910 34.015 2.015 40.076 39.103 0.976 40.076 39.103 0.976 0 0 0 0 0 0 -0.000 + 9 7.223 2.146 1.139 10.644 19.519 1.834 10.644 19.519 1.834 0 0 0 0 0 0 -0.000 + 10 3.482 0.927 0.627 5.173 10.053 1.943 5.173 10.053 1.943 0 0 0 0 0 0 -0.000 + 11 1.880 0.239 0.344 2.599 5.364 2.064 2.599 5.364 2.064 0 0 0 0 0 0 -0.000 + 12 1.406 0 0.253 1.796 3.859 2.149 1.796 3.859 2.149 0 0 0 0 0 0 -0.000 + 13 0.909 0 0.162 1.208 2.466 2.042 1.208 2.466 2.042 0 0 0 0 0 0 -0.000 + 14 0.433 0 0.0741 0.644 1.116 1.734 0.644 1.116 1.734 0 0 0 0 0 0 -0.000 + 15 0.0366 0 .00604 0.179 0.0903 0.504 0.179 0.0903 0.504 0 0 0 0 0 0 -0.000 + 16 0.0245 0 .00406 0.165 0.0599 0.363 0.165 0.0599 0.363 0 0 0 0 0 0 -0.000 + 17 0.613 0 0.107 0.857 1.577 1.841 0.857 1.577 1.841 0 0 0 0 0 0 -0.000 + 18 1.706 0.0614 0.315 2.219 4.708 2.122 2.219 4.708 2.122 0 0 0 0 0 0 -0.000 + 19 2.235 0.443 0.408 3.223 6.306 1.957 3.223 6.306 1.957 0 0 0 0 0 0 -0.000 + 20 2.692 0.761 0.486 4.076 7.668 1.881 4.076 7.668 1.881 0 0 0 0 0 0 -0.000 + 21 2.952 0.916 0.536 4.541 8.555 1.884 4.541 8.555 1.884 0 0 0 0 0 0 -0.000 + 22 3.290 1.158 0.600 5.185 9.668 1.864 5.185 9.668 1.864 0 0 0 0 0 0 -0.000 + 23 3.666 1.363 0.672 5.837 10.937 1.874 5.837 10.937 1.874 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 40140 42500 31130 3.70 2.91 2.60 2.32 4.45 3.03 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 103 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 254 111 365 1246 875 6 0 0 0 0 0 0 0 + Dec 67.53 896 410 1306 4928 3607 15 0 0 0 0 0 0 0 + Jan 67.52 939 416 1355 5183 3813 15 0 0 0 0 0 0 0 + Feb 67.64 628 297 925 3427 2488 14 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 387 265 2 0 0 0 0 0 0 0 + Apr 69.33 80 38 118 410 289 3 0 0 0 0 0 0 0 + + Yr 68.43 2884 1304 4188 15580 11337 54 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 104 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 82 38 120 451 331 -0 0 0 0 0 0 0 0 + 1 65.00 90 43 133 501 368 0 0 0 0 0 0 0 0 + 2 65.00 103 49 152 578 425 0 0 0 0 0 0 0 0 + 3 65.00 115 55 170 645 475 -0 0 0 0 0 0 0 0 + 4 65.00 128 61 188 714 525 0 0 0 0 0 0 0 0 + 5 65.00 141 67 208 788 580 -0 0 0 0 0 0 0 0 + 6 65.00 158 75 233 882 649 -0 0 0 0 0 0 0 0 + 1 65.96 636 830 1467 8692 7005 220 0 0 0 0 0 0 0 + 2 66.50 588 705 1294 7203 5792 117 0 0 0 0 0 0 0 + 3 66.50 529 332 861 3957 3096 0 0 0 0 0 0 0 0 + 4 66.50 523 336 860 3967 3108 -0 0 0 0 0 0 0 0 + 5 66.50 536 351 887 3988 3101 0 0 0 0 0 0 0 0 + 6 66.50 529 322 851 3719 2868 -0 0 0 0 0 0 0 0 + 1 67.11 622 809 1431 8692 7122 139 0 0 0 0 0 0 0 + 2 67.56 634 819 1453 8692 7136 104 0 0 0 0 0 0 0 + 3 67.90 621 797 1418 8692 7195 79 0 0 0 0 0 0 0 + 4 68.00 545 639 1184 7045 5840 20 0 0 0 0 0 0 0 + 5 68.00 539 548 1087 6121 5034 0 0 0 0 0 0 0 0 + 6 68.00 538 496 1034 5543 4509 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 105 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 542 436 978 4924 3946 -0 0 0 0 0 0 0 0 + 2 68.00 534 376 909 4355 3445 0 0 0 0 0 0 0 0 + 3 68.00 529 324 854 3832 2979 0 0 0 0 0 0 0 0 + 4 68.00 524 281 805 3402 2597 -0 0 0 0 0 0 0 0 + 5 68.00 519 245 764 3031 2267 -0 0 0 0 0 0 0 0 + 6 68.00 513 212 725 2695 1970 0 0 0 0 0 0 0 0 + 1 68.00 508 193 701 2498 1797 0 0 0 0 0 0 0 0 + 2 68.00 485 171 656 2255 1599 0 0 0 0 0 0 0 0 + 3 68.00 436 152 588 2004 1416 0 0 0 0 0 0 0 0 + 4 68.00 399 136 535 1804 1269 0 0 0 0 0 0 0 0 + 5 68.00 362 122 484 1608 1125 0 0 0 0 0 0 0 0 + 6 68.00 327 108 435 1425 990 -0 0 0 0 0 0 0 0 + 1 68.00 318 104 422 1364 942 -0 0 0 0 0 0 0 0 + 2 68.00 290 93 383 1220 837 -0 0 0 0 0 0 0 0 + 3 68.00 262 83 346 1089 743 -0 0 0 0 0 0 0 0 + 4 68.00 236 74 310 963 652 -0 0 0 0 0 0 0 0 + 5 68.00 212 65 278 851 573 0 0 0 0 0 0 0 0 + 6 68.00 185 57 242 736 494 0 0 0 0 0 0 0 0 + 1 68.00 202 62 264 799 535 0 0 0 0 0 0 0 0 + 2 68.00 180 55 236 711 475 -0 0 0 0 0 0 0 0 + 3 68.00 157 48 205 619 414 0 0 0 0 0 0 0 0 + 4 68.00 136 42 178 535 358 0 0 0 0 0 0 0 0 + 5 68.00 116 36 152 456 304 0 0 0 0 0 0 0 0 + 6 68.00 96 29 126 376 250 0 0 0 0 0 0 0 0 + 1 68.00 60 18 78 233 155 0 0 0 0 0 0 0 0 + 2 68.00 37 11 49 144 96 0 0 0 0 0 0 0 0 + 3 68.00 15 5 20 58 39 0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 106 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 7 2 10 27 17 -0 0 0 0 0 0 0 0 + 1 68.00 73 22 95 262 167 0 0 0 0 0 0 0 0 + 2 68.00 80 24 104 287 182 0 0 0 0 0 0 0 0 + 3 68.00 97 29 126 348 222 0 0 0 0 0 0 0 0 + 4 68.00 107 32 139 381 242 0 0 0 0 0 0 0 0 + 5 68.00 117 35 152 417 265 0 0 0 0 0 0 0 0 + 6 68.00 133 40 173 475 302 -0 0 0 0 0 0 0 0 + 1 68.00 133 40 172 472 299 0 0 0 0 0 0 0 0 + 2 68.00 149 44 194 530 336 0 0 0 0 0 0 0 0 + 3 68.00 162 48 210 572 362 0 0 0 0 0 0 0 0 + 4 68.00 179 53 232 632 400 0 0 0 0 0 0 0 0 + 5 68.00 191 57 247 672 425 0 0 0 0 0 0 0 0 + 6 68.00 207 61 269 731 462 0 0 0 0 0 0 0 0 + 1 68.00 232 69 301 817 517 -0 0 0 0 0 0 0 0 + 2 68.00 249 74 323 877 554 0 0 0 0 0 0 0 0 + 3 68.00 265 78 343 934 591 0 0 0 0 0 0 0 0 + 4 68.00 276 82 358 977 619 0 0 0 0 0 0 0 0 + 5 68.00 290 86 376 1028 652 -0 0 0 0 0 0 0 0 + 6 68.00 301 90 391 1076 686 0 0 0 0 0 0 0 0 + 1 68.00 326 99 425 1182 758 0 0 0 0 0 0 0 0 + 2 68.00 336 103 439 1234 794 0 0 0 0 0 0 0 0 + 3 68.00 345 107 452 1282 830 -0 0 0 0 0 0 0 0 + 4 68.00 353 111 464 1331 867 0 0 0 0 0 0 0 0 + 5 68.00 361 116 477 1380 903 0 0 0 0 0 0 0 0 + 6 68.00 368 120 488 1426 938 -0 0 0 0 0 0 0 0 + 1 68.00 405 133 538 1584 1046 -0 0 0 0 0 0 0 0 + 2 68.00 413 137 550 1633 1083 0 0 0 0 0 0 0 0 + 3 68.00 418 141 558 1676 1118 -0 0 0 0 0 0 0 0 + 4 68.00 424 144 568 1723 1155 0 0 0 0 0 0 0 0 + 5 68.00 430 148 578 1768 1190 0 0 0 0 0 0 0 0 + 6 68.00 434 152 585 1807 1222 -0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 107 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 49 23 72 242 170 -0 0 0 0 0 0 0 0 + 4 65.00 121 56 177 595 418 0 0 0 0 0 0 0 0 + 5 65.00 139 65 204 689 486 0 0 0 0 0 0 0 0 + 6 65.00 154 73 227 775 548 0 0 0 0 0 0 0 0 + 1 65.95 715 903 1618 8692 6855 219 0 0 0 0 0 0 0 + 2 66.50 664 778 1442 7245 5684 119 0 0 0 0 0 0 0 + 3 66.50 591 350 940 3868 2927 0 0 0 0 0 0 0 0 + 4 66.50 585 359 943 3915 2972 -0 0 0 0 0 0 0 0 + 5 66.50 600 386 986 4027 3041 -0 0 0 0 0 0 0 0 + 6 66.50 592 356 948 3776 2828 -0 0 0 0 0 0 0 0 + 1 67.12 689 870 1558 8692 6992 142 0 0 0 0 0 0 0 + 2 67.58 698 877 1574 8692 7011 107 0 0 0 0 0 0 0 + 3 67.94 681 850 1531 8692 7079 82 0 0 0 0 0 0 0 + 4 68.00 602 638 1240 6587 5335 12 0 0 0 0 0 0 0 + 5 68.00 594 562 1155 5871 4715 0 0 0 0 0 0 0 0 + 6 68.00 591 503 1094 5281 4187 0 0 0 0 0 0 0 0 + 1 68.00 592 440 1032 4692 3660 0 0 0 0 0 0 0 0 + 2 68.00 584 378 962 4127 3165 -0 0 0 0 0 0 0 0 + 3 68.00 578 328 905 3653 2748 0 0 0 0 0 0 0 0 + 4 68.00 570 284 854 3241 2387 0 0 0 0 0 0 0 0 + 5 68.00 564 247 811 2893 2082 0 0 0 0 0 0 0 0 + 6 68.00 557 216 773 2595 1822 -0 0 0 0 0 0 0 0 + 1 68.00 534 198 733 2411 1679 -0 0 0 0 0 0 0 0 + 2 68.00 482 177 659 2157 1499 0 0 0 0 0 0 0 0 + 3 68.00 435 158 593 1930 1337 0 0 0 0 0 0 0 0 + 4 68.00 394 141 535 1720 1186 0 0 0 0 0 0 0 0 + 5 68.00 358 126 484 1541 1057 -0 0 0 0 0 0 0 0 + 6 68.00 323 112 436 1371 935 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 108 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 350 119 470 1454 985 0 0 0 0 0 0 0 0 + 2 68.00 325 108 433 1324 891 0 0 0 0 0 0 0 0 + 3 68.00 296 97 393 1190 797 0 0 0 0 0 0 0 0 + 4 68.00 269 86 355 1063 708 0 0 0 0 0 0 0 0 + 5 68.00 244 76 320 947 626 0 0 0 0 0 0 0 0 + 6 68.00 217 66 283 827 544 -0 0 0 0 0 0 0 0 + 1 68.00 215 65 280 812 532 0 0 0 0 0 0 0 0 + 2 68.00 196 59 255 735 480 0 0 0 0 0 0 0 0 + 3 68.00 176 53 228 660 432 0 0 0 0 0 0 0 0 + 4 68.00 156 47 203 587 385 0 0 0 0 0 0 0 0 + 5 68.00 139 41 180 522 342 0 0 0 0 0 0 0 0 + 6 68.00 122 36 158 458 300 0 0 0 0 0 0 0 0 + 1 68.00 85 25 110 319 209 0 0 0 0 0 0 0 0 + 2 68.00 66 20 86 248 163 0 0 0 0 0 0 0 0 + 3 68.00 47 14 61 177 116 -0 0 0 0 0 0 0 0 + 4 68.00 31 9 40 114 75 0 0 0 0 0 0 0 0 + 5 68.00 15 5 20 56 37 -0 0 0 0 0 0 0 0 + 6 68.00 1 0 1 4 2 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 68 20 88 254 166 -0 0 0 0 0 0 0 0 + 5 68.00 137 41 178 511 333 0 0 0 0 0 0 0 0 + 6 68.00 152 45 197 572 375 0 0 0 0 0 0 0 0 + 1 68.00 151 45 196 570 374 -0 0 0 0 0 0 0 0 + 2 68.00 176 53 229 668 439 0 0 0 0 0 0 0 0 + 3 68.00 196 61 257 761 504 0 0 0 0 0 0 0 0 + 4 68.00 214 68 282 851 569 0 0 0 0 0 0 0 0 + 5 68.00 231 76 307 945 638 0 0 0 0 0 0 0 0 + 6 68.00 247 83 330 1039 708 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 109 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 247 84 331 1048 717 0 0 0 0 0 0 0 0 + 2 68.00 256 87 343 1093 750 0 0 0 0 0 0 0 0 + 3 68.00 264 90 354 1131 777 -0 0 0 0 0 0 0 0 + 4 68.00 272 93 366 1175 809 -0 0 0 0 0 0 0 0 + 5 68.00 279 96 375 1206 832 0 0 0 0 0 0 0 0 + 6 68.00 287 99 386 1249 862 0 0 0 0 0 0 0 0 + 1 68.00 300 105 406 1315 909 0 0 0 0 0 0 0 0 + 2 68.00 305 108 413 1344 931 0 0 0 0 0 0 0 0 + 3 68.00 314 112 426 1395 969 0 0 0 0 0 0 0 0 + 4 68.00 318 115 433 1422 989 0 0 0 0 0 0 0 0 + 5 68.00 327 119 446 1472 1027 -0 0 0 0 0 0 0 0 + 6 68.00 330 121 451 1495 1044 0 0 0 0 0 0 0 0 + 1 68.00 349 127 476 1569 1093 0 0 0 0 0 0 0 0 + 2 68.00 355 128 483 1585 1102 -0 0 0 0 0 0 0 0 + 3 68.00 360 129 489 1597 1108 0 0 0 0 0 0 0 0 + 4 68.00 365 130 495 1606 1111 -0 0 0 0 0 0 0 0 + 5 68.00 370 130 500 1613 1113 0 0 0 0 0 0 0 0 + 6 68.00 374 131 505 1615 1110 0 0 0 0 0 0 0 0 + 1 68.00 404 141 545 1746 1200 -0 0 0 0 0 0 0 0 + 2 68.00 410 143 553 1772 1219 0 0 0 0 0 0 0 0 + 3 68.00 414 145 559 1796 1236 0 0 0 0 0 0 0 0 + 4 68.00 415 145 560 1800 1240 0 0 0 0 0 0 0 0 + 5 68.00 417 146 563 1819 1256 0 0 0 0 0 0 0 0 + 6 68.00 419 147 566 1834 1269 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 110 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 18 8 26 91 65 -0 0 0 0 0 0 0 0 + 2 65.00 100 46 146 509 364 0 0 0 0 0 0 0 0 + 3 65.00 113 52 165 577 412 0 0 0 0 0 0 0 0 + 4 65.00 125 58 183 644 461 0 0 0 0 0 0 0 0 + 5 65.00 139 64 203 714 511 0 0 0 0 0 0 0 0 + 6 65.00 153 71 224 786 562 0 0 0 0 0 0 0 0 + 1 65.96 682 873 1555 8692 6917 220 0 0 0 0 0 0 0 + 2 66.50 634 743 1377 7185 5692 117 0 0 0 0 0 0 0 + 3 66.50 565 339 905 3884 2980 0 0 0 0 0 0 0 0 + 4 66.50 560 352 912 3962 3050 0 0 0 0 0 0 0 0 + 5 66.50 574 379 953 4084 3130 0 0 0 0 0 0 0 0 + 6 66.50 567 349 916 3823 2907 0 0 0 0 0 0 0 0 + 1 67.10 660 844 1504 8692 7050 138 0 0 0 0 0 0 0 + 2 67.54 670 851 1521 8692 7069 102 0 0 0 0 0 0 0 + 3 67.88 654 826 1480 8692 7135 77 0 0 0 0 0 0 0 + 4 68.00 579 692 1271 7316 6019 26 0 0 0 0 0 0 0 + 5 68.00 572 587 1159 6284 5126 0 0 0 0 0 0 0 0 + 6 68.00 568 531 1099 5722 4624 0 0 0 0 0 0 0 0 + 1 68.00 569 467 1036 5097 4061 0 0 0 0 0 0 0 0 + 2 68.00 563 408 971 4545 3574 -0 0 0 0 0 0 0 0 + 3 68.00 558 356 913 4035 3122 0 0 0 0 0 0 0 0 + 4 68.00 552 319 871 3680 2809 0 0 0 0 0 0 0 0 + 5 68.00 548 289 837 3386 2549 0 0 0 0 0 0 0 0 + 6 68.00 544 265 809 3156 2347 0 0 0 0 0 0 0 0 + 1 68.00 542 259 800 3098 2298 0 0 0 0 0 0 0 0 + 2 68.00 538 244 782 2960 2178 0 0 0 0 0 0 0 0 + 3 68.00 535 233 768 2850 2082 0 0 0 0 0 0 0 0 + 4 68.00 533 223 756 2748 1993 0 0 0 0 0 0 0 0 + 5 68.00 531 215 745 2663 1918 -0 0 0 0 0 0 0 0 + 6 68.00 530 206 736 2572 1836 0 0 0 0 0 0 0 0 + 1 68.00 529 207 736 2588 1852 0 0 0 0 0 0 0 0 + 2 68.00 526 202 728 2536 1809 0 0 0 0 0 0 0 0 + 3 68.00 523 197 720 2488 1768 -0 0 0 0 0 0 0 0 + 4 68.00 521 192 713 2439 1726 0 0 0 0 0 0 0 0 + 5 68.00 519 185 704 2370 1666 0 0 0 0 0 0 0 0 + 6 68.00 514 179 693 2311 1618 -0 0 0 0 0 0 0 0 + 1 68.00 503 170 673 2222 1549 0 0 0 0 0 0 0 0 + 2 68.00 483 163 646 2122 1476 0 0 0 0 0 0 0 0 + 3 68.00 466 155 622 2044 1423 0 0 0 0 0 0 0 0 + 4 68.00 447 148 595 1947 1353 -0 0 0 0 0 0 0 0 + 5 68.00 431 141 572 1869 1298 0 0 0 0 0 0 0 0 + 6 68.00 411 134 544 1770 1225 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 111 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 371 120 490 1601 1111 0 0 0 0 0 0 0 0 + 2 68.00 347 112 459 1500 1041 -0 0 0 0 0 0 0 0 + 3 68.00 325 104 429 1395 966 0 0 0 0 0 0 0 0 + 4 68.00 304 97 402 1299 897 -0 0 0 0 0 0 0 0 + 5 68.00 288 92 380 1221 841 -0 0 0 0 0 0 0 0 + 6 68.00 271 86 357 1141 785 0 0 0 0 0 0 0 0 + 1 68.00 240 76 316 1006 690 0 0 0 0 0 0 0 0 + 2 68.00 221 69 290 916 626 0 0 0 0 0 0 0 0 + 3 68.00 202 63 265 831 566 0 0 0 0 0 0 0 0 + 4 68.00 187 58 245 768 523 0 0 0 0 0 0 0 0 + 5 68.00 179 56 235 734 499 0 0 0 0 0 0 0 0 + 6 68.00 173 54 226 706 480 0 0 0 0 0 0 0 0 + 1 68.00 174 54 228 711 482 0 0 0 0 0 0 0 0 + 2 68.00 176 54 230 716 486 -0 0 0 0 0 0 0 0 + 3 68.00 174 54 228 707 479 0 0 0 0 0 0 0 0 + 4 68.00 168 52 220 682 462 -0 0 0 0 0 0 0 0 + 5 68.00 160 49 209 650 441 -0 0 0 0 0 0 0 0 + 6 68.00 150 47 197 611 414 0 0 0 0 0 0 0 0 + 1 68.00 104 32 136 421 285 0 0 0 0 0 0 0 0 + 2 68.00 92 28 120 373 253 0 0 0 0 0 0 0 0 + 3 68.00 83 25 108 335 227 -0 0 0 0 0 0 0 0 + 4 68.00 89 27 117 361 244 0 0 0 0 0 0 0 0 + 5 68.00 110 34 144 444 300 0 0 0 0 0 0 0 0 + 6 68.00 131 40 171 527 356 0 0 0 0 0 0 0 0 + 1 68.00 183 56 239 740 501 0 0 0 0 0 0 0 0 + 2 68.00 209 64 273 848 575 0 0 0 0 0 0 0 0 + 3 68.00 231 71 302 945 644 0 0 0 0 0 0 0 0 + 4 68.00 251 77 329 1034 706 0 0 0 0 0 0 0 0 + 5 68.00 268 82 350 1107 757 -0 0 0 0 0 0 0 0 + 6 68.00 282 87 369 1171 802 0 0 0 0 0 0 0 0 + 1 68.00 293 91 384 1223 839 -0 0 0 0 0 0 0 0 + 2 68.00 300 94 394 1263 869 -0 0 0 0 0 0 0 0 + 3 68.00 306 96 402 1294 892 0 0 0 0 0 0 0 0 + 4 68.00 313 98 411 1332 921 -0 0 0 0 0 0 0 0 + 5 68.00 317 101 418 1361 943 0 0 0 0 0 0 0 0 + 6 68.00 323 103 426 1398 971 0 0 0 0 0 0 0 0 + 1 68.00 310 100 410 1358 948 -0 0 0 0 0 0 0 0 + 2 68.00 315 103 418 1401 983 0 0 0 0 0 0 0 0 + 3 68.00 320 107 427 1446 1019 0 0 0 0 0 0 0 0 + 4 68.00 325 110 435 1489 1054 0 0 0 0 0 0 0 0 + 5 68.00 328 113 441 1531 1089 0 0 0 0 0 0 0 0 + 6 68.00 333 117 449 1577 1128 0 0 0 0 0 0 0 0 + 1 68.00 327 116 442 1568 1125 0 0 0 0 0 0 0 0 + 2 68.00 329 118 447 1599 1151 -0 0 0 0 0 0 0 0 + 3 68.00 332 121 453 1630 1177 0 0 0 0 0 0 0 0 + 4 68.00 335 124 459 1661 1202 0 0 0 0 0 0 0 0 + 5 68.00 338 126 465 1695 1230 -0 0 0 0 0 0 0 0 + 6 68.00 341 129 471 1725 1255 0 0 0 0 0 0 0 0 + 1 68.00 350 131 481 1758 1277 -0 0 0 0 0 0 0 0 + 2 68.00 352 131 484 1759 1276 -0 0 0 0 0 0 0 0 + 3 68.00 353 131 484 1756 1272 0 0 0 0 0 0 0 0 + 4 68.00 355 131 486 1759 1273 0 0 0 0 0 0 0 0 + 5 68.00 356 130 486 1747 1261 0 0 0 0 0 0 0 0 + 6 68.00 356 129 485 1744 1259 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 112 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 366 135 501 1809 1309 0 0 0 0 0 0 0 0 + 2 68.00 367 136 503 1835 1331 0 0 0 0 0 0 0 0 + 3 68.00 367 138 506 1859 1353 0 0 0 0 0 0 0 0 + 4 68.00 369 141 510 1886 1376 0 0 0 0 0 0 0 0 + 5 68.00 371 143 514 1914 1399 0 0 0 0 0 0 0 0 + 6 68.00 373 146 519 1941 1422 0 0 0 0 0 0 0 0 + 1 68.00 396 154 550 2055 1505 0 0 0 0 0 0 0 0 + 2 68.00 400 155 555 2072 1517 0 0 0 0 0 0 0 0 + 3 68.00 401 156 557 2083 1526 0 0 0 0 0 0 0 0 + 4 68.00 403 156 559 2094 1534 -0 0 0 0 0 0 0 0 + 5 68.00 406 157 562 2104 1542 0 0 0 0 0 0 0 0 + 6 68.00 405 156 562 2096 1535 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 113 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.58 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.44 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.26 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.11 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.92 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.78 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.62 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.46 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.30 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.13 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.97 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.81 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.66 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.50 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.34 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.18 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 66.02 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.86 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.70 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.54 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.38 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.22 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 65.06 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.90 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.74 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.58 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.41 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.25 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.09 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.92 65.00 64.84 95.02 89.58 0 46278 17533 2706 .0589 .0632 0.381 0.153 0.788 0 73.8 2396 0 184 126 2706 -723 1984 722 -1 918 1364 2.831 2.611 1.616 + 12 2 5 0 30.77 64.15 65.00 64.81 94.98 89.62 0 46260 17579 3008 .0655 .0702 0.383 0.170 0.792 0 82.1 2666 0 202 140 3008 -799 2209 799 0 1018 1496 2.828 2.619 1.625 + 12 2 5 1 30.62 64.10 65.00 64.84 95.00 89.67 0 46243 17626 3467 .0755 .0809 0.384 0.195 0.799 0 94.7 3076 0 229 161 3467 -914 2553 914 0 1168 1695 2.825 2.635 1.638 + 12 2 5 2 30.47 64.03 65.00 64.83 94.98 89.66 0 46225 17672 3872 .0844 .0903 0.385 0.218 0.804 0 105.7 3439 0 253 180 3872 -1021 2851 1021 -0 1299 1868 2.823 2.647 1.646 + 12 2 5 3 30.32 63.99 65.00 64.82 94.95 89.64 0 46208 17719 4283 .0934 .0998 0.386 0.240 0.810 0 117.0 3807 0 276 200 4283 -1131 3152 1131 0 1431 2043 2.820 2.660 1.653 + 12 2 5 4 30.17 63.94 65.00 64.81 94.93 89.64 0 46190 17766 4729 0.103 0.110 0.387 0.264 0.816 0 129.2 4208 0 300 220 4729 -1248 3481 1248 -0 1573 2230 2.817 2.675 1.662 + 12 2 5 5 30.02 63.92 65.00 64.80 94.91 89.62 0 46173 17812 5292 0.116 0.123 0.389 0.295 0.824 0 144.7 4714 0 331 247 5292 -1397 3895 1397 -0 1750 2464 2.814 2.694 1.673 + 12 2 6 0 29.90 63.91 65.96 64.85 98.87 96.42 0 0 0 81064 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8800 42033 10121 1321 0 52290 0 0 0.806 + 12 2 6 1 29.78 67.41 66.50 65.68 95.77 93.39 0 46145 17887 43229 0.937 1.006 0.937 1.000 1.000 0 1182 38247 0 2952 2017 43215 -7762 34753 8463 701 13588 18693 2.810 2.815 1.873 + 12 2 6 2 29.66 67.18 66.50 66.57 96.65 92.66 0 46131 17924 23740 0.517 0.552 0.515 1.000 1.000 0 649.6 21127 0 1505 1108 23740 -5164 18576 5164 0 7336 10086 2.807 2.880 1.867 + 12 2 6 3 29.54 66.01 66.50 66.56 96.64 92.68 0 46117 17961 23805 0.519 0.553 0.516 1.000 1.000 0 651.6 21199 0 1494 1112 23804 -5157 18647 5157 -0 7367 10109 2.805 2.878 1.870 + 12 2 6 4 29.42 66.21 66.50 66.41 96.48 92.48 0 46103 17998 23927 0.522 0.556 0.519 1.000 1.000 0 655.2 21323 0 1486 1118 23927 -5320 18607 5320 0 7417 10157 2.803 2.875 1.857 + 12 2 6 5 29.30 66.42 66.50 66.44 96.50 92.25 0 46089 18035 22313 0.487 0.518 0.484 1.000 1.000 0 611.1 19916 0 1355 1043 22313 -5107 17206 5107 -0 6905 9439 2.801 2.884 1.850 + 12 2 7 0 29.57 66.54 67.11 66.48 100.49 98.07 0 0 0 104k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8584 42734 9419 835 0 52290 0 0 0.819 + 12 2 7 1 29.84 68.00 67.56 67.02 101.03 98.58 0 0 0 78004 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8715 42814 9340 625 0 52290 0 0 0.821 + 12 2 7 2 30.11 68.44 67.90 67.59 101.60 99.19 0 0 0 57904 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8507 43171 8982 475 0 52290 0 0 0.828 + 12 2 7 3 30.38 68.56 68.00 67.95 98.09 95.76 0 46215 17700 42284 0.915 0.986 0.915 1.000 1.000 0 1155 37284 0 3015 1970 42269 -7103 35043 7226 123 13185 18306 2.821 2.828 1.929 + 12 2 7 4 30.65 68.29 68.00 68.05 98.22 95.56 0 46246 17617 36729 0.795 0.857 0.794 1.000 1.000 0 1003 32372 0 2646 1710 36729 -6522 30206 6522 0 11379 15872 2.826 2.845 1.920 + 12 2 7 5 30.92 68.15 68.00 68.03 98.21 95.28 0 46278 17533 33257 0.720 0.777 0.719 1.000 1.000 0 907.2 29283 0 2426 1548 33257 -6202 27055 6202 0 10241 14351 2.831 2.859 1.903 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 114 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.49 68.00 68.01 98.31 94.98 0 46463 17039 29544 0.637 0.693 0.636 1.000 1.000 0 802.7 25776 0 2398 1369 29544 -5866 23678 5866 -0 8886 12790 2.861 2.901 1.871 + 12 2 8 1 34.10 68.53 68.00 68.06 98.48 94.74 0 46649 16545 26127 0.561 0.616 0.560 1.000 1.000 0 707.0 22569 0 2352 1206 26127 -5456 20671 5456 0 7666 11360 2.893 2.944 1.842 + 12 2 8 2 35.69 68.64 68.00 68.07 98.61 94.38 0 46834 16051 22994 0.491 0.539 0.491 1.000 1.000 0 619.8 19854 0 2082 1057 22993 -5121 17872 5121 0 6579 9855 2.952 3.018 1.839 + 12 2 8 3 37.28 68.69 68.00 68.09 98.75 94.01 0 47020 15558 20413 0.433 0.470 0.434 1.000 1.000 0 548.0 17853 0 1625 935 20413 -4831 15582 4831 -0 5692 8389 3.049 3.136 1.888 + 12 2 8 4 38.87 68.76 68.00 68.10 98.89 93.59 0 47205 15065 18188 0.383 0.412 0.385 1.000 1.000 0 486.4 16110 0 1248 830 18188 -4584 13604 4584 -0 4924 7138 3.148 3.272 1.943 + 12 2 8 5 40.46 68.82 68.00 68.12 99.03 93.10 0 47391 14574 16172 0.339 0.360 0.341 1.000 1.000 0 430.8 14509 0 928 735 16172 -4353 11819 4353 0 4224 6023 3.250 3.435 2.008 + 12 2 9 0 41.12 68.86 68.00 68.13 99.09 92.74 0 47468 14370 14989 0.314 0.331 0.316 1.000 1.000 0 398.6 13518 0 791 680 14989 -4207 10782 4207 0 3838 5446 3.293 3.522 2.031 + 12 2 9 1 41.78 68.87 68.00 68.15 99.16 92.43 0 47545 14167 13530 0.282 0.297 0.296 0.962 0.990 0 359.2 12268 0 649 613 13530 -3937 9593 3937 0 3084 4482 3.337 3.979 2.208 + 12 2 9 2 42.44 68.78 68.00 68.15 99.21 92.38 0 47622 13963 12025 0.251 0.262 0.291 0.867 0.967 0 318.7 10969 0 511 544 12025 -3528 8496 3528 0 2781 3972 3.381 3.945 2.215 + 12 2 9 3 43.10 68.63 68.00 68.14 99.25 92.31 0 47699 13760 10822 0.225 0.234 0.287 0.792 0.948 0 286.4 9935 0 399 489 10822 -3211 7612 3211 0 2526 3551 3.425 3.932 2.229 + 12 2 9 4 43.76 68.45 68.00 68.12 99.27 92.21 0 47776 13557 9650 0.201 0.207 0.282 0.716 0.929 0 255.0 8915 0 300 435 9650 -2903 6747 2903 0 2274 3145 3.471 3.921 2.243 + 12 2 9 5 44.42 68.18 68.00 68.09 99.29 92.10 0 47853 13354 8551 0.178 0.182 0.278 0.644 0.911 0 225.6 7952 0 215 385 8551 -2609 5942 2609 -0 2031 2767 3.516 3.915 2.259 + 12 2 10 0 44.93 67.93 68.00 68.04 99.29 91.97 0 47912 13197 8186 0.170 0.174 0.274 0.623 0.906 0 215.7 7651 0 167 368 8186 -2533 5653 2533 -0 1937 2608 3.552 3.950 2.287 + 12 2 10 1 45.44 67.81 68.00 67.99 98.90 91.56 0 47392 12839 7323 0.155 0.155 0.271 0.570 0.893 0 195.1 6990 0 0 333 7323 -2299 5024 2299 -0 1796 2265 3.588 3.892 2.360 + 12 2 10 2 45.95 67.51 68.00 67.97 99.04 91.57 0 47641 12748 6534 0.137 0.137 0.268 0.513 0.878 0 173.1 6238 0 0 295 6534 -2073 4460 2073 -0 1596 2028 3.624 3.909 2.359 + 12 2 10 3 46.46 67.36 68.00 67.92 99.15 91.52 0 47890 12658 5776 0.121 0.121 0.264 0.456 0.864 0 152.3 5516 0 0 260 5776 -1862 3915 1862 -0 1403 1800 3.661 3.931 2.354 + 12 2 10 4 46.97 67.11 68.00 67.89 99.28 91.50 0 48139 12567 5106 0.106 0.106 0.261 0.406 0.852 0 133.9 4878 0 0 228 5106 -1666 3440 1666 0 1231 1596 3.698 3.962 2.357 + 12 2 10 5 47.48 66.94 68.00 67.84 99.24 91.42 0 48154 12562 4417 .0917 .0917 0.261 0.352 0.838 0 115.8 4219 0 0 198 4417 -1452 2965 1452 0 1081 1415 3.700 3.903 2.319 + 12 2 11 0 48.20 66.83 68.00 67.80 99.21 91.37 0 48154 12562 4791 .0995 .0995 0.261 0.381 0.845 0 125.6 4577 0 0 214 4791 -1582 3209 1582 0 1162 1513 3.700 3.938 2.331 + 12 2 11 1 48.92 66.86 68.00 67.78 99.18 91.32 0 48154 12562 4264 .0885 .0885 0.261 0.339 0.835 0 111.8 4073 0 0 191 4264 -1414 2850 1414 -0 1047 1374 3.700 3.889 2.302 + 12 2 11 2 49.64 66.83 68.00 67.78 99.19 91.33 0 48154 12562 3716 .0772 .0772 0.261 0.296 0.824 0 97.4 3550 0 0 166 3716 -1232 2484 1232 0 925 1228 3.700 3.838 2.277 + 12 2 11 3 50.36 66.75 68.00 67.77 99.18 91.31 0 48154 12562 3212 .0667 .0667 0.261 0.256 0.814 0 84.2 3068 0 0 144 3212 -1066 2145 1066 0 809 1089 3.700 3.791 2.251 + 12 2 11 4 51.08 66.68 68.00 67.75 99.16 91.27 0 48154 12562 2734 .0568 .0568 0.261 0.218 0.804 0 71.7 2612 0 0 122 2734 -911 1823 911 0 697 956 3.700 3.747 2.226 + 12 2 11 5 51.80 66.60 68.00 67.74 99.14 91.24 0 48154 12562 2256 .0468 .0468 0.261 0.180 0.795 0 59.1 2155 0 0 101 2256 -753 1503 753 0 582 819 3.700 3.703 2.200 + 12 2 12 0 52.70 66.49 68.00 67.72 99.13 91.22 0 48154 12562 1400 .0291 .0291 0.261 0.111 0.778 0 36.7 1338 0 0 63 1400 -469 932 469 0 369 432 3.700 3.624 2.158 + 12 2 12 1 53.60 66.30 68.00 67.70 99.10 91.17 0 48154 12562 866 .0180 .0180 0.261 .0690 0.767 0 22.7 828 0 0 39 866 -291 575 291 0 232 270 3.700 3.574 2.129 + 12 2 12 2 54.50 66.14 68.00 67.66 99.06 91.11 0 48154 12562 350 .0073 .0073 0.261 .0279 0.757 0 9.2 335 0 0 16 350 -118 232 118 0 95 111 3.700 3.526 2.098 + 12 2 12 3 55.40 65.97 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.88 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.82 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.79 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.74 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.69 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.67 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.63 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.59 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.54 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.49 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.45 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.40 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.36 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.31 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.25 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.21 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.15 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 65.09 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 65.03 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 65.00 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.95 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.89 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.83 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.78 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.67 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.60 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 115 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.55 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.41 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.34 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.28 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.22 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 64.05 68.00 67.23 98.63 90.27 0 48154 12562 159 .0033 .0033 0.261 .0127 0.753 0 4.2 152 0 0 7 159 -58 102 58 -0 43 50 3.700 3.509 2.013 + 12 2 18 0 53.00 63.97 68.00 67.17 98.57 90.22 0 48154 12562 1570 .0326 .0326 0.261 0.125 0.781 0 41.1 1499 0 0 70 1570 -570 1000 570 0 412 482 3.700 3.639 2.073 + 12 2 18 1 52.94 64.11 68.00 67.15 98.55 90.19 0 48154 12562 1720 .0357 .0357 0.261 0.137 0.784 0 45.1 1643 0 0 77 1720 -626 1094 626 0 450 527 3.700 3.653 2.077 + 12 2 18 2 52.88 63.98 68.00 67.18 98.58 90.23 0 48154 12562 2088 .0434 .0434 0.261 0.166 0.792 0 54.7 1994 0 0 93 2088 -758 1330 758 0 541 634 3.700 3.687 2.097 + 12 2 18 3 52.82 63.96 68.00 67.15 98.56 90.19 0 48154 12562 2285 .0475 .0475 0.261 0.182 0.795 0 59.9 2183 0 0 102 2285 -832 1453 832 0 589 691 3.700 3.706 2.102 + 12 2 18 4 52.76 63.97 68.00 67.15 98.55 90.18 0 48154 12562 2504 .0520 .0520 0.261 0.199 0.800 0 65.6 2392 0 0 112 2504 -912 1591 912 0 642 754 3.700 3.726 2.111 + 12 2 18 5 52.70 63.84 68.00 67.15 98.55 90.18 0 48154 12562 2847 .0591 .0591 0.261 0.227 0.807 0 74.6 2720 0 0 127 2847 -1038 1810 1038 -0 724 851 3.700 3.758 2.126 + 12 2 19 0 52.19 63.84 68.00 67.12 98.53 90.14 0 48154 12562 2830 .0588 .0588 0.261 0.225 0.806 0 74.2 2703 0 0 127 2830 -1035 1795 1035 0 720 846 3.700 3.756 2.121 + 12 2 19 1 51.68 63.74 68.00 67.12 98.52 90.13 0 48154 12562 3180 .0660 .0660 0.261 0.253 0.813 0 83.4 3037 0 0 142 3180 -1163 2017 1163 0 802 944 3.700 3.789 2.137 + 12 2 19 2 51.17 63.75 68.00 67.10 98.50 90.10 0 48154 12562 3434 .0713 .0713 0.261 0.273 0.818 0 90.0 3281 0 0 154 3434 -1259 2175 1259 0 861 1014 3.700 3.812 2.144 + 12 2 19 3 50.66 63.67 68.00 67.10 98.50 90.09 0 48154 12562 3792 .0787 .0787 0.261 0.302 0.825 0 99.4 3622 0 0 170 3792 -1391 2401 1391 0 942 1112 3.700 3.845 2.160 + 12 2 19 4 50.15 63.69 68.00 67.08 98.49 90.07 0 48154 12562 4034 .0838 .0838 0.261 0.321 0.830 0 105.8 3854 0 0 180 4034 -1483 2552 1483 0 996 1177 3.700 3.868 2.168 + 12 2 19 5 49.64 63.61 68.00 67.09 98.49 90.07 0 48154 12562 4385 .0911 .0911 0.261 0.349 0.837 0 115.0 4189 0 0 196 4385 -1611 2774 1611 0 1074 1270 3.700 3.900 2.184 + 12 2 20 0 49.13 63.62 68.00 67.07 98.48 90.05 0 48154 12562 4904 0.102 0.102 0.261 0.390 0.848 0 128.6 4684 0 0 219 4904 -1805 3099 1805 -0 1186 1542 3.700 3.948 2.205 + 12 2 20 1 48.62 63.70 68.00 67.07 98.48 90.05 0 48154 12562 5261 0.109 0.109 0.261 0.419 0.855 0 137.9 5025 0 0 235 5261 -1936 3324 1936 0 1262 1634 3.700 3.981 2.220 + 12 2 20 2 48.11 63.78 68.00 67.09 98.49 90.08 0 48154 12562 5605 0.116 0.116 0.261 0.446 0.862 0 146.9 5354 0 0 251 5605 -2059 3546 2059 0 1334 1721 3.700 4.013 2.237 + 12 2 20 3 47.60 63.89 68.00 67.10 98.51 90.10 0 48154 12562 5860 0.122 0.122 0.261 0.466 0.867 0 153.6 5598 0 0 262 5860 -2149 3711 2149 0 1387 1785 3.700 4.037 2.251 + 12 2 20 4 47.09 63.98 68.00 67.12 98.53 90.13 0 48154 12562 6169 0.128 0.128 0.261 0.491 0.873 0 161.7 5893 0 0 276 6169 -2256 3913 2256 -0 1450 1862 3.700 4.066 2.268 + 12 2 20 5 46.58 64.15 68.00 67.14 98.41 90.14 0 47949 12636 6458 0.135 0.135 0.264 0.511 0.878 0 170.0 6168 0 0 290 6458 -2343 4114 2343 0 1537 1963 3.669 4.014 2.252 + 12 2 21 0 46.10 64.23 68.00 67.18 98.30 90.16 0 47714 12722 7094 0.149 0.149 0.267 0.558 0.889 0 187.7 6774 0 0 320 7094 -2548 4546 2548 0 1700 2157 3.635 3.984 2.250 + 12 2 21 1 45.62 64.35 68.00 67.20 98.16 90.15 0 47480 12807 7402 0.156 0.156 0.270 0.578 0.894 0 196.8 7066 0 0 336 7402 -2636 4766 2636 0 1799 2271 3.601 3.928 2.233 + 12 2 21 2 45.14 64.45 68.00 67.23 98.04 90.16 0 47245 12892 7693 0.163 0.163 0.273 0.597 0.899 0 205.5 7342 0 0 351 7693 -2713 4980 2713 -0 1895 2382 3.567 3.874 2.217 + 12 2 21 3 44.66 64.53 68.00 67.25 98.48 90.60 0 47881 13280 7986 0.166 0.170 0.276 0.604 0.901 0 210.6 7444 0 183 359 7986 -2784 5202 2784 0 1909 2588 3.533 3.899 2.122 + 12 2 21 4 44.18 64.61 68.00 67.27 98.46 90.68 0 47825 13428 8277 0.172 0.177 0.279 0.620 0.905 0 218.5 7678 0 226 373 8277 -2860 5418 2860 0 1987 2723 3.500 3.863 2.095 + 12 2 21 5 43.70 64.70 68.00 67.29 98.45 90.77 0 47769 13575 8556 0.178 0.184 0.283 0.634 0.908 0 226.1 7899 0 271 386 8556 -2928 5627 2928 -0 2063 2856 3.466 3.828 2.069 + 12 2 22 0 43.28 64.79 68.00 67.31 98.43 90.84 0 47720 13705 9507 0.198 0.205 0.285 0.698 0.925 0 251.5 8742 0 336 429 9507 -3229 6278 3229 -0 2269 3170 3.438 3.853 2.070 + 12 2 22 1 42.86 64.98 68.00 67.33 98.42 90.91 0 47671 13834 9800 0.204 0.212 0.288 0.713 0.928 0 259.5 8975 0 382 443 9800 -3300 6500 3300 0 2345 3306 3.409 3.828 2.051 + 12 2 22 2 42.44 65.10 68.00 67.37 98.43 91.02 0 47622 13963 10058 0.210 0.219 0.291 0.725 0.931 0 266.6 9175 0 428 455 10058 -3348 6709 3348 -0 2414 3433 3.381 3.800 2.035 + 12 2 22 3 42.02 65.19 68.00 67.40 98.43 91.11 0 47573 14093 10337 0.216 0.226 0.294 0.739 0.935 0 274.3 9394 0 476 468 10337 -3409 6929 3409 0 2488 3568 3.353 3.776 2.019 + 12 2 22 4 41.60 65.29 68.00 67.42 98.41 91.18 0 47524 14222 10607 0.222 0.233 0.297 0.751 0.938 0 281.7 9601 0 524 481 10607 -3467 7140 3467 0 2560 3701 3.325 3.751 2.003 + 12 2 22 5 41.18 65.40 68.00 67.44 98.41 91.26 0 47475 14352 10842 0.227 0.239 0.300 0.761 0.940 0 288.3 9777 0 573 492 10842 -3511 7331 3511 -0 2625 3826 3.297 3.725 1.987 + 12 2 23 0 41.27 65.48 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 64.01 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.67 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.46 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.33 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.17 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.07 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 63.01 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.83 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.75 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.58 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.50 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 116 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.45 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.31 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.27 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.17 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.17 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 62.06 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.98 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.94 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.93 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.85 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.74 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.65 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.55 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.45 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.35 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.24 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.14 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 61.03 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.93 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.82 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.71 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.59 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.48 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.37 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.25 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.13 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 60.02 65.00 64.15 94.18 88.47 0 46047 18147 1451 .0318 .0337 0.397 .0793 0.770 0 39.8 1302 0 82 68 1451 -432 1021 430 -2 524 810 2.794 2.482 1.515 + 12 3 5 3 28.64 60.13 65.00 64.10 94.11 88.43 0 46012 18240 3570 .0783 .0828 0.400 0.194 0.799 0 97.9 3208 0 195 167 3570 -1061 2508 1061 0 1251 1749 2.789 2.565 1.556 + 12 3 5 4 28.34 60.38 65.00 64.12 94.11 88.46 0 45977 18333 4137 .0908 .0958 0.402 0.224 0.806 0 113.6 3724 0 219 194 4137 -1223 2914 1223 0 1444 1993 2.783 2.579 1.569 + 12 3 5 5 28.04 60.42 65.00 64.16 94.13 88.54 0 45942 18426 4651 0.102 0.108 0.404 0.250 0.813 0 127.8 4195 0 238 218 4651 -1362 3288 1362 0 1619 2212 2.778 2.590 1.584 + 12 3 6 0 28.07 60.44 65.95 64.39 98.40 95.76 0 0 0 82183 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9710 41129 11025 1314 0 52290 0 0 0.789 + 12 3 6 1 28.10 64.61 66.50 65.21 95.17 92.62 0 45949 18408 43485 0.946 1.007 0.946 1.000 1.000 0 1194 38847 0 2588 2038 43472 -8654 34104 9369 715 13955 18717 2.779 2.784 1.835 + 12 3 6 2 28.13 64.33 66.50 66.10 96.07 91.70 0 45952 18398 23205 0.508 0.537 0.505 1.000 1.000 0 637.5 20853 0 1265 1088 23205 -5642 17563 5642 0 7293 9782 2.780 2.859 1.821 + 12 3 6 3 28.16 62.93 66.50 66.09 96.06 91.78 0 45956 18389 23490 0.514 0.544 0.511 1.000 1.000 0 645.3 21102 0 1287 1101 23490 -5660 17831 5660 -0 7384 9909 2.780 2.858 1.825 + 12 3 6 4 28.19 63.19 66.50 65.92 95.89 91.65 0 45959 18380 24161 0.529 0.559 0.526 1.000 1.000 0 663.6 21694 0 1336 1132 24161 -5915 18246 5915 -0 7602 10206 2.781 2.854 1.812 + 12 3 6 5 28.22 63.49 66.50 65.94 95.92 91.44 0 45963 18370 22654 0.496 0.525 0.493 1.000 1.000 0 622.2 20353 0 1240 1062 22654 -5689 16966 5689 -0 7105 9543 2.781 2.865 1.804 + 12 3 7 0 28.52 63.76 67.12 66.09 100.10 97.52 0 0 0 105k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9348 41953 10201 852 0 52290 0 0 0.804 + 12 3 7 1 28.82 65.46 67.58 66.66 100.67 98.06 0 0 0 77103 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9447 42064 10089 643 0 52290 0 0 0.807 + 12 3 7 2 29.12 65.92 67.94 67.27 101.29 98.72 0 0 0 55866 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9186 42474 9679 493 0 52290 0 0 0.814 + 12 3 7 3 29.42 66.07 68.00 67.63 97.70 95.06 0 46103 17998 39523 0.858 0.919 0.857 1.000 1.000 0 1082 35071 0 2605 1846 39523 -7442 32010 7513 71 12455 17043 2.803 2.816 1.893 + 12 3 7 4 29.72 65.83 68.00 67.70 97.79 94.85 0 46138 17905 35223 0.765 0.819 0.763 1.000 1.000 0 963.7 31226 0 2353 1644 35223 -6931 28292 6931 0 11026 15160 2.809 2.832 1.883 + 12 3 7 5 30.02 65.86 68.00 67.66 97.77 94.53 0 46173 17812 31688 0.688 0.738 0.686 1.000 1.000 0 866.3 28063 0 2147 1478 31688 -6566 25122 6566 0 9852 13613 2.814 2.848 1.864 + 12 3 8 0 31.40 66.07 68.00 67.65 97.87 94.19 0 46334 17384 28150 0.609 0.658 0.608 1.000 1.000 0 766.9 24740 0 2101 1308 28150 -6190 21961 6190 0 8571 12117 2.840 2.886 1.833 + 12 3 8 1 32.78 66.15 68.00 67.67 97.99 93.84 0 46495 16955 24762 0.534 0.581 0.533 1.000 1.000 0 672.3 21585 0 2029 1147 24762 -5769 18992 5769 -0 7375 10688 2.867 2.927 1.800 + 12 3 8 2 34.16 66.26 68.00 67.66 98.09 93.43 0 46656 16526 21919 0.470 0.517 0.470 1.000 1.000 0 593.1 18934 0 1973 1012 21919 -5431 16488 5431 0 6379 9501 2.894 2.968 1.761 + 12 3 8 3 35.54 66.31 68.00 67.67 98.20 92.98 0 46817 16097 19445 0.415 0.457 0.415 1.000 1.000 0 524.3 16764 0 1786 894 19445 -5124 14320 5124 0 5528 8345 2.943 3.033 1.745 + 12 3 8 4 36.92 66.41 68.00 67.66 98.30 92.49 0 46978 15669 17360 0.368 0.402 0.370 1.000 1.000 0 466.5 15125 0 1440 796 17360 -4869 12491 4869 0 4817 7189 3.027 3.140 1.771 + 12 3 8 5 38.30 66.48 68.00 67.66 98.40 91.99 0 47139 15242 15572 0.328 0.355 0.330 1.000 1.000 0 417.0 13708 0 1152 711 15572 -4638 10934 4638 -0 4202 6202 3.112 3.263 1.803 + 12 3 9 0 38.84 66.53 68.00 67.67 98.45 91.81 0 47202 15074 14467 0.304 0.328 0.317 0.966 0.991 0 386.9 12788 0 1019 660 14467 -4395 10072 4395 -0 3418 5233 3.146 3.741 1.976 + 12 3 9 1 39.38 66.55 68.00 67.68 98.50 91.79 0 47265 14907 12943 0.272 0.291 0.313 0.874 0.968 0 345.7 11492 0 861 590 12943 -3951 8991 3951 0 3111 4698 3.180 3.694 1.971 + 12 3 9 2 39.92 66.38 68.00 67.68 98.55 91.76 0 47328 14741 11580 0.243 0.259 0.309 0.791 0.948 0 308.9 10329 0 724 527 11580 -3558 8022 3558 0 2826 4214 3.215 3.655 1.967 + 12 3 9 3 40.46 66.26 68.00 67.65 98.56 91.67 0 47391 14574 10321 0.216 0.230 0.305 0.713 0.928 0 274.9 9249 0 603 469 10321 -3208 7113 3208 0 2555 3763 3.250 3.621 1.961 + 12 3 9 4 41.00 66.09 68.00 67.63 98.58 91.58 0 47454 14407 9247 0.193 0.204 0.301 0.646 0.912 0 246.0 8326 0 502 420 9247 -2905 6342 2905 -0 2314 3372 3.285 3.597 1.960 + 12 3 9 5 41.54 65.88 68.00 67.60 98.59 91.49 0 47517 14241 8226 0.172 0.181 0.298 0.582 0.895 0 218.5 7442 0 411 373 8226 -2615 5611 2615 0 2081 3001 3.321 3.577 1.959 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 117 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.82 68.00 67.56 98.61 91.36 0 47608 14000 8725 0.182 0.190 0.292 0.628 0.907 0 231.3 7950 0 380 395 8725 -2818 5907 2818 0 2155 3066 3.373 3.690 2.017 + 12 3 10 1 43.10 65.87 68.00 67.54 98.65 91.26 0 47699 13760 7944 0.165 0.172 0.287 0.581 0.895 0 210.2 7292 0 293 359 7944 -2599 5345 2599 0 1963 2752 3.425 3.714 2.044 + 12 3 10 2 43.88 65.86 68.00 67.55 98.72 91.20 0 47790 13520 7138 0.148 0.153 0.281 0.531 0.883 0 188.5 6602 0 214 322 7138 -2356 4781 2356 0 1766 2439 3.479 3.738 2.077 + 12 3 10 3 44.66 65.81 68.00 67.54 98.77 91.11 0 47881 13280 6381 0.133 0.136 0.276 0.483 0.871 0 168.2 5948 0 146 287 6381 -2130 4250 2130 0 1579 2148 3.533 3.768 2.113 + 12 3 10 4 45.44 65.76 68.00 67.53 98.44 90.72 0 47392 12839 5680 0.120 0.120 0.271 0.442 0.861 0 151.3 5422 0 0 258 5680 -1922 3758 1922 0 1445 1840 3.588 3.752 2.206 + 12 3 10 5 46.22 65.71 68.00 67.52 98.67 90.76 0 47773 12700 4961 0.104 0.104 0.266 0.391 0.848 0 131.1 4737 0 0 224 4961 -1699 3262 1699 -0 1241 1601 3.644 3.817 2.227 + 12 3 11 0 46.58 65.69 68.00 67.50 98.77 90.77 0 47949 12636 4872 0.102 0.102 0.264 0.386 0.846 0 128.3 4654 0 0 219 4872 -1679 3194 1679 0 1202 1558 3.669 3.870 2.247 + 12 3 11 1 46.94 65.83 68.00 67.50 98.88 90.79 0 48124 12572 4409 .0916 .0916 0.261 0.351 0.838 0 115.7 4212 0 0 197 4409 -1528 2882 1528 0 1082 1416 3.696 3.892 2.252 + 12 3 11 2 47.30 65.87 68.00 67.52 98.92 90.83 0 48154 12562 3958 .0822 .0822 0.261 0.315 0.829 0 103.8 3781 0 0 177 3958 -1368 2589 1368 0 979 1293 3.700 3.861 2.239 + 12 3 11 3 47.66 65.92 68.00 67.53 98.93 90.84 0 48154 12562 3524 .0732 .0732 0.261 0.281 0.820 0 92.4 3367 0 0 158 3524 -1217 2307 1217 0 881 1175 3.700 3.820 2.221 + 12 3 11 4 48.02 65.95 68.00 67.53 98.94 90.86 0 48154 12562 3131 .0650 .0650 0.261 0.249 0.812 0 82.1 2991 0 0 140 3131 -1080 2051 1080 0 790 1067 3.700 3.784 2.204 + 12 3 11 5 48.38 65.92 68.00 67.54 98.94 90.86 0 48154 12562 2747 .0570 .0570 0.261 0.219 0.805 0 72.0 2624 0 0 123 2747 -947 1800 947 0 700 959 3.700 3.748 2.187 + 12 3 12 0 48.86 65.91 68.00 67.54 98.94 90.86 0 48154 12562 1914 .0397 .0397 0.261 0.152 0.788 0 50.2 1828 0 0 86 1914 -660 1254 660 0 498 720 3.700 3.671 2.148 + 12 3 12 1 49.34 65.73 68.00 67.53 98.94 90.85 0 48154 12562 1490 .0310 .0310 0.261 0.119 0.780 0 39.1 1424 0 0 67 1490 -514 976 514 0 392 595 3.700 3.632 2.128 + 12 3 12 2 49.82 65.61 68.00 67.50 98.91 90.80 0 48154 12562 1065 .0221 .0221 0.261 .0848 0.771 0 27.9 1017 0 0 48 1065 -369 696 369 -0 283 467 3.700 3.592 2.104 + 12 3 12 3 50.30 65.50 68.00 67.48 98.89 90.77 0 48154 12562 687 .0143 .0143 0.261 .0547 0.764 0 18.0 656 0 0 31 687 -239 448 239 0 184 352 3.700 3.557 2.083 + 12 3 12 4 50.78 65.39 68.00 67.47 98.87 90.74 0 48154 12562 337 .0070 .0070 0.261 .0268 0.757 0 8.8 322 0 0 15 337 -117 219 117 -0 91 243 3.700 3.525 2.064 + 12 3 12 5 51.26 65.30 68.00 67.45 98.85 90.71 0 48154 12562 22 .0005 .0005 0.261 .0018 0.750 0 0.6 21 0 0 1 22 -8 14 8 0 6 143 3.700 3.496 2.047 + 12 3 13 0 51.59 65.25 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.26 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.27 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.29 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.28 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.32 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.41 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.49 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.56 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.35 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.54 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.50 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.59 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.64 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.66 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.64 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.69 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.54 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.62 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.62 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.64 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.67 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.68 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.70 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.74 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.55 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.75 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.36 68.00 67.53 98.93 90.84 0 48154 12562 1525 .0317 .0317 0.261 0.121 0.780 0 40.0 1456 0 0 68 1525 -528 998 527 -1 401 469 3.700 3.635 2.128 + 12 3 17 4 49.49 65.90 68.00 67.45 98.85 90.73 0 48154 12562 3064 .0636 .0636 0.261 0.244 0.811 0 80.3 2927 0 0 137 3064 -1068 1995 1068 0 775 912 3.700 3.778 2.189 + 12 3 17 5 49.10 65.99 68.00 67.54 98.94 90.87 0 48154 12562 3434 .0713 .0713 0.261 0.273 0.818 0 90.0 3280 0 0 154 3434 -1183 2250 1183 0 860 1014 3.700 3.812 2.219 + 12 3 18 0 48.05 66.05 68.00 67.56 98.97 90.91 0 48154 12562 3421 .0710 .0710 0.261 0.272 0.818 0 89.7 3268 0 0 153 3421 -1175 2246 1175 -0 858 1147 3.700 3.811 2.223 + 12 3 18 1 47.00 66.11 68.00 67.57 98.98 90.93 0 48154 12562 4006 .0832 .0832 0.261 0.319 0.830 0 105.0 3827 0 0 179 4006 -1373 2633 1373 0 990 1306 3.700 3.865 2.252 + 12 3 18 2 45.95 66.26 68.00 67.59 98.66 90.88 0 47641 12748 4567 .0959 .0959 0.268 0.358 0.840 0 121.0 4361 0 0 206 4567 -1541 3026 1541 0 1167 1510 3.624 3.738 2.204 + 12 3 18 3 44.90 66.42 68.00 67.62 98.87 91.23 0 47909 13206 5104 0.106 0.108 0.274 0.388 0.847 0 134.5 4769 0 105 229 5104 -1689 3415 1689 0 1292 1763 3.550 3.691 2.099 + 12 3 18 4 43.85 66.63 68.00 67.66 98.82 91.39 0 47786 13529 5671 0.118 0.122 0.281 0.422 0.855 0 149.8 5244 0 172 256 5671 -1841 3830 1841 0 1449 2013 3.477 3.619 2.042 + 12 3 18 5 42.80 66.86 68.00 67.70 98.78 91.55 0 47664 13852 6233 0.130 0.135 0.289 0.453 0.863 0 165.1 5705 0 246 282 6233 -1983 4250 1983 0 1605 2269 3.405 3.554 1.993 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 118 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.96 68.00 67.74 98.81 91.63 0 47646 13899 6289 0.131 0.137 0.290 0.456 0.864 0 166.6 5748 0 256 284 6289 -1985 4303 1985 0 1622 2299 3.395 3.543 1.990 + 12 3 19 1 42.50 66.97 68.00 67.76 98.82 91.68 0 47629 13945 6555 0.137 0.143 0.291 0.473 0.868 0 173.7 5983 0 275 296 6555 -2058 4498 2058 0 1686 2395 3.385 3.548 1.992 + 12 3 19 2 42.35 67.08 68.00 67.76 98.81 91.70 0 47611 13991 6784 0.141 0.148 0.292 0.488 0.872 0 179.9 6183 0 294 307 6784 -2123 4661 2123 -0 1741 2478 3.375 3.551 1.990 + 12 3 19 3 42.20 67.04 68.00 67.78 98.82 91.75 0 47594 14037 7050 0.147 0.154 0.293 0.506 0.876 0 187.0 6417 0 314 319 7050 -2194 4856 2194 -0 1805 2574 3.365 3.556 1.992 + 12 3 19 4 42.05 67.08 68.00 67.78 98.81 91.77 0 47576 14083 7239 0.151 0.158 0.294 0.518 0.879 0 192.1 6580 0 331 328 7239 -2248 4991 2248 0 1851 2646 3.355 3.555 1.988 + 12 3 19 5 41.90 67.02 68.00 67.79 98.81 91.80 0 47559 14130 7491 0.156 0.164 0.295 0.534 0.883 0 198.8 6800 0 352 339 7491 -2318 5173 2318 0 1911 2739 3.345 3.559 1.988 + 12 3 20 0 41.60 66.99 68.00 67.79 98.78 91.82 0 47524 14222 7890 0.165 0.173 0.297 0.559 0.890 0 209.6 7142 0 390 358 7890 -2434 5456 2434 0 2007 2891 3.325 3.559 1.981 + 12 3 20 1 41.30 67.08 68.00 67.78 98.76 91.84 0 47489 14315 8067 0.169 0.178 0.299 0.568 0.892 0 214.4 7283 0 418 366 8067 -2478 5589 2478 0 2055 2976 3.305 3.543 1.968 + 12 3 20 2 41.00 66.99 68.00 67.80 98.75 91.90 0 47454 14407 8368 0.175 0.185 0.301 0.585 0.896 0 222.6 7534 0 454 380 8368 -2553 5815 2553 0 2130 3100 3.285 3.537 1.962 + 12 3 20 3 40.70 67.02 68.00 67.79 98.72 91.91 0 47419 14500 8530 0.179 0.189 0.304 0.593 0.898 0 227.1 7660 0 483 387 8530 -2595 5934 2595 0 2175 3182 3.266 3.521 1.949 + 12 3 20 4 40.40 66.93 68.00 67.80 98.70 91.94 0 47384 14592 8833 0.185 0.197 0.306 0.610 0.902 0 235.3 7911 0 520 401 8833 -2673 6159 2673 -0 2251 3309 3.246 3.515 1.942 + 12 3 20 5 40.10 66.94 68.00 67.79 98.67 91.95 0 47349 14685 8970 0.188 0.200 0.308 0.615 0.904 0 239.1 8013 0 549 408 8970 -2708 6261 2708 0 2291 3384 3.227 3.498 1.928 + 12 3 21 0 40.43 66.89 68.00 67.79 98.69 91.93 0 47387 14583 9416 0.197 0.209 0.306 0.650 0.913 0 250.8 8435 0 552 428 9416 -2855 6561 2855 0 2372 3488 3.248 3.557 1.957 + 12 3 21 1 40.76 66.85 68.00 67.78 98.71 91.89 0 47426 14481 9508 0.199 0.211 0.303 0.661 0.915 0 253.1 8543 0 534 432 9508 -2899 6609 2899 -0 2378 3479 3.270 3.593 1.977 + 12 3 21 2 41.09 66.80 68.00 67.78 98.73 91.86 0 47464 14379 9581 0.200 0.212 0.301 0.671 0.918 0 254.8 8634 0 513 435 9581 -2936 6646 2936 0 2379 3463 3.291 3.629 1.998 + 12 3 21 3 41.42 66.73 68.00 67.77 98.75 91.82 0 47503 14278 9635 0.201 0.212 0.298 0.680 0.920 0 256.0 8708 0 490 437 9635 -2969 6666 2969 -0 2376 3440 3.313 3.665 2.018 + 12 3 21 4 41.75 66.59 68.00 67.75 98.76 91.77 0 47541 14176 9680 0.202 0.212 0.296 0.688 0.922 0 257.0 8775 0 467 439 9680 -3002 6679 3002 0 2371 3413 3.335 3.701 2.038 + 12 3 21 5 42.08 66.62 68.00 67.73 98.76 91.70 0 47580 14074 9689 0.202 0.212 0.294 0.693 0.923 0 257.1 8809 0 441 439 9689 -3028 6660 3028 0 2358 3375 3.357 3.735 2.057 + 12 3 22 0 42.05 66.62 68.00 67.73 98.76 91.71 0 47576 14083 10473 0.219 0.229 0.294 0.749 0.937 0 277.9 9520 0 479 474 10473 -3270 7203 3270 -0 2513 3603 3.355 3.789 2.078 + 12 3 22 1 42.02 66.67 68.00 67.73 98.76 91.71 0 47573 14093 10634 0.222 0.233 0.294 0.760 0.940 0 282.2 9664 0 489 481 10634 -3320 7315 3320 0 2545 3652 3.353 3.797 2.081 + 12 3 22 2 41.99 66.71 68.00 67.74 98.77 91.73 0 47569 14102 10773 0.225 0.236 0.294 0.769 0.942 0 285.9 9787 0 498 488 10773 -3356 7417 3356 0 2573 3696 3.351 3.804 2.084 + 12 3 22 3 41.96 66.92 68.00 67.75 98.77 91.75 0 47566 14111 10803 0.225 0.236 0.295 0.771 0.943 0 286.7 9811 0 502 489 10803 -3360 7443 3360 0 2580 3708 3.349 3.803 2.084 + 12 3 22 4 41.93 67.01 68.00 67.78 98.80 91.80 0 47562 14120 10911 0.228 0.239 0.295 0.778 0.945 0 289.6 9907 0 510 494 10911 -3375 7536 3375 0 2602 3743 3.347 3.807 2.090 + 12 3 22 5 41.90 67.08 68.00 67.80 98.82 91.84 0 47559 14130 11006 0.230 0.241 0.295 0.784 0.946 0 292.1 9990 0 517 498 11006 -3393 7612 3393 0 2621 3773 3.345 3.811 2.093 + 12 3 23 0 41.51 67.19 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.76 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.39 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.43 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.33 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.25 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.16 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 65.01 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.95 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.85 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.75 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.60 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.56 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.45 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.44 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.33 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.20 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.09 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.97 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.86 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.74 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.63 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.51 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.39 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 119 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.27 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.15 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 63.02 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.90 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.77 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.64 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.52 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.39 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.26 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.13 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.99 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.85 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.72 65.00 64.46 94.57 88.96 0 46169 17821 544 .0119 .0127 0.389 .0303 0.758 0 14.9 485 0 34 25 544 -155 390 154 -1 196 391 2.814 2.477 1.528 + 12 4 5 1 29.96 61.66 65.00 64.40 94.51 88.89 0 46166 17831 3056 .0667 .0712 0.389 0.170 0.793 0 83.6 2724 0 190 143 3056 -874 2183 874 0 1052 1521 2.813 2.590 1.577 + 12 4 5 2 29.93 61.92 65.00 64.39 94.50 88.87 0 46162 17840 3461 .0756 .0806 0.389 0.193 0.798 0 94.7 3085 0 215 161 3461 -991 2470 991 0 1183 1696 2.812 2.607 1.584 + 12 4 5 3 29.90 61.91 65.00 64.43 94.53 88.93 0 46159 17849 3863 .0844 .0899 0.390 0.215 0.804 0 105.7 3444 0 239 180 3863 -1099 2764 1099 0 1312 1868 2.812 2.625 1.596 + 12 4 5 4 29.87 61.87 65.00 64.43 94.53 88.93 0 46155 17859 4282 .0935 .0997 0.390 0.238 0.809 0 117.1 3818 0 264 200 4282 -1218 3063 1218 0 1445 2045 2.811 2.642 1.605 + 12 4 5 5 29.84 61.88 65.00 64.42 94.52 88.92 0 46152 17868 4714 0.103 0.110 0.390 0.262 0.815 0 128.9 4204 0 290 220 4714 -1342 3371 1342 0 1580 2226 2.811 2.661 1.613 + 12 4 6 0 29.72 61.88 65.96 64.58 98.60 96.03 0 0 0 81578 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9332 41501 10652 1321 0 52290 0 0 0.796 + 12 4 6 1 29.60 65.85 66.50 65.40 95.48 92.98 0 46124 17942 43127 0.935 1.003 0.935 1.000 1.000 0 1180 38196 0 2903 2013 43112 -8261 34152 8961 700 13585 18638 2.806 2.812 1.846 + 12 4 6 2 29.48 65.53 66.50 66.30 96.37 92.13 0 46110 17980 23306 0.508 0.542 0.505 1.000 1.000 0 638.0 20768 0 1449 1089 23306 -5427 17878 5427 0 7211 9886 2.804 2.880 1.834 + 12 4 6 3 29.36 64.22 66.50 66.29 96.35 92.22 0 46096 18017 23769 0.518 0.552 0.516 1.000 1.000 0 650.9 21192 0 1467 1111 23769 -5470 18300 5470 0 7371 10085 2.802 2.875 1.839 + 12 4 6 4 29.24 64.47 66.50 66.13 96.18 92.10 0 46082 18054 24501 0.534 0.569 0.532 1.000 1.000 0 671.2 21854 0 1502 1145 24501 -5719 18782 5719 0 7619 10403 2.800 2.868 1.830 + 12 4 6 5 29.12 64.74 66.50 66.15 96.20 91.89 0 46068 18091 22937 0.501 0.533 0.498 1.000 1.000 0 628.5 20489 0 1376 1072 22937 -5494 17443 5494 0 7123 9707 2.798 2.877 1.823 + 12 4 7 0 29.42 64.98 67.10 66.26 100.27 97.75 0 0 0 105k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9024 42302 9851 828 0 52290 0 0 0.811 + 12 4 7 1 29.72 66.60 67.54 66.81 100.82 98.28 0 0 0 79126 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9125 42415 9739 614 0 52290 0 0 0.813 + 12 4 7 2 30.02 67.04 67.88 67.39 101.40 98.90 0 0 0 59280 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8877 42813 9341 464 0 52290 0 0 0.821 + 12 4 7 3 30.32 67.17 68.00 67.74 97.88 95.55 0 46208 17719 43906 0.950 1.023 0.950 1.000 1.000 0 1199 38725 0 3125 2046 43896 -7625 36115 7781 156 13715 19022 2.820 2.824 1.912 + 12 4 7 4 30.62 67.10 68.00 67.86 98.02 95.33 0 46243 17626 37706 0.816 0.880 0.815 1.000 1.000 0 1029 33235 0 2715 1756 37706 -6951 30754 6952 0 11695 16303 2.825 2.842 1.902 + 12 4 7 5 30.92 67.06 68.00 67.85 98.03 95.10 0 46278 17533 34334 0.743 0.802 0.742 1.000 1.000 0 936.6 30226 0 2511 1598 34334 -6592 27742 6592 0 10582 14828 2.831 2.856 1.888 + 12 4 8 0 32.18 67.24 68.00 67.84 98.12 94.80 0 46425 17142 30582 0.660 0.717 0.659 1.000 1.000 0 831.6 26733 0 2430 1419 30582 -6218 24364 6218 0 9247 13232 2.855 2.891 1.860 + 12 4 8 1 33.44 67.32 68.00 67.86 98.23 94.54 0 46572 16750 27269 0.586 0.642 0.586 1.000 1.000 0 739.1 23656 0 2351 1261 27268 -5827 21442 5827 -0 8082 11831 2.880 2.927 1.834 + 12 4 8 2 34.70 67.43 68.00 67.87 98.33 94.19 0 46719 16359 24211 0.518 0.572 0.518 1.000 1.000 0 654.2 20830 0 2265 1116 24211 -5480 18730 5480 0 7026 10544 2.905 2.965 1.800 + 12 4 8 3 35.96 67.48 68.00 67.88 98.44 93.92 0 46866 15967 22081 0.471 0.516 0.471 1.000 1.000 0 594.8 19107 0 1959 1015 22081 -5228 16853 5228 0 6286 9396 2.969 3.040 1.820 + 12 4 8 4 37.22 67.58 68.00 67.88 98.54 93.64 0 47013 15576 20318 0.431 0.468 0.432 1.000 1.000 0 545.6 17761 0 1626 931 20318 -5025 15293 5025 0 5669 8362 3.045 3.133 1.859 + 12 4 8 5 38.48 67.67 68.00 67.90 98.66 93.41 0 47160 15186 18935 0.400 0.430 0.401 1.000 1.000 0 506.8 16721 0 1349 865 18934 -4855 14079 4855 0 5170 7520 3.124 3.234 1.907 + 12 4 9 0 39.11 67.78 68.00 67.91 98.72 93.38 0 47233 14991 18588 0.392 0.420 0.394 1.000 1.000 0 496.8 16502 0 1239 848 18588 -4802 13785 4802 0 5022 7244 3.163 3.286 1.940 + 12 4 9 1 39.74 67.84 68.00 67.93 98.78 93.22 0 47307 14796 17763 0.373 0.398 0.375 1.000 1.000 0 474.0 15850 0 1104 809 17763 -4693 13070 4693 0 4735 6785 3.204 3.347 1.966 + 12 4 9 2 40.37 67.83 68.00 67.94 98.84 93.08 0 47380 14602 17102 0.359 0.381 0.361 1.000 1.000 0 455.6 15340 0 984 777 17101 -4607 12495 4607 0 4498 6396 3.244 3.411 1.996 + 12 4 9 3 41.00 67.82 68.00 67.95 98.89 92.93 0 47454 14407 16491 0.345 0.365 0.348 1.000 1.000 0 438.7 14870 0 872 748 16491 -4533 11957 4533 0 4275 6032 3.285 3.478 2.028 + 12 4 9 4 41.63 67.71 68.00 67.95 98.94 92.80 0 47527 14213 15978 0.334 0.351 0.336 1.000 1.000 0 424.4 14487 0 767 724 15978 -4472 11505 4472 -0 4081 5708 3.327 3.550 2.065 + 12 4 9 5 42.26 67.81 68.00 67.93 98.98 92.62 0 47601 14019 15434 0.322 0.337 0.324 1.000 1.000 0 409.3 14071 0 664 698 15433 -4418 11016 4418 0 3878 5377 3.369 3.628 2.102 + 12 4 10 0 42.41 67.89 68.00 67.95 99.01 92.69 0 47618 13972 15527 0.324 0.338 0.326 1.000 1.000 0 411.6 14177 0 648 702 15527 -4415 11112 4415 0 3893 5379 3.379 3.642 2.119 + 12 4 10 1 42.56 67.93 68.00 67.97 99.03 92.62 0 47636 13926 15217 0.317 0.331 0.319 1.000 1.000 0 403.2 13911 0 618 688 15217 -4366 10851 4366 0 3793 5236 3.389 3.667 2.128 + 12 4 10 2 42.71 67.95 68.00 67.98 99.05 92.53 0 47653 13880 14930 0.311 0.324 0.313 1.000 1.000 0 395.5 13666 0 590 675 14930 -4323 10607 4323 -0 3701 5102 3.399 3.692 2.136 + 12 4 10 3 42.86 67.97 68.00 67.98 99.07 92.44 0 47671 13834 14634 0.305 0.317 0.307 1.000 1.000 0 387.5 13411 0 562 661 14634 -4280 10353 4280 0 3606 4965 3.409 3.719 2.144 + 12 4 10 4 43.01 68.17 68.00 67.99 99.09 92.29 0 47688 13788 14219 0.296 0.308 0.298 1.000 1.000 0 376.4 13046 0 531 642 14219 -4225 9994 4225 0 3478 4787 3.419 3.751 2.149 + 12 4 10 5 43.16 68.26 68.00 68.03 99.14 92.20 0 47706 13742 13870 0.289 0.300 0.291 1.000 1.000 0 366.9 12737 0 502 626 13865 -4157 9707 4157 -0 3367 4631 3.430 3.783 2.160 + 12 4 11 0 43.49 68.22 68.00 68.05 99.18 92.12 0 47744 13640 13331 0.277 0.287 0.284 0.983 0.996 0 352.5 12283 0 446 601 13331 -4039 9292 4039 0 2943 4128 3.452 4.173 2.328 + 12 4 11 1 43.82 68.42 68.00 68.04 99.21 92.09 0 47783 13538 12734 0.265 0.273 0.282 0.946 0.987 0 336.4 11771 0 389 574 12734 -3876 8859 3876 0 2822 3922 3.475 4.171 2.340 + 12 4 11 2 44.15 68.41 68.00 68.08 99.27 92.12 0 47821 13437 12264 0.255 0.262 0.279 0.918 0.979 0 323.7 11374 0 338 552 12264 -3729 8535 3729 0 2722 3749 3.497 4.178 2.362 + 12 4 11 3 44.48 68.51 68.00 68.08 99.29 92.09 0 47860 13335 11684 0.243 0.249 0.277 0.881 0.970 0 308.2 10871 0 287 526 11684 -3568 8116 3568 -0 2603 3552 3.520 4.177 2.376 + 12 4 11 4 44.81 68.45 68.00 68.10 99.34 92.09 0 47898 13234 11216 0.233 0.238 0.275 0.851 0.963 0 295.6 10470 0 241 504 11216 -3431 7785 3431 0 2502 3384 3.543 4.185 2.397 + 12 4 11 5 45.14 68.68 68.00 68.09 98.91 91.71 0 47245 12892 10617 0.225 0.225 0.273 0.824 0.956 0 283.7 10133 0 0 484 10617 -3264 7353 3264 0 2461 3081 3.567 4.118 2.497 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 120 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.75 68.00 68.13 98.99 91.79 0 47319 12866 9608 0.203 0.203 0.272 0.747 0.937 0 256.3 9171 0 0 437 9608 -2943 6666 2943 0 2259 2833 3.577 4.060 2.472 + 12 4 12 1 45.44 68.65 68.00 68.15 99.05 91.83 0 47392 12839 9002 0.190 0.190 0.271 0.701 0.925 0 239.8 8593 0 0 409 9002 -2757 6246 2757 -0 2130 2676 3.588 4.034 2.460 + 12 4 12 2 45.59 68.52 68.00 68.13 99.09 91.81 0 47465 12812 8372 0.176 0.176 0.270 0.653 0.913 0 222.7 7992 0 0 380 8372 -2576 5797 2576 0 1995 2511 3.599 4.006 2.441 + 12 4 12 3 45.74 68.36 68.00 68.11 99.11 91.80 0 47538 12786 7792 0.164 0.164 0.269 0.609 0.902 0 206.9 7439 0 0 353 7792 -2409 5382 2409 -0 1868 2357 3.609 3.982 2.423 + 12 4 12 4 45.89 68.31 68.00 68.08 99.13 91.76 0 47612 12759 7326 0.154 0.154 0.268 0.574 0.894 0 194.2 6995 0 0 331 7326 -2280 5046 2280 -0 1763 2231 3.620 3.968 2.410 + 12 4 12 5 46.04 68.34 68.00 68.07 99.17 91.76 0 47685 12732 6849 0.144 0.144 0.267 0.538 0.884 0 181.3 6540 0 0 309 6849 -2140 4709 2140 0 1655 2100 3.631 3.952 2.398 + 12 4 13 0 46.40 68.16 68.00 68.08 99.29 91.79 0 47861 12668 6038 0.126 0.126 0.265 0.477 0.869 0 159.2 5766 0 0 272 6038 -1895 4142 1895 0 1462 1870 3.656 3.944 2.389 + 12 4 13 1 46.76 68.08 68.00 68.05 99.38 91.78 0 48036 12604 5499 0.114 0.114 0.262 0.436 0.859 0 144.5 5252 0 0 247 5499 -1743 3756 1743 0 1327 1710 3.683 3.959 2.388 + 12 4 13 2 47.12 68.03 68.00 68.03 99.44 91.77 0 48154 12562 4987 0.104 0.104 0.261 0.397 0.849 0 130.7 4764 0 0 223 4987 -1591 3397 1591 0 1204 1564 3.700 3.956 2.380 + 12 4 13 3 47.48 67.96 68.00 68.02 99.43 91.75 0 48154 12562 4607 .0957 .0957 0.261 0.367 0.842 0 120.8 4401 0 0 206 4607 -1472 3135 1472 0 1122 1465 3.700 3.921 2.360 + 12 4 13 4 47.84 67.90 68.00 68.01 99.41 91.72 0 48154 12562 4402 .0914 .0914 0.261 0.350 0.838 0 115.4 4205 0 0 197 4402 -1409 2993 1409 0 1078 1411 3.700 3.902 2.348 + 12 4 13 5 48.20 67.84 68.00 68.00 99.40 91.70 0 48154 12562 4236 .0880 .0880 0.261 0.337 0.834 0 111.0 4046 0 0 189 4236 -1359 2877 1359 0 1041 1367 3.700 3.886 2.338 + 12 4 14 0 48.47 67.83 68.00 67.98 99.39 91.68 0 48154 12562 4265 .0886 .0886 0.261 0.339 0.835 0 111.8 4074 0 0 191 4265 -1370 2895 1370 0 1048 1375 3.700 3.889 2.338 + 12 4 14 1 48.74 67.75 68.00 67.98 99.38 91.68 0 48154 12562 4299 .0893 .0893 0.261 0.342 0.836 0 112.7 4106 0 0 192 4299 -1382 2917 1382 -0 1055 1384 3.700 3.892 2.338 + 12 4 14 2 49.01 67.78 68.00 67.97 99.37 91.65 0 48154 12562 4243 .0881 .0881 0.261 0.338 0.834 0 111.2 4053 0 0 190 4243 -1367 2876 1367 0 1043 1369 3.700 3.887 2.334 + 12 4 14 3 49.28 67.83 68.00 67.97 99.38 91.66 0 48154 12562 4091 .0850 .0850 0.261 0.326 0.831 0 107.3 3908 0 0 183 4091 -1317 2774 1317 -0 1009 1329 3.700 3.873 2.327 + 12 4 14 4 49.55 67.76 68.00 67.98 99.38 91.67 0 48154 12562 3900 .0810 .0810 0.261 0.310 0.828 0 102.2 3725 0 0 174 3900 -1254 2646 1254 -0 966 1277 3.700 3.855 2.319 + 12 4 14 5 49.82 67.78 68.00 67.97 99.37 91.65 0 48154 12562 3668 .0762 .0762 0.261 0.292 0.823 0 96.2 3504 0 0 164 3668 -1182 2486 1182 0 914 1214 3.700 3.834 2.306 + 12 4 15 0 49.67 67.78 68.00 67.97 99.37 91.65 0 48154 12562 2526 .0525 .0525 0.261 0.201 0.800 0 66.2 2413 0 0 113 2526 -814 1712 814 0 647 897 3.700 3.728 2.252 + 12 4 15 1 49.52 67.75 68.00 67.97 99.37 91.65 0 48154 12562 2240 .0465 .0465 0.261 0.178 0.795 0 58.7 2140 0 0 100 2240 -722 1518 722 0 578 815 3.700 3.701 2.238 + 12 4 15 2 49.37 67.73 68.00 67.96 99.36 91.63 0 48154 12562 2009 .0417 .0417 0.261 0.160 0.790 0 52.7 1919 0 0 90 2009 -648 1360 648 -0 521 748 3.700 3.680 2.225 + 12 4 15 3 49.22 67.65 68.00 67.95 99.36 91.62 0 48154 12562 2163 .0449 .0449 0.261 0.172 0.793 0 56.7 2066 0 0 97 2163 -699 1464 699 0 559 793 3.700 3.694 2.231 + 12 4 15 4 49.07 67.62 68.00 67.94 99.34 91.59 0 48154 12562 2666 .0554 .0554 0.261 0.212 0.803 0 69.9 2547 0 0 119 2666 -864 1802 864 0 681 937 3.700 3.741 2.253 + 12 4 15 5 48.92 67.78 68.00 67.93 99.33 91.58 0 48154 12562 3163 .0657 .0657 0.261 0.252 0.813 0 82.9 3022 0 0 141 3163 -1026 2137 1026 0 798 1076 3.700 3.787 2.275 + 12 4 16 0 48.59 67.89 68.00 67.96 99.36 91.62 0 48154 12562 4438 .0922 .0922 0.261 0.353 0.838 0 116.3 4240 0 0 198 4438 -1433 3005 1433 0 1086 1421 3.700 3.905 2.340 + 12 4 16 1 48.26 68.23 68.00 67.98 99.38 91.66 0 48154 12562 5085 0.106 0.106 0.261 0.405 0.851 0 133.3 4858 0 0 227 5085 -1637 3448 1637 0 1225 1589 3.700 3.965 2.374 + 12 4 16 2 47.93 68.35 68.00 68.04 99.44 91.76 0 48154 12562 5671 0.118 0.118 0.261 0.451 0.863 0 148.7 5417 0 0 254 5671 -1809 3862 1809 0 1348 1738 3.700 4.020 2.411 + 12 4 16 3 47.60 68.48 68.00 68.06 99.47 91.81 0 48154 12562 6207 0.129 0.129 0.261 0.494 0.874 0 162.7 5929 0 0 278 6207 -1972 4235 1972 0 1457 1871 3.700 4.069 2.441 + 12 4 16 4 47.27 68.54 68.00 68.09 99.49 91.86 0 48154 12562 6641 0.138 0.138 0.261 0.529 0.882 0 174.1 6344 0 0 297 6641 -2101 4540 2101 -0 1544 1977 3.700 4.109 2.466 + 12 4 16 5 46.94 68.55 68.00 68.11 99.49 91.88 0 48124 12572 7024 0.146 0.146 0.261 0.559 0.890 0 184.2 6710 0 0 314 7024 -2213 4811 2213 0 1623 2074 3.696 4.133 2.483 + 12 4 17 0 46.79 68.69 68.00 68.11 99.45 91.88 0 48051 12599 7337 0.153 0.153 0.262 0.582 0.896 0 192.8 7008 0 0 329 7337 -2306 5032 2306 -0 1696 2161 3.685 4.133 2.485 + 12 4 17 1 46.64 68.78 68.00 68.14 99.43 91.91 0 47978 12626 7577 0.158 0.158 0.263 0.600 0.900 0 199.4 7237 0 0 340 7577 -2365 5212 2365 -0 1754 2230 3.674 4.126 2.489 + 12 4 17 2 46.49 68.91 68.00 68.16 99.40 91.94 0 47905 12652 7762 0.162 0.162 0.264 0.614 0.903 0 204.6 7413 0 0 349 7762 -2410 5352 2410 0 1802 2287 3.663 4.115 2.489 + 12 4 17 3 46.34 68.98 68.00 68.18 99.38 91.97 0 47831 12679 7994 0.167 0.167 0.265 0.631 0.908 0 211.0 7635 0 0 360 7994 -2466 5528 2466 -0 1859 2355 3.652 4.108 2.492 + 12 4 17 4 46.19 69.11 68.00 68.20 99.34 91.98 0 47758 12706 8165 0.171 0.171 0.266 0.643 0.911 0 215.8 7797 0 0 368 8165 -2506 5658 2506 0 1904 2409 3.641 4.095 2.490 + 12 4 17 5 46.04 69.18 68.00 68.22 99.32 92.01 0 47685 12732 8387 0.176 0.176 0.267 0.659 0.915 0 222.0 8008 0 0 379 8387 -2558 5829 2558 0 1959 2475 3.631 4.087 2.493 + 12 4 18 0 45.47 69.31 68.00 68.24 99.15 91.99 0 47407 12834 8147 0.172 0.172 0.271 0.635 0.909 0 216.9 7777 0 0 370 8147 -2459 5689 2459 -0 1961 2467 3.590 3.967 2.441 + 12 4 18 1 44.90 69.34 68.00 68.26 99.50 92.36 0 47909 13206 8408 0.175 0.178 0.274 0.639 0.910 0 221.6 7857 0 174 378 8408 -2508 5901 2508 0 1982 2670 3.550 3.965 2.329 + 12 4 18 2 44.33 69.45 68.00 68.26 99.47 92.43 0 47842 13382 8675 0.180 0.185 0.278 0.652 0.913 0 228.9 8059 0 225 390 8675 -2563 6112 2563 0 2059 2811 3.510 3.914 2.285 + 12 4 18 3 43.76 69.58 68.00 68.28 99.44 92.51 0 47776 13557 8932 0.186 0.192 0.282 0.663 0.916 0 236.0 8252 0 278 403 8932 -2608 6324 2608 0 2135 2952 3.471 3.865 2.246 + 12 4 18 4 43.19 69.70 68.00 68.31 99.42 92.60 0 47709 13732 9184 0.191 0.198 0.286 0.673 0.918 0 243.0 8438 0 332 415 9184 -2649 6535 2649 0 2210 3093 3.432 3.818 2.211 + 12 4 18 5 42.62 69.84 68.00 68.33 99.40 92.69 0 47643 13908 9463 0.197 0.206 0.290 0.685 0.921 0 250.7 8647 0 388 428 9463 -2696 6767 2696 0 2290 3242 3.393 3.776 2.179 + 12 4 19 0 42.20 69.88 68.00 68.35 99.39 92.76 0 47594 14037 9407 0.196 0.205 0.293 0.675 0.919 0 249.5 8563 0 419 426 9407 -2654 6753 2654 0 2297 3278 3.365 3.727 2.149 + 12 4 19 1 41.78 69.87 68.00 68.36 99.37 92.81 0 47545 14167 9592 0.200 0.210 0.296 0.682 0.920 0 254.7 8697 0 460 434 9592 -2684 6908 2684 -0 2352 3383 3.337 3.697 2.127 + 12 4 19 2 41.36 69.88 68.00 68.36 99.34 92.85 0 47496 14296 9782 0.204 0.215 0.299 0.689 0.922 0 260.0 8835 0 503 444 9782 -2719 7062 2719 0 2408 3491 3.309 3.669 2.105 + 12 4 19 3 40.94 69.88 68.00 68.36 99.31 92.89 0 47447 14426 9967 0.208 0.221 0.302 0.696 0.924 0 265.2 8969 0 545 452 9967 -2752 7215 2752 0 2463 3597 3.281 3.641 2.085 + 12 4 19 4 40.52 69.84 68.00 68.36 99.28 92.93 0 47398 14555 10169 0.213 0.226 0.305 0.704 0.926 0 270.8 9118 0 590 462 10169 -2789 7380 2789 -0 2522 3710 3.254 3.616 2.065 + 12 4 19 5 40.10 69.83 68.00 68.36 99.24 92.95 0 47349 14685 10352 0.217 0.231 0.308 0.710 0.927 0 276.0 9247 0 633 471 10352 -2824 7528 2824 0 2576 3817 3.227 3.590 2.046 + 12 4 20 0 40.37 69.80 68.00 68.36 99.26 92.93 0 47380 14602 10550 0.221 0.235 0.306 0.728 0.932 0 281.1 9447 0 624 480 10550 -2888 7662 2888 -0 2604 3844 3.244 3.628 2.067 + 12 4 20 1 40.64 69.84 68.00 68.36 99.28 92.91 0 47412 14518 10555 0.221 0.234 0.304 0.732 0.933 0 281.0 9473 0 602 479 10555 -2902 7653 2902 -0 2593 3811 3.262 3.653 2.083 + 12 4 20 2 40.91 69.88 68.00 68.37 99.31 92.91 0 47443 14435 10533 0.220 0.233 0.302 0.735 0.934 0 280.3 9476 0 579 478 10533 -2902 7631 2902 0 2577 3770 3.279 3.677 2.100 + 12 4 20 3 41.18 69.74 68.00 68.38 99.34 92.90 0 47475 14352 10555 0.221 0.233 0.300 0.741 0.935 0 280.7 9519 0 557 479 10555 -2915 7640 2915 0 2569 3742 3.297 3.705 2.119 + 12 4 20 4 41.45 69.89 68.00 68.36 99.34 92.85 0 47506 14268 10482 0.219 0.231 0.298 0.740 0.935 0 278.5 9476 0 531 475 10482 -2916 7566 2916 0 2542 3685 3.315 3.727 2.132 + 12 4 20 5 41.72 69.84 68.00 68.38 99.38 92.87 0 47538 14185 10466 0.219 0.230 0.296 0.743 0.936 0 277.9 9484 0 507 474 10466 -2911 7555 2911 -0 2527 3645 3.333 3.754 2.154 + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 121 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.95 68.00 68.37 99.34 92.89 0 47489 14315 10857 0.227 0.239 0.299 0.764 0.941 0 288.6 9801 0 563 492 10857 -3005 7852 3005 0 2622 3814 3.305 3.738 2.135 + 12 4 21 1 40.88 70.01 68.00 68.39 99.33 92.95 0 47440 14444 11008 0.230 0.244 0.302 0.768 0.942 0 292.9 9900 0 607 500 11008 -3019 7988 3019 0 2671 3914 3.277 3.707 2.115 + 12 4 21 2 40.46 69.99 68.00 68.40 99.31 93.00 0 47391 14574 11153 0.234 0.248 0.305 0.771 0.943 0 297.1 9994 0 652 507 11153 -3034 8119 3034 0 2718 4013 3.250 3.677 2.094 + 12 4 21 3 40.04 69.99 68.00 68.39 99.27 93.03 0 47342 14704 11315 0.237 0.253 0.308 0.775 0.944 0 301.7 10103 0 697 515 11315 -3061 8255 3061 0 2769 4118 3.223 3.648 2.073 + 12 4 21 4 39.62 69.98 68.00 68.39 99.24 93.06 0 47293 14833 11482 0.241 0.258 0.312 0.779 0.945 0 306.5 10216 0 744 523 11482 -3087 8396 3087 0 2821 4224 3.196 3.621 2.054 + 12 4 21 5 39.20 69.98 68.00 68.39 99.20 93.09 0 47244 14963 11645 0.245 0.263 0.315 0.783 0.946 0 311.2 10324 0 790 531 11645 -3112 8533 3112 0 2872 4329 3.169 3.595 2.035 + 12 4 22 0 39.29 69.99 68.00 68.39 99.21 93.08 0 47254 14935 12331 0.259 0.278 0.314 0.831 0.958 0 329.4 10941 0 828 562 12331 -3299 9032 3299 0 3000 4527 3.175 3.646 2.057 + 12 4 22 1 39.38 70.08 68.00 68.40 99.22 93.08 0 47265 14907 12430 0.261 0.280 0.313 0.839 0.960 0 332.0 11037 0 827 566 12430 -3328 9102 3328 0 3015 4545 3.180 3.661 2.065 + 12 4 22 2 39.47 70.13 68.00 68.41 99.24 93.10 0 47275 14880 12498 0.262 0.281 0.313 0.846 0.961 0 333.7 11105 0 823 569 12498 -3340 9158 3340 0 3023 4552 3.186 3.673 2.074 + 12 4 22 3 39.56 70.13 68.00 68.42 99.26 93.11 0 47286 14852 12562 0.264 0.282 0.312 0.852 0.963 0 335.4 11171 0 819 572 12562 -3355 9207 3355 -0 3031 4559 3.192 3.686 2.082 + 12 4 22 4 39.65 70.08 68.00 68.43 99.27 93.11 0 47296 14824 12623 0.265 0.283 0.311 0.857 0.964 0 336.9 11233 0 815 575 12623 -3373 9249 3373 0 3038 4564 3.198 3.698 2.089 + 12 4 22 5 39.74 70.25 68.00 68.42 99.27 93.10 0 47307 14796 12578 0.264 0.282 0.311 0.856 0.964 0 335.6 11202 0 803 573 12578 -3369 9209 3369 0 3025 4537 3.204 3.703 2.093 + 12 4 23 0 39.59 70.35 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.78 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.35 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.21 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.94 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.78 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 003: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 003: + + + ALTER RSYS "rsys1" + rsCtrlAuxH = LOCKOUT + FIXRPTITLES("RSYS -- Aux Lockout / Def RevCycleAux") + + RUN + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 003 Sat 01-Jan-22 2:52:43 pm Page 122 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 004: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 58 subhours of run. + Total condensation heat = 0.0552628 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.709 0 0.299 0.0729 0 0 0 0 0.0540 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.094 0 1.253 0.259 0 0 0 0 0.219 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.078 0 1.247 0.238 0 0 0 0 0.227 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.360 0 0.826 0.240 0 0 0 0 0.148 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.312 0 0.0894 0.0110 0 0 0 0 0.0168 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.277 0 0.0965 0.0300 0 0 0 0 0.0175 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Cycle / Def RevCycle + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 73.297 1.459 1.118 0 0.0729 0.0540 1.245 0 0 0 0 0 0 0 0 0 0 0.299 0 0.0729 0.0540 0.0359 0.461 0 0 0 0 0 0 0 0.874 -.0073 0 0 0 0 + Dec 284.01 5.188 4.442 0 0.259 0.219 4.921 0 0 0 0 0 0 0 0 0 0 1.253 0 0.259 0.219 0.0605 1.792 0 0 0 0 0 0 0 3.604 -.0273 0 0 0 0 + Jan 309.49 4.769 4.712 0 0.238 0.227 5.178 0 0 0 0 0 0 0 0 0 0 1.247 0 0.238 0.227 0.0760 1.788 0 0 0 0 0 0 0 3.809 -.0309 0 0 0 0 + Feb 187.52 4.792 3.037 0 0.240 0.148 3.425 0 0 0 0 0 0 0 0 0 0 0.826 0 0.240 0.148 0.0498 1.264 0 0 0 0 0 0 0 2.486 -.0181 0 0 0 0 + Mar 25.095 0.219 0.359 0 0.0110 0.0168 0.386 0 0 0 0 0 0 0 0 0 0 0.0894 0 0.0110 0.0168 .00887 0.126 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 22.117 0.599 0.362 0 0.0300 0.0175 0.409 0 0 0 0 0 0 0 0 0 0 0.0965 0 0.0300 0.0175 0.0180 0.162 0 0 0 0 0 0 0 0.288 -.0015 0 0 0 0 + + Yr 901.54 17.027 14.030 0 0.851 0.683 15.564 0 0 0 0 0 0 0 0 0 0 3.810 0 0.851 0.683 0.249 5.594 0 0 0 0 0 0 0 11.327 -.0888 0 0 0 0 + + + +RSYS -- Aux Cycle / Def RevCycle + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.299 0.0729 0.0540 0.461 0.874 1.895 0.461 0.874 1.895 0 0 0 0 0 0 0 + Dec 1.253 0.259 0.219 1.792 3.604 2.011 1.792 3.604 2.011 0 0 0 0 0 0 -.0078 + Jan 1.247 0.238 0.227 1.788 3.809 2.130 1.788 3.809 2.130 0 0 0 0 0 0 0 + Feb 0.826 0.240 0.148 1.264 2.486 1.967 1.264 2.486 1.967 0 0 0 0 0 0 -.0039 + Mar 0.0894 0.0110 0.0168 0.126 0.265 2.099 0.126 0.265 2.099 0 0 0 0 0 0 -.0020 + Apr 0.0965 0.0300 0.0175 0.162 0.288 1.780 0.162 0.288 1.780 0 0 0 0 0 0 -.0020 + + Yr 3.810 0.851 0.683 5.594 11.327 2.025 5.594 11.327 2.025 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 123 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Cycle / Def RevCycle for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.768 0 0.334 2.238 4.696 2.098 2.238 4.696 2.098 0 0 0 0 0 0 -0.000 + 8 6.979 5.244 1.262 13.621 25.238 1.853 13.621 25.238 1.853 0 0 0 0 0 0 -0.000 + 9 4.710 0 0.891 5.738 14.029 2.445 5.738 14.029 2.445 0 0 0 0 0 0 -0.000 + 10 3.936 0 0.764 4.837 11.613 2.401 4.837 11.613 2.401 0 0 0 0 0 0 -0.000 + 11 3.343 0 0.668 4.147 9.803 2.364 4.147 9.803 2.364 0 0 0 0 0 0 -0.000 + 12 2.898 0 0.595 3.629 8.454 2.330 3.629 8.454 2.330 0 0 0 0 0 0 -0.000 + 13 2.361 0 0.502 2.999 7.080 2.361 2.999 7.080 2.361 0 0 0 0 0 0 -0.000 + 14 1.978 0 0.400 2.378 5.689 2.392 2.378 5.689 2.392 0 0 0 0 0 0 0 + 15 1.975 0 0.400 2.374 5.698 2.400 2.374 5.698 2.400 0 0 0 0 0 0 0 + 16 1.962 0 0.396 2.359 5.690 2.412 2.359 5.690 2.412 0 0 0 0 0 0 0 + 17 1.978 0 0.400 2.378 5.773 2.427 2.378 5.773 2.427 0 0 0 0 0 0 0 + 18 1.952 0 0.394 2.346 5.703 2.431 2.346 5.703 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.382 5.443 2.285 2.382 5.443 2.285 0 0 0 0 0 0 -0.000 + 20 1.834 0 0.365 2.336 5.360 2.295 2.336 5.360 2.295 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.501 2.316 2.376 5.501 2.316 0 0 0 0 0 0 -0.000 + 22 2.073 0 0.418 2.627 6.182 2.353 2.627 6.182 2.353 0 0 0 0 0 0 -0.000 + 23 2.385 0 0.482 3.004 7.158 2.383 3.004 7.158 2.383 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Cycle / Def RevCycle for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.769 0 0.845 5.750 12.595 2.191 5.750 12.595 2.191 0 0 0 0 0 0 -0.000 + 8 8.836 7.008 1.489 17.470 30.529 1.748 17.470 30.529 1.748 0 0 0 0 0 0 -0.000 + 9 6.068 0 1.053 7.258 17.066 2.351 7.258 17.066 2.351 0 0 0 0 0 0 -0.000 + 10 4.499 0 0.818 5.454 12.944 2.373 5.454 12.944 2.373 0 0 0 0 0 0 -0.000 + 11 3.730 0 0.704 4.570 10.939 2.394 4.570 10.939 2.394 0 0 0 0 0 0 -0.000 + 12 3.202 0 0.627 3.966 9.629 2.428 3.966 9.629 2.428 0 0 0 0 0 0 -0.000 + 13 2.276 0 0.475 2.887 7.181 2.488 2.887 7.181 2.488 0 0 0 0 0 0 -0.000 + 14 2.003 0 0.407 2.547 6.165 2.421 2.547 6.165 2.421 0 0 0 0 0 0 -0.000 + 15 1.933 0 0.389 2.458 5.930 2.412 2.458 5.930 2.412 0 0 0 0 0 0 -0.000 + 16 1.336 0 0.251 1.724 3.846 2.230 1.724 3.846 2.230 0 0 0 0 0 0 -0.000 + 17 1.798 0 0.356 2.291 5.460 2.384 2.291 5.460 2.384 0 0 0 0 0 0 -0.000 + 18 1.977 0 0.399 2.512 6.168 2.455 2.512 6.168 2.455 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 124 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.135 0 0.411 2.683 6.351 2.367 2.683 6.351 2.367 0 0 0 0 0 0 -0.000 + 20 2.583 0 0.467 3.187 7.133 2.238 3.187 7.133 2.238 0 0 0 0 0 0 -0.000 + 21 2.954 0 0.525 3.615 8.005 2.214 3.615 8.005 2.214 0 0 0 0 0 0 -0.000 + 22 3.290 0 0.580 4.006 8.866 2.213 4.006 8.866 2.213 0 0 0 0 0 0 -0.000 + 23 3.820 0 0.667 4.624 10.158 2.197 4.624 10.158 2.197 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Cycle / Def RevCycle for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.684 0 0.0900 0.910 1.319 1.449 0.910 1.319 1.449 0 0 0 0 0 0 -0.000 + 6 1.972 0 0.268 2.376 3.935 1.656 2.376 3.935 1.656 0 0 0 0 0 0 -0.000 + 7 9.276 6.188 1.392 16.993 27.173 1.599 16.993 27.173 1.599 0 0 0 0 0 0 -0.000 + 8 13.303 9.726 1.988 25.153 40.898 1.626 25.153 40.898 1.626 0 0 0 0 0 0 -0.000 + 9 7.597 0 1.196 8.930 18.853 2.111 8.930 18.853 2.111 0 0 0 0 0 0 -0.000 + 10 3.726 0 0.646 4.508 9.751 2.163 4.508 9.751 2.163 0 0 0 0 0 0 -0.000 + 11 1.916 0 0.337 2.389 5.110 2.139 2.389 5.110 2.139 0 0 0 0 0 0 -0.000 + 12 1.351 0 0.242 1.729 3.680 2.128 1.729 3.680 2.128 0 0 0 0 0 0 -0.000 + 13 0.869 0 0.155 1.161 2.345 2.021 1.161 2.345 2.021 0 0 0 0 0 0 -0.000 + 14 0.404 0 0.0689 0.609 1.036 1.700 0.609 1.036 1.700 0 0 0 0 0 0 -0.000 + 15 0.0248 0 .00409 0.165 0.0610 0.369 0.165 0.0610 0.369 0 0 0 0 0 0 -0.000 + 16 .00950 0 .00156 0.148 0.0230 0.156 0.148 0.0230 0.156 0 0 0 0 0 0 -0.000 + 17 0.598 0 0.104 0.838 1.531 1.827 0.838 1.531 1.827 0 0 0 0 0 0 -0.000 + 18 1.723 0 0.314 2.174 4.661 2.144 2.174 4.661 2.144 0 0 0 0 0 0 -0.000 + 19 2.452 0 0.425 3.013 6.286 2.086 3.013 6.286 2.086 0 0 0 0 0 0 -0.000 + 20 3.088 0 0.521 3.745 7.685 2.052 3.745 7.685 2.052 0 0 0 0 0 0 -0.000 + 21 3.428 0 0.581 4.145 8.590 2.072 4.145 8.590 2.072 0 0 0 0 0 0 -0.000 + 22 3.893 0 0.659 4.688 9.713 2.072 4.688 9.713 2.072 0 0 0 0 0 0 -0.000 + 23 4.369 0 0.744 5.249 11.002 2.096 5.249 11.002 2.096 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 40140 42500 31130 3.70 2.91 2.60 2.32 4.45 3.03 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 125 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 255 110 364 1245 874 6 0 0 0 0 0 0 0 + Dec 67.54 892 409 1301 4921 3604 16 0 0 0 0 0 0 0 + Jan 67.52 939 415 1354 5178 3809 15 0 0 0 0 0 0 0 + Feb 67.65 629 295 924 3425 2486 15 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 386 265 2 0 0 0 0 0 0 0 + Apr 69.33 81 37 118 409 288 3 0 0 0 0 0 0 0 + + Yr 68.43 2883 1298 4181 15564 11327 56 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 126 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.74 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.52 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.45 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 73 34 107 398 292 -0 0 0 0 0 0 0 0 + 1 65.00 90 43 133 498 365 -0 0 0 0 0 0 0 0 + 2 65.00 101 48 149 562 413 0 0 0 0 0 0 0 0 + 3 65.00 113 54 166 629 463 0 0 0 0 0 0 0 0 + 4 65.00 129 61 190 717 527 0 0 0 0 0 0 0 0 + 5 65.00 142 68 210 791 581 0 0 0 0 0 0 0 0 + 6 65.00 155 74 228 862 634 0 0 0 0 0 0 0 0 + 1 66.50 947 1247 2194 13158 10619 345 0 0 0 0 0 0 0 + 2 66.50 546 349 896 3721 2826 -0 0 0 0 0 0 0 0 + 3 66.50 461 284 745 3646 2901 0 0 0 0 0 0 0 0 + 4 66.50 493 326 819 3758 2940 0 0 0 0 0 0 0 0 + 5 66.50 506 342 848 3828 2980 0 0 0 0 0 0 0 0 + 6 66.50 493 308 801 3552 2751 -0 0 0 0 0 0 0 0 + 1 67.85 1102 1444 2546 15501 12644 311 0 0 0 0 0 0 0 + 2 68.00 575 735 1310 7593 6248 34 0 0 0 0 0 0 0 + 3 68.00 475 530 1005 6276 5271 -0 0 0 0 0 0 0 0 + 4 68.00 496 541 1038 6043 5005 0 0 0 0 0 0 0 0 + 5 68.00 508 531 1039 5801 4762 0 0 0 0 0 0 0 0 + 6 68.00 497 472 969 5251 4282 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 127 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 498 415 913 4665 3752 -0 0 0 0 0 0 0 0 + 2 68.00 484 362 846 4172 3326 0 0 0 0 0 0 0 0 + 3 68.00 484 318 802 3714 2913 -0 0 0 0 0 0 0 0 + 4 68.00 485 277 762 3306 2543 0 0 0 0 0 0 0 0 + 5 68.00 489 242 731 2954 2224 0 0 0 0 0 0 0 0 + 6 68.00 489 209 698 2628 1930 0 0 0 0 0 0 0 0 + 1 68.00 487 190 677 2429 1753 0 0 0 0 0 0 0 0 + 2 68.00 472 167 640 2195 1555 0 0 0 0 0 0 0 0 + 3 68.00 424 148 571 1941 1370 0 0 0 0 0 0 0 0 + 4 68.00 386 132 518 1744 1225 -0 0 0 0 0 0 0 0 + 5 68.00 349 118 467 1548 1082 0 0 0 0 0 0 0 0 + 6 68.00 315 104 419 1371 952 0 0 0 0 0 0 0 0 + 1 68.00 309 101 409 1316 907 -0 0 0 0 0 0 0 0 + 2 68.00 280 90 371 1174 803 0 0 0 0 0 0 0 0 + 3 68.00 250 79 330 1033 704 -0 0 0 0 0 0 0 0 + 4 68.00 225 70 295 914 619 -0 0 0 0 0 0 0 0 + 5 68.00 202 62 264 804 541 0 0 0 0 0 0 0 0 + 6 68.00 175 54 228 692 464 0 0 0 0 0 0 0 0 + 1 68.00 194 60 254 764 510 0 0 0 0 0 0 0 0 + 2 68.00 172 53 225 674 450 0 0 0 0 0 0 0 0 + 3 68.00 149 46 195 586 391 -0 0 0 0 0 0 0 0 + 4 68.00 129 39 168 503 335 0 0 0 0 0 0 0 0 + 5 68.00 109 33 143 427 284 -0 0 0 0 0 0 0 0 + 6 68.00 89 27 117 348 231 -0 0 0 0 0 0 0 0 + 1 68.00 53 16 70 208 138 0 0 0 0 0 0 0 0 + 2 68.00 31 9 41 120 80 0 0 0 0 0 0 0 0 + 3 68.00 9 3 12 36 24 0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 128 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.00 57 17 74 202 128 -0 0 0 0 0 0 0 0 + 2 68.00 86 25 112 305 194 0 0 0 0 0 0 0 0 + 3 68.00 93 28 121 331 210 0 0 0 0 0 0 0 0 + 4 68.00 108 32 140 382 242 0 0 0 0 0 0 0 0 + 5 68.00 119 35 154 419 266 0 0 0 0 0 0 0 0 + 6 68.00 133 39 172 468 296 0 0 0 0 0 0 0 0 + 1 68.00 131 39 170 463 294 0 0 0 0 0 0 0 0 + 2 68.00 148 44 192 523 331 -0 0 0 0 0 0 0 0 + 3 68.00 160 47 207 564 356 0 0 0 0 0 0 0 0 + 4 68.00 176 52 229 621 393 0 0 0 0 0 0 0 0 + 5 68.00 188 56 244 662 418 0 0 0 0 0 0 0 0 + 6 68.00 205 61 265 720 455 0 0 0 0 0 0 0 0 + 1 68.00 230 68 298 807 509 -0 0 0 0 0 0 0 0 + 2 68.00 247 73 320 867 547 -0 0 0 0 0 0 0 0 + 3 68.00 263 78 341 925 584 -0 0 0 0 0 0 0 0 + 4 68.00 275 81 356 967 612 0 0 0 0 0 0 0 0 + 5 68.00 288 85 374 1019 645 -0 0 0 0 0 0 0 0 + 6 68.00 299 90 389 1068 679 0 0 0 0 0 0 0 0 + 1 68.00 325 98 423 1175 752 0 0 0 0 0 0 0 0 + 2 68.00 335 103 438 1226 788 0 0 0 0 0 0 0 0 + 3 68.00 344 107 451 1275 824 0 0 0 0 0 0 0 0 + 4 68.00 353 111 465 1326 861 0 0 0 0 0 0 0 0 + 5 68.00 362 116 478 1376 898 -0 0 0 0 0 0 0 0 + 6 68.00 370 120 490 1424 934 0 0 0 0 0 0 0 0 + 1 68.00 407 134 541 1585 1044 0 0 0 0 0 0 0 0 + 2 68.00 416 138 554 1635 1082 0 0 0 0 0 0 0 0 + 3 68.00 421 142 562 1680 1117 0 0 0 0 0 0 0 0 + 4 68.00 427 146 573 1728 1155 0 0 0 0 0 0 0 0 + 5 68.00 434 150 583 1774 1191 0 0 0 0 0 0 0 0 + 6 68.00 438 153 591 1815 1223 0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 129 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 43 20 64 211 148 -0 0 0 0 0 0 0 0 + 4 65.00 122 57 178 593 415 0 0 0 0 0 0 0 0 + 5 65.00 140 66 205 687 481 -0 0 0 0 0 0 0 0 + 6 65.00 155 73 228 772 543 0 0 0 0 0 0 0 0 + 1 66.50 1025 1322 2347 13184 10491 345 0 0 0 0 0 0 0 + 2 66.50 622 374 996 3647 2650 -0 0 0 0 0 0 0 0 + 3 66.50 526 304 830 3594 2764 0 0 0 0 0 0 0 0 + 4 66.50 560 349 909 3699 2791 0 0 0 0 0 0 0 0 + 5 66.50 574 372 946 3820 2874 0 0 0 0 0 0 0 0 + 6 66.50 559 336 895 3558 2663 -0 0 0 0 0 0 0 0 + 1 67.87 1167 1507 2674 15524 12535 315 0 0 0 0 0 0 0 + 2 68.00 618 765 1383 7305 5892 30 0 0 0 0 0 0 0 + 3 68.00 536 557 1093 6099 5006 -0 0 0 0 0 0 0 0 + 4 68.00 556 564 1120 5841 4721 0 0 0 0 0 0 0 0 + 5 68.00 568 549 1117 5571 4454 0 0 0 0 0 0 0 0 + 6 68.00 552 481 1033 5009 3976 0 0 0 0 0 0 0 0 + 1 68.00 551 422 973 4456 3483 -0 0 0 0 0 0 0 0 + 2 68.00 538 368 906 3974 3067 -0 0 0 0 0 0 0 0 + 3 68.00 532 322 855 3534 2679 0 0 0 0 0 0 0 0 + 4 68.00 525 280 804 3138 2334 0 0 0 0 0 0 0 0 + 5 68.00 526 244 770 2808 2038 -0 0 0 0 0 0 0 0 + 6 68.00 524 213 737 2519 1782 0 0 0 0 0 0 0 0 + 1 68.00 521 196 717 2360 1643 -0 0 0 0 0 0 0 0 + 2 68.00 474 174 648 2112 1464 0 0 0 0 0 0 0 0 + 3 68.00 426 154 580 1880 1300 0 0 0 0 0 0 0 0 + 4 68.00 384 137 521 1672 1151 0 0 0 0 0 0 0 0 + 5 68.00 349 123 472 1496 1024 0 0 0 0 0 0 0 0 + 6 68.00 315 110 424 1328 904 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 130 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 342 117 459 1412 953 0 0 0 0 0 0 0 0 + 2 68.00 314 105 419 1276 857 0 0 0 0 0 0 0 0 + 3 68.00 287 94 380 1151 770 0 0 0 0 0 0 0 0 + 4 68.00 259 83 342 1021 679 0 0 0 0 0 0 0 0 + 5 68.00 234 73 308 908 601 0 0 0 0 0 0 0 0 + 6 68.00 207 64 271 788 518 0 0 0 0 0 0 0 0 + 1 68.00 206 62 268 776 508 0 0 0 0 0 0 0 0 + 2 68.00 187 56 243 699 456 -0 0 0 0 0 0 0 0 + 3 68.00 171 51 222 641 419 -0 0 0 0 0 0 0 0 + 4 68.00 150 45 194 559 364 0 0 0 0 0 0 0 0 + 5 68.00 136 40 176 508 332 -0 0 0 0 0 0 0 0 + 6 68.00 117 35 151 435 284 0 0 0 0 0 0 0 0 + 1 68.00 83 25 108 313 205 -0 0 0 0 0 0 0 0 + 2 68.00 61 18 79 226 147 0 0 0 0 0 0 0 0 + 3 68.00 46 14 60 171 112 -0 0 0 0 0 0 0 0 + 4 68.00 27 8 35 101 65 -0 0 0 0 0 0 0 0 + 5 68.00 15 4 19 55 35 0 0 0 0 0 0 0 0 + 6 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 45 14 59 169 111 -0 0 0 0 0 0 0 0 + 5 68.00 135 41 175 500 325 -0 0 0 0 0 0 0 0 + 6 68.00 150 45 195 563 367 0 0 0 0 0 0 0 0 + 1 68.00 148 44 193 559 366 0 0 0 0 0 0 0 0 + 2 68.00 174 52 226 656 430 0 0 0 0 0 0 0 0 + 3 68.00 194 60 254 750 496 -0 0 0 0 0 0 0 0 + 4 68.00 212 67 280 841 561 0 0 0 0 0 0 0 0 + 5 68.00 230 75 306 936 630 0 0 0 0 0 0 0 0 + 6 68.00 247 83 330 1031 701 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 131 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 247 83 330 1040 710 0 0 0 0 0 0 0 0 + 2 68.00 257 87 344 1088 745 0 0 0 0 0 0 0 0 + 3 68.00 265 90 355 1128 773 0 0 0 0 0 0 0 0 + 4 68.00 273 93 366 1169 803 0 0 0 0 0 0 0 0 + 5 68.00 279 96 375 1202 826 0 0 0 0 0 0 0 0 + 6 68.00 288 100 387 1245 858 0 0 0 0 0 0 0 0 + 1 68.00 299 105 403 1300 897 0 0 0 0 0 0 0 0 + 2 68.00 308 109 417 1352 935 0 0 0 0 0 0 0 0 + 3 68.00 316 113 429 1397 968 -0 0 0 0 0 0 0 0 + 4 68.00 321 115 436 1425 989 0 0 0 0 0 0 0 0 + 5 68.00 329 120 449 1475 1026 0 0 0 0 0 0 0 0 + 6 68.00 333 122 455 1499 1044 0 0 0 0 0 0 0 0 + 1 68.00 351 128 479 1574 1094 0 0 0 0 0 0 0 0 + 2 68.00 358 129 487 1590 1103 0 0 0 0 0 0 0 0 + 3 68.00 363 130 493 1602 1109 0 0 0 0 0 0 0 0 + 4 68.00 368 131 498 1610 1112 0 0 0 0 0 0 0 0 + 5 68.00 372 131 503 1617 1114 0 0 0 0 0 0 0 0 + 6 68.00 376 132 507 1618 1110 -0 0 0 0 0 0 0 0 + 1 68.00 406 142 548 1749 1200 0 0 0 0 0 0 0 0 + 2 68.00 412 144 556 1775 1219 0 0 0 0 0 0 0 0 + 3 68.00 417 146 562 1798 1236 0 0 0 0 0 0 0 0 + 4 68.00 417 146 563 1803 1240 -0 0 0 0 0 0 0 0 + 5 68.00 419 147 566 1822 1256 0 0 0 0 0 0 0 0 + 6 68.00 421 148 569 1837 1269 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.84 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 132 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 9 4 14 48 34 -0 0 0 0 0 0 0 0 + 2 65.00 100 46 146 507 361 0 0 0 0 0 0 0 0 + 3 65.00 114 53 167 577 410 -0 0 0 0 0 0 0 0 + 4 65.00 126 58 184 642 458 0 0 0 0 0 0 0 0 + 5 65.00 140 64 204 711 507 0 0 0 0 0 0 0 0 + 6 65.00 154 71 225 783 558 0 0 0 0 0 0 0 0 + 1 66.50 992 1291 2283 13168 10540 345 0 0 0 0 0 0 0 + 2 66.50 590 360 949 3637 2688 0 0 0 0 0 0 0 0 + 3 66.50 497 294 791 3610 2819 0 0 0 0 0 0 0 0 + 4 66.50 531 339 870 3721 2851 -0 0 0 0 0 0 0 0 + 5 66.50 545 363 908 3849 2942 0 0 0 0 0 0 0 0 + 6 66.50 531 327 858 3579 2722 0 0 0 0 0 0 0 0 + 1 67.84 1139 1480 2619 15504 12576 309 0 0 0 0 0 0 0 + 2 68.00 620 778 1398 7724 6291 36 0 0 0 0 0 0 0 + 3 68.00 510 564 1073 6375 5301 -0 0 0 0 0 0 0 0 + 4 68.00 528 577 1105 6178 5073 0 0 0 0 0 0 0 0 + 5 68.00 541 570 1111 5950 4839 0 0 0 0 0 0 0 0 + 6 68.00 527 507 1034 5424 4390 0 0 0 0 0 0 0 0 + 1 68.00 526 447 974 4840 3867 -0 0 0 0 0 0 0 0 + 2 68.00 515 395 910 4361 3451 0 0 0 0 0 0 0 0 + 3 68.00 510 350 860 3910 3050 -0 0 0 0 0 0 0 0 + 4 68.00 507 314 821 3573 2752 0 0 0 0 0 0 0 0 + 5 68.00 510 286 796 3303 2507 0 0 0 0 0 0 0 0 + 6 68.00 511 262 773 3084 2311 0 0 0 0 0 0 0 0 + 1 68.00 512 256 768 3031 2263 -0 0 0 0 0 0 0 0 + 2 68.00 510 241 751 2894 2142 -0 0 0 0 0 0 0 0 + 3 68.00 510 230 740 2785 2045 -0 0 0 0 0 0 0 0 + 4 68.00 510 220 730 2686 1956 0 0 0 0 0 0 0 0 + 5 68.00 511 212 723 2604 1881 0 0 0 0 0 0 0 0 + 6 68.00 513 203 716 2514 1798 0 0 0 0 0 0 0 0 + 1 68.00 512 204 717 2532 1815 0 0 0 0 0 0 0 0 + 2 68.00 510 199 709 2482 1773 -0 0 0 0 0 0 0 0 + 3 68.00 509 194 703 2437 1734 0 0 0 0 0 0 0 0 + 4 68.00 507 190 697 2390 1693 0 0 0 0 0 0 0 0 + 5 68.00 505 183 688 2324 1635 -0 0 0 0 0 0 0 0 + 6 68.00 502 176 678 2268 1590 0 0 0 0 0 0 0 0 + 1 68.00 497 168 665 2186 1521 0 0 0 0 0 0 0 0 + 2 68.00 478 161 639 2089 1451 0 0 0 0 0 0 0 0 + 3 68.00 461 153 614 2012 1398 0 0 0 0 0 0 0 0 + 4 68.00 442 146 588 1918 1330 0 0 0 0 0 0 0 0 + 5 68.00 424 139 563 1832 1270 0 0 0 0 0 0 0 0 + 6 68.00 405 132 537 1744 1206 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 133 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 368 119 488 1581 1093 0 0 0 0 0 0 0 0 + 2 68.00 346 112 458 1480 1023 -0 0 0 0 0 0 0 0 + 3 68.00 322 104 426 1369 944 0 0 0 0 0 0 0 0 + 4 68.00 298 95 394 1262 868 -0 0 0 0 0 0 0 0 + 5 68.00 282 90 372 1190 818 -0 0 0 0 0 0 0 0 + 6 68.00 266 84 350 1115 765 0 0 0 0 0 0 0 0 + 1 68.00 236 74 311 983 673 0 0 0 0 0 0 0 0 + 2 68.00 218 68 286 897 611 0 0 0 0 0 0 0 0 + 3 68.00 199 62 261 814 553 0 0 0 0 0 0 0 0 + 4 68.00 185 57 242 753 511 0 0 0 0 0 0 0 0 + 5 68.00 177 55 231 718 487 0 0 0 0 0 0 0 0 + 6 68.00 171 53 223 692 469 0 0 0 0 0 0 0 0 + 1 68.00 172 53 225 698 472 0 0 0 0 0 0 0 0 + 2 68.00 174 54 228 704 476 0 0 0 0 0 0 0 0 + 3 68.00 172 53 225 695 470 0 0 0 0 0 0 0 0 + 4 68.00 166 51 218 672 454 0 0 0 0 0 0 0 0 + 5 68.00 158 49 207 641 434 0 0 0 0 0 0 0 0 + 6 68.00 149 46 195 603 408 0 0 0 0 0 0 0 0 + 1 68.00 102 32 134 413 279 -0 0 0 0 0 0 0 0 + 2 68.00 90 28 118 365 247 0 0 0 0 0 0 0 0 + 3 68.00 81 25 106 326 221 0 0 0 0 0 0 0 0 + 4 68.00 88 27 115 353 238 0 0 0 0 0 0 0 0 + 5 68.00 109 33 142 437 295 0 0 0 0 0 0 0 0 + 6 68.00 130 40 169 520 351 0 0 0 0 0 0 0 0 + 1 68.00 182 56 238 734 496 -0 0 0 0 0 0 0 0 + 2 68.00 208 64 271 839 567 0 0 0 0 0 0 0 0 + 3 68.00 230 70 301 940 639 0 0 0 0 0 0 0 0 + 4 68.00 249 77 326 1020 694 0 0 0 0 0 0 0 0 + 5 68.00 266 82 347 1095 747 0 0 0 0 0 0 0 0 + 6 68.00 281 87 368 1162 795 -0 0 0 0 0 0 0 0 + 1 68.00 293 91 384 1216 832 0 0 0 0 0 0 0 0 + 2 68.00 300 94 394 1256 862 0 0 0 0 0 0 0 0 + 3 68.00 306 96 402 1288 886 -0 0 0 0 0 0 0 0 + 4 68.00 313 98 411 1327 916 -0 0 0 0 0 0 0 0 + 5 68.00 318 100 418 1356 938 0 0 0 0 0 0 0 0 + 6 68.00 324 103 427 1394 967 0 0 0 0 0 0 0 0 + 1 68.00 310 100 410 1354 944 0 0 0 0 0 0 0 0 + 2 68.00 315 103 418 1398 979 0 0 0 0 0 0 0 0 + 3 68.00 321 107 428 1443 1015 -0 0 0 0 0 0 0 0 + 4 68.00 325 110 436 1487 1051 0 0 0 0 0 0 0 0 + 5 68.00 329 113 443 1530 1088 0 0 0 0 0 0 0 0 + 6 68.00 334 117 451 1578 1127 0 0 0 0 0 0 0 0 + 1 68.00 327 116 443 1569 1126 0 0 0 0 0 0 0 0 + 2 68.00 330 119 448 1601 1153 0 0 0 0 0 0 0 0 + 3 68.00 333 121 454 1633 1179 -0 0 0 0 0 0 0 0 + 4 68.00 336 124 460 1665 1205 0 0 0 0 0 0 0 0 + 5 68.00 339 127 466 1698 1233 -0 0 0 0 0 0 0 0 + 6 68.00 342 129 471 1729 1258 -0 0 0 0 0 0 0 0 + 1 68.00 350 132 482 1763 1281 -0 0 0 0 0 0 0 0 + 2 68.00 353 132 485 1764 1280 0 0 0 0 0 0 0 0 + 3 68.00 353 131 485 1761 1276 -0 0 0 0 0 0 0 0 + 4 68.00 355 131 487 1764 1277 0 0 0 0 0 0 0 0 + 5 68.00 356 131 487 1751 1265 0 0 0 0 0 0 0 0 + 6 68.00 356 130 486 1748 1262 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 134 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 366 135 501 1812 1311 0 0 0 0 0 0 0 0 + 2 68.00 367 137 503 1837 1333 0 0 0 0 0 0 0 0 + 3 68.00 367 138 506 1861 1355 0 0 0 0 0 0 0 0 + 4 68.00 369 141 510 1888 1378 0 0 0 0 0 0 0 0 + 5 68.00 371 143 514 1917 1402 0 0 0 0 0 0 0 0 + 6 68.00 373 146 518 1944 1426 0 0 0 0 0 0 0 0 + 1 68.00 395 154 549 2059 1510 0 0 0 0 0 0 0 0 + 2 68.00 399 156 554 2077 1522 -0 0 0 0 0 0 0 0 + 3 68.00 400 156 556 2088 1532 -0 0 0 0 0 0 0 0 + 4 68.00 402 156 559 2099 1540 0 0 0 0 0 0 0 0 + 5 68.00 405 157 562 2108 1547 0 0 0 0 0 0 0 0 + 6 68.00 404 157 561 2100 1539 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 135 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.51 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.37 66.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.18 66.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.04 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.87 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.71 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.55 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.39 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.22 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.07 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.91 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.75 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.59 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.43 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.27 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.11 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 65.95 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.79 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.64 65.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.48 65.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.32 65.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.16 65.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 65.00 65.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.84 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.68 65.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.52 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.36 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.19 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.03 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.87 65.00 64.83 92.77 87.74 0 42829 16333 2388 .0558 .0558 0.381 0.146 0.787 0 70.4 2268 0 0 120 2388 -640 1750 639 -1 935 1191 2.831 2.427 1.659 + 12 2 5 0 30.77 64.05 65.00 64.80 92.74 87.78 0 42848 16392 2988 .0697 .0697 0.383 0.182 0.796 0 88.0 2837 0 0 150 2988 -796 2192 796 -0 1157 1444 2.828 2.452 1.676 + 12 2 5 1 30.62 64.03 65.00 64.82 92.78 87.84 0 42868 16452 3373 .0787 .0787 0.384 0.205 0.801 0 99.3 3204 0 0 169 3373 -893 2480 893 0 1299 1605 2.825 2.466 1.689 + 12 2 5 2 30.47 63.96 65.00 64.82 92.79 87.85 0 42888 16511 3775 .0880 .0880 0.385 0.229 0.807 0 111.1 3585 0 0 190 3775 -999 2776 999 0 1445 1771 2.823 2.482 1.699 + 12 2 5 3 30.32 63.92 65.00 64.80 92.79 87.85 0 42907 16571 4301 0.100 0.100 0.386 0.260 0.815 0 126.5 4085 0 0 216 4301 -1139 3161 1139 0 1632 1984 2.820 2.503 1.711 + 12 2 5 4 30.17 63.88 65.00 64.80 92.79 87.86 0 42927 16630 4745 0.111 0.111 0.387 0.285 0.821 0 139.5 4507 0 0 238 4745 -1257 3488 1257 0 1789 2163 2.817 2.520 1.721 + 12 2 5 5 30.02 63.86 65.00 64.79 92.80 87.88 0 42947 16690 5175 0.120 0.120 0.389 0.310 0.828 0 152.1 4915 0 0 259 5175 -1371 3804 1371 0 1938 2334 2.814 2.536 1.731 + 12 2 6 0 29.90 63.84 66.50 64.85 116.33 112.67 0 42962 16737 81505 1.000 1.897 1.000 1.000 1.000 0.720 1262 40809 35984 0 2154 78946 -13163 63713 15233 2070 14513 52787 2.812 2.812 1.210 + 12 2 6 1 29.78 69.43 66.50 66.06 94.09 90.15 0 42978 16785 22328 0.520 0.520 0.520 1.000 1.000 0 655.8 21209 0 0 1119 22328 -5374 16954 5374 -0 7400 8655 2.810 2.866 1.990 + 12 2 6 2 29.66 66.54 66.50 66.86 94.89 91.29 0 42994 16833 21878 0.509 0.509 0.509 1.000 1.000 0 642.4 20782 0 0 1096 21878 -4471 17407 4471 0 7250 8482 2.807 2.866 2.086 + 12 2 6 3 29.54 65.67 66.50 66.48 94.53 90.88 0 43010 16880 22549 0.524 0.524 0.524 1.000 1.000 0 661.8 21420 0 0 1129 22549 -4912 17637 4912 0 7488 8753 2.805 2.861 2.047 + 12 2 6 4 29.42 66.31 66.50 66.36 94.42 90.77 0 43025 16928 22970 0.534 0.534 0.534 1.000 1.000 0 673.9 21820 0 0 1150 22970 -5090 17880 5090 0 7639 8925 2.803 2.857 2.034 + 12 2 6 5 29.30 66.31 66.50 66.45 94.52 90.66 0 43041 16975 21313 0.495 0.495 0.495 1.000 1.000 0 625.1 20247 0 0 1066 21313 -4807 16507 4807 -0 7070 8273 2.801 2.864 2.029 + 12 2 7 0 29.57 66.39 67.85 66.46 127.12 122.83 0 43006 16868 105k 1.000 2.439 1.000 1.000 1.000 1.000 1262 40852 50000 0 2154 93006 -15275 75867 17139 1864 14560 66850 2.806 2.806 1.137 + 12 2 7 1 29.84 70.50 68.00 67.65 97.36 95.17 0 42970 16761 45603 1.000 1.061 1.000 1.000 1.000 0.0517 1262 40817 2587 0 2154 45557 -7861 37491 8067 206 14521 19399 2.811 2.811 1.946 + 12 2 7 2 30.11 68.68 68.00 68.29 96.29 94.13 0 42935 16654 37676 0.877 0.878 0.877 1.000 1.000 0 1107 35769 0 0 1889 37658 -6030 31628 6030 -0 12665 14691 2.816 2.824 2.173 + 12 2 7 3 30.38 67.90 68.00 68.07 96.05 93.75 0 42899 16547 36259 0.845 0.845 0.845 1.000 1.000 0 1067 34438 0 0 1820 36259 -6227 30031 6227 0 12162 14118 2.821 2.832 2.148 + 12 2 7 4 30.65 68.21 68.00 67.97 95.93 93.50 0 42864 16440 34809 0.812 0.812 0.812 1.000 1.000 0 1025 33060 0 0 1749 34809 -6237 28572 6237 0 11642 13528 2.826 2.840 2.134 + 12 2 7 5 30.92 68.09 68.00 68.02 95.95 93.31 0 42829 16333 31507 0.736 0.736 0.736 1.000 1.000 0 928.6 29922 0 0 1584 31507 -5815 25692 5815 0 10490 12211 2.831 2.852 2.128 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 136 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.52 68.00 68.00 95.79 92.84 0 42620 15702 27991 0.657 0.657 0.657 1.000 1.000 0 829.1 26576 0 0 1414 27991 -5480 22511 5480 -0 9187 10738 2.861 2.893 2.123 + 12 2 8 1 34.10 68.42 68.00 68.06 95.72 92.50 0 42412 15071 25033 0.590 0.590 0.590 1.000 1.000 0 745.1 23761 0 0 1271 25032 -5074 19958 5074 0 8094 9502 2.893 2.936 2.131 + 12 2 8 2 35.69 68.48 68.00 68.05 95.85 92.22 0 42631 14588 22286 0.523 0.523 0.523 1.000 1.000 0 659.9 21160 0 0 1126 22286 -4811 17475 4811 -0 7025 8287 2.952 3.012 2.144 + 12 2 8 3 37.28 68.50 68.00 68.06 96.37 92.20 0 43407 14301 19835 0.457 0.457 0.457 1.000 1.000 0 576.8 18850 0 0 984 19834 -4574 15260 4574 0 6008 7129 3.049 3.137 2.182 + 12 2 8 4 38.87 68.61 68.00 68.07 96.88 92.10 0 44184 14014 17726 0.401 0.401 0.401 1.000 1.000 0 506.4 16862 0 0 864 17726 -4383 13343 4383 0 5141 6142 3.148 3.280 2.222 + 12 2 8 5 40.46 68.63 68.00 68.09 97.41 91.93 0 44960 13728 15768 0.351 0.351 0.351 1.000 1.000 0 442.7 15012 0 0 755 15768 -4186 11582 4186 0 4353 5245 3.250 3.449 2.267 + 12 2 9 0 41.12 68.73 68.00 68.10 97.63 91.67 0 45282 13610 14576 0.322 0.322 0.322 1.000 1.000 0 406.3 13882 0 0 693 14575 -4060 10515 4060 0 3920 4750 3.293 3.541 2.279 + 12 2 9 1 41.78 68.72 68.00 68.12 97.87 91.41 0 45605 13492 13169 0.289 0.289 0.296 0.976 0.994 0 364.5 12547 0 0 622 13169 -3839 9330 3839 0 3300 4058 3.337 3.803 2.379 + 12 2 9 2 42.44 68.67 68.00 68.12 98.08 91.49 0 45927 13374 11649 0.254 0.254 0.291 0.871 0.968 0 320.2 11102 0 0 546 11649 -3427 8221 3427 0 2935 3618 3.381 3.782 2.361 + 12 2 9 3 43.10 68.50 68.00 68.12 98.28 91.56 0 46249 13256 10461 0.226 0.226 0.287 0.789 0.947 0 285.5 9974 0 0 487 10461 -3109 7353 3109 -0 2635 3258 3.425 3.786 2.355 + 12 2 9 4 43.76 68.35 68.00 68.09 98.46 91.57 0 46571 13138 9291 0.199 0.199 0.282 0.707 0.927 0 251.8 8861 0 0 430 9291 -2801 6490 2801 0 2338 2904 3.471 3.791 2.345 + 12 2 9 5 44.42 68.01 68.00 68.06 98.65 91.59 0 46894 13020 8223 0.175 0.175 0.278 0.632 0.908 0 221.4 7846 0 0 378 8223 -2514 5709 2514 0 2062 2576 3.516 3.805 2.340 + 12 2 10 0 44.93 67.72 68.00 68.01 98.75 91.54 0 47143 12930 7898 0.168 0.168 0.274 0.611 0.903 0 211.5 7537 0 0 361 7898 -2455 5443 2455 -0 1954 2451 3.552 3.857 2.351 + 12 2 10 1 45.44 67.64 68.00 67.95 98.86 91.50 0 47392 12839 7042 0.149 0.149 0.271 0.548 0.887 0 187.6 6722 0 0 320 7042 -2224 4818 2224 0 1738 2194 3.588 3.868 2.341 + 12 2 10 2 45.95 67.49 68.00 67.94 99.01 91.51 0 47641 12748 6199 0.130 0.130 0.268 0.486 0.872 0 164.3 5919 0 0 280 6199 -1977 4222 1977 -0 1525 1942 3.624 3.880 2.338 + 12 2 10 3 46.46 67.18 68.00 67.91 99.14 91.50 0 47890 12658 5484 0.115 0.115 0.264 0.433 0.858 0 144.6 5237 0 0 247 5484 -1770 3714 1770 -0 1341 1724 3.661 3.904 2.339 + 12 2 10 4 46.97 67.02 68.00 67.85 99.25 91.44 0 48139 12567 4826 0.100 0.100 0.261 0.384 0.846 0 126.6 4610 0 0 216 4826 -1583 3244 1583 0 1171 1524 3.698 3.936 2.338 + 12 2 10 5 47.48 66.77 68.00 67.82 99.22 91.39 0 48154 12562 4153 .0863 .0863 0.261 0.331 0.833 0 108.9 3968 0 0 186 4153 -1370 2784 1370 0 1023 1345 3.700 3.879 2.303 + 12 2 11 0 48.20 66.67 68.00 67.77 99.17 91.31 0 48154 12562 4582 .0952 .0952 0.261 0.365 0.841 0 120.1 4378 0 0 205 4582 -1521 3061 1521 0 1117 1459 3.700 3.919 2.316 + 12 2 11 1 48.92 66.73 68.00 67.74 99.15 91.26 0 48154 12562 4046 .0840 .0840 0.261 0.322 0.831 0 106.1 3865 0 0 181 4046 -1349 2697 1349 0 999 1316 3.700 3.869 2.286 + 12 2 11 2 49.64 66.69 68.00 67.75 99.16 91.27 0 48154 12562 3517 .0730 .0730 0.261 0.280 0.820 0 92.2 3360 0 0 157 3517 -1171 2346 1171 -0 880 1173 3.700 3.820 2.262 + 12 2 11 3 50.36 66.61 68.00 67.74 99.15 91.25 0 48154 12562 3018 .0627 .0627 0.261 0.240 0.810 0 79.1 2883 0 0 135 3018 -1007 2011 1007 0 764 1036 3.700 3.774 2.237 + 12 2 11 4 51.08 66.54 68.00 67.72 99.13 91.22 0 48154 12562 2562 .0532 .0532 0.261 0.204 0.801 0 67.2 2448 0 0 115 2562 -858 1705 858 -0 656 907 3.700 3.731 2.212 + 12 2 11 5 51.80 66.46 68.00 67.71 99.11 91.18 0 48154 12562 2088 .0434 .0434 0.261 0.166 0.792 0 54.7 1995 0 0 93 2088 -701 1387 701 -0 541 771 3.700 3.687 2.187 + 12 2 12 0 52.70 66.34 68.00 67.69 99.09 91.16 0 48154 12562 1246 .0259 .0259 0.261 .0992 0.775 0 32.7 1190 0 0 56 1246 -419 827 419 0 330 385 3.700 3.609 2.145 + 12 2 12 1 53.60 66.15 68.00 67.67 99.07 91.12 0 48154 12562 722 .0150 .0150 0.261 .0574 0.764 0 18.9 689 0 0 32 722 -244 478 244 0 194 226 3.700 3.561 2.116 + 12 2 12 2 54.50 66.00 68.00 67.63 99.03 91.05 0 48154 12562 215 .0045 .0045 0.261 .0171 0.754 0 5.6 206 0 0 10 215 -73 142 73 0 59 68 3.700 3.514 2.086 + 12 2 12 3 55.40 65.82 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.75 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.70 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.67 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.62 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.57 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.55 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.51 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.47 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.43 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.38 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.34 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.30 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.25 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.21 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.15 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.11 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.05 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 64.99 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 64.93 68.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 64.91 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.85 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.80 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.74 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.69 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.58 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.51 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 137 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.46 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.33 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.25 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.19 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.06 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 63.98 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 18 0 53.00 63.91 68.00 67.15 98.56 90.16 0 48154 12562 1213 .0252 .0252 0.261 .0966 0.774 0 31.8 1159 0 0 54 1213 -443 770 443 -0 321 376 3.700 3.606 2.051 + 12 2 18 1 52.94 63.89 68.00 67.13 98.54 90.13 0 48154 12562 1831 .0380 .0380 0.261 0.146 0.786 0 48.0 1749 0 0 82 1831 -670 1161 670 0 478 559 3.700 3.664 2.076 + 12 2 18 2 52.88 63.94 68.00 67.13 98.54 90.13 0 48154 12562 1986 .0412 .0412 0.261 0.158 0.790 0 52.1 1897 0 0 89 1986 -727 1260 727 0 516 605 3.700 3.678 2.083 + 12 2 18 3 52.82 63.84 68.00 67.14 98.54 90.14 0 48154 12562 2292 .0476 .0476 0.261 0.182 0.796 0 60.1 2189 0 0 103 2292 -838 1454 838 0 591 693 3.700 3.706 2.098 + 12 2 18 4 52.76 63.83 68.00 67.12 98.52 90.11 0 48154 12562 2516 .0523 .0523 0.261 0.200 0.800 0 66.0 2404 0 0 113 2516 -922 1594 922 0 645 758 3.700 3.727 2.104 + 12 2 18 5 52.70 63.77 68.00 67.11 98.52 90.09 0 48154 12562 2808 .0583 .0583 0.261 0.224 0.806 0 73.6 2683 0 0 126 2808 -1030 1778 1030 0 715 840 3.700 3.754 2.116 + 12 2 19 0 52.19 63.78 68.00 67.10 98.51 90.11 0 48154 12562 2780 .0577 .0577 0.261 0.221 0.805 0 72.9 2656 0 0 124 2780 -1019 1761 1019 0 708 832 3.700 3.751 2.116 + 12 2 19 1 51.68 63.64 68.00 67.10 98.51 90.11 0 48154 12562 3136 .0651 .0651 0.261 0.250 0.812 0 82.2 2996 0 0 140 3136 -1149 1987 1149 -0 792 932 3.700 3.784 2.132 + 12 2 19 2 51.17 63.64 68.00 67.08 98.48 90.06 0 48154 12562 3382 .0702 .0702 0.261 0.269 0.817 0 88.7 3231 0 0 151 3382 -1244 2138 1244 0 849 1000 3.700 3.807 2.139 + 12 2 19 3 50.66 63.57 68.00 67.08 98.48 90.05 0 48154 12562 3729 .0774 .0774 0.261 0.297 0.824 0 97.7 3562 0 0 167 3729 -1372 2357 1372 0 928 1094 3.700 3.839 2.153 + 12 2 19 4 50.15 63.60 68.00 67.06 98.47 90.03 0 48154 12562 3972 .0825 .0825 0.261 0.316 0.829 0 104.1 3794 0 0 178 3972 -1464 2508 1464 0 983 1160 3.700 3.862 2.162 + 12 2 19 5 49.64 63.52 68.00 67.07 98.47 90.04 0 48154 12562 4321 .0897 .0897 0.261 0.344 0.836 0 113.3 4128 0 0 193 4321 -1592 2729 1592 0 1060 1253 3.700 3.894 2.177 + 12 2 20 0 49.13 63.52 68.00 67.05 98.46 90.02 0 48154 12562 4841 0.101 0.101 0.261 0.385 0.846 0 126.9 4625 0 0 217 4841 -1787 3054 1787 -0 1173 1526 3.700 3.943 2.198 + 12 2 20 1 48.62 63.60 68.00 67.05 98.46 90.01 0 48154 12562 5200 0.108 0.108 0.261 0.414 0.853 0 136.3 4967 0 0 233 5200 -1920 3280 1920 -0 1249 1618 3.700 3.976 2.213 + 12 2 20 2 48.11 63.68 68.00 67.07 98.47 90.04 0 48154 12562 5547 0.115 0.115 0.261 0.442 0.860 0 145.4 5299 0 0 248 5547 -2044 3503 2044 -0 1322 1707 3.700 4.008 2.231 + 12 2 20 3 47.60 63.79 68.00 67.08 98.48 90.06 0 48154 12562 5804 0.121 0.121 0.261 0.462 0.866 0 152.2 5545 0 0 260 5804 -2135 3670 2135 0 1375 1771 3.700 4.032 2.245 + 12 2 20 4 47.09 63.88 68.00 67.10 98.50 90.09 0 48154 12562 6115 0.127 0.127 0.261 0.487 0.872 0 160.3 5841 0 0 273 6115 -2243 3872 2243 -0 1439 1848 3.700 4.061 2.262 + 12 2 20 5 46.58 64.05 68.00 67.12 98.39 90.10 0 47949 12636 6407 0.134 0.134 0.264 0.507 0.877 0 168.7 6119 0 0 288 6407 -2332 4075 2332 0 1526 1951 3.669 4.009 2.246 + 12 2 21 0 46.10 64.13 68.00 67.16 98.27 90.12 0 47714 12722 7048 0.148 0.148 0.267 0.554 0.889 0 186.5 6730 0 0 318 7048 -2539 4509 2539 0 1691 2145 3.635 3.980 2.244 + 12 2 21 1 45.62 64.25 68.00 67.18 98.14 90.12 0 47480 12807 7358 0.155 0.155 0.270 0.575 0.894 0 195.6 7024 0 0 334 7358 -2628 4730 2628 0 1790 2260 3.601 3.925 2.227 + 12 2 21 2 45.14 64.35 68.00 67.21 98.02 90.13 0 47245 12892 7651 0.162 0.162 0.273 0.593 0.898 0 204.4 7302 0 0 349 7651 -2706 4945 2706 0 1887 2372 3.567 3.870 2.212 + 12 2 21 3 44.66 64.43 68.00 67.23 97.89 90.13 0 47011 12978 7956 0.169 0.169 0.276 0.613 0.903 0 213.6 7592 0 0 364 7956 -2788 5168 2788 0 1987 2488 3.533 3.820 2.197 + 12 2 21 4 44.18 64.53 68.00 67.25 97.76 90.12 0 46777 13063 8257 0.177 0.177 0.279 0.632 0.908 0 222.8 7876 0 0 380 8257 -2868 5388 2868 -0 2088 2605 3.500 3.771 2.183 + 12 2 21 5 43.70 64.62 68.00 67.27 97.63 90.12 0 46542 13149 8545 0.184 0.184 0.283 0.650 0.912 0 231.8 8149 0 0 395 8545 -2941 5603 2941 0 2188 2720 3.466 3.724 2.169 + 12 2 22 0 43.28 64.71 68.00 67.30 97.51 90.11 0 46337 13224 9507 0.205 0.205 0.285 0.719 0.930 0 259.0 9065 0 0 442 9507 -3246 6261 3246 0 2425 3003 3.438 3.739 2.184 + 12 2 22 1 42.86 64.90 68.00 67.32 97.40 90.11 0 46132 13299 9812 0.213 0.213 0.288 0.738 0.934 0 268.5 9354 0 0 458 9812 -3322 6490 3322 0 2526 3120 3.409 3.704 2.175 + 12 2 22 2 42.44 65.02 68.00 67.36 97.31 90.14 0 45927 13374 10079 0.219 0.219 0.291 0.754 0.938 0 277.0 9607 0 0 473 10079 -3375 6705 3375 0 2619 3229 3.381 3.668 2.168 + 12 2 22 3 42.02 65.11 68.00 67.38 97.20 90.14 0 45722 13449 10368 0.227 0.227 0.294 0.771 0.943 0 286.2 9879 0 0 488 10368 -3438 6929 3438 0 2718 3343 3.353 3.634 2.161 + 12 2 22 4 41.60 65.22 68.00 67.41 97.09 90.14 0 45517 13524 10645 0.234 0.234 0.297 0.787 0.947 0 295.2 10142 0 0 504 10645 -3500 7145 3500 0 2816 3456 3.325 3.601 2.152 + 12 2 22 5 41.18 65.33 68.00 67.43 96.98 90.14 0 45312 13599 10888 0.240 0.240 0.300 0.801 0.950 0 303.3 10371 0 0 518 10888 -3548 7341 3548 0 2907 3561 3.297 3.567 2.143 + 12 2 23 0 41.27 65.42 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 63.95 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.60 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.39 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.26 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.10 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.00 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 62.95 67.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.76 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.68 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.51 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.43 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 138 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.38 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.25 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.20 66.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.11 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.10 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 61.99 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.92 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.88 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.86 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.78 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.68 66.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.59 65.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.49 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.39 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.29 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.19 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.08 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 60.97 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.87 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.76 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.65 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.54 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.43 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.31 65.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.19 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.08 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 59.96 65.00 64.15 92.25 86.86 0 43088 17118 1267 .0294 .0294 0.397 .0740 0.769 0 37.1 1204 0 0 63 1267 -381 887 380 -2 515 715 2.794 2.337 1.534 + 12 3 5 3 28.64 60.05 65.00 64.09 92.22 86.85 0 43128 17237 3559 .0825 .0825 0.400 0.206 0.802 0 104.2 3382 0 0 178 3559 -1070 2489 1070 0 1390 1704 2.789 2.433 1.588 + 12 3 5 4 28.34 60.33 65.00 64.11 92.26 86.92 0 43167 17356 4121 .0955 .0955 0.402 0.237 0.809 0 120.5 3915 0 0 206 4121 -1233 2888 1233 -0 1597 1939 2.783 2.452 1.602 + 12 3 5 5 28.04 60.37 65.00 64.15 92.33 87.04 0 43206 17475 4631 0.107 0.107 0.404 0.265 0.816 0 135.3 4400 0 0 231 4631 -1371 3260 1371 0 1783 2150 2.778 2.468 1.619 + 12 3 6 0 28.07 60.39 66.50 64.38 115.97 112.11 0 43202 17463 82729 1.000 1.915 1.000 1.000 1.000 0.718 1262 41049 35900 0 2154 79102 -14085 62947 16155 2070 14773 52963 2.779 2.779 1.192 + 12 3 6 1 28.10 66.75 66.50 65.50 93.67 89.25 0 43198 17451 21879 0.506 0.506 0.506 1.000 1.000 0 639.4 20788 0 0 1091 21879 -5976 15903 5976 -0 7317 8545 2.779 2.841 1.891 + 12 3 6 2 28.13 63.54 66.50 66.40 94.57 90.57 0 43194 17439 21561 0.499 0.499 0.499 1.000 1.000 0 630.1 20486 0 0 1075 21561 -4980 16581 4980 0 7205 8417 2.780 2.843 2.002 + 12 3 6 3 28.16 62.60 66.50 65.99 94.16 90.11 0 43190 17427 22195 0.514 0.514 0.514 1.000 1.000 0 648.7 21088 0 0 1107 22195 -5452 16743 5452 0 7425 8669 2.780 2.840 1.962 + 12 3 6 4 28.19 63.32 66.50 65.87 94.04 90.05 0 43187 17415 22917 0.531 0.531 0.531 1.000 1.000 0 669.9 21774 0 0 1143 22917 -5675 17242 5675 0 7676 8956 2.781 2.837 1.955 + 12 3 6 5 28.22 63.38 66.50 65.96 94.12 89.92 0 43183 17403 21348 0.494 0.494 0.494 1.000 1.000 0 624.1 20283 0 0 1065 21348 -5368 15980 5368 -0 7127 8328 2.781 2.846 1.951 + 12 3 7 0 28.52 63.70 67.87 66.07 126.82 122.37 0 43143 17284 105k 1.000 2.444 1.000 1.000 1.000 1.000 1262 40990 50000 0 2154 93143 -16046 75210 17933 1887 14709 66999 2.787 2.787 1.125 + 12 3 7 1 28.82 67.96 68.00 67.30 95.89 93.62 0 43104 17166 43861 1.000 1.018 1.000 1.000 1.000 0.0146 1262 40950 729 0 2154 43832 -8297 35352 8480 183 14666 17685 2.792 2.792 2.015 + 12 3 7 2 29.12 66.12 68.00 67.94 96.02 93.61 0 43065 17047 36592 0.850 0.850 0.850 1.000 1.000 0 1073 34762 0 0 1830 36592 -6559 30033 6559 -0 12378 14345 2.798 2.808 2.114 + 12 3 7 3 29.42 65.27 68.00 67.71 95.77 93.20 0 43025 16928 35046 0.815 0.815 0.815 1.000 1.000 0 1028 33291 0 0 1754 35046 -6720 28325 6720 0 11819 13709 2.803 2.817 2.087 + 12 3 7 4 29.72 65.82 68.00 67.60 95.63 92.90 0 42986 16809 33427 0.778 0.778 0.778 1.000 1.000 0 981.6 31752 0 0 1675 33427 -6702 26724 6702 0 11236 13048 2.809 2.826 2.070 + 12 3 7 5 30.02 65.81 68.00 67.66 95.67 92.70 0 42947 16690 30054 0.700 0.700 0.700 1.000 1.000 0 883.4 28547 0 0 1507 30054 -6199 23854 6199 0 10052 11696 2.814 2.840 2.064 + 12 3 8 0 31.40 66.10 68.00 67.65 95.54 92.22 0 42766 16142 26738 0.625 0.625 0.625 1.000 1.000 0 789.2 25391 0 0 1346 26738 -5840 20898 5840 -0 8829 10312 2.840 2.876 2.054 + 12 3 8 1 32.78 66.06 68.00 67.68 95.45 91.82 0 42585 15595 23843 0.560 0.560 0.560 1.000 1.000 0 706.8 22637 0 0 1206 23843 -5439 18404 5439 -0 7768 9110 2.867 2.914 2.051 + 12 3 8 2 34.16 66.21 68.00 67.66 95.31 91.30 0 42404 15047 21203 0.500 0.500 0.500 1.000 1.000 0 631.2 20126 0 0 1077 21202 -5127 16075 5127 0 6808 8021 2.894 2.956 2.039 + 12 3 8 3 35.54 66.22 68.00 67.67 95.42 90.93 0 42557 14616 18828 0.442 0.442 0.442 1.000 1.000 0 558.5 17875 0 0 953 18827 -4826 14002 4826 0 5907 6997 2.943 3.026 2.041 + 12 3 8 4 36.92 66.32 68.00 67.65 95.85 90.74 0 43231 14366 16848 0.390 0.390 0.390 1.000 1.000 0 492.0 16008 0 0 839 16848 -4620 12228 4620 -0 5097 6073 3.027 3.141 2.060 + 12 3 8 5 38.30 66.36 68.00 67.65 96.28 90.51 0 43905 14117 15115 0.344 0.344 0.344 1.000 1.000 0 434.6 14373 0 0 741 15114 -4421 10693 4421 0 4393 5271 3.112 3.272 2.083 + 12 3 9 0 38.84 66.45 68.00 67.65 96.45 90.28 0 44169 14019 14165 0.321 0.321 0.321 1.000 1.000 0 404.7 13471 0 0 691 14162 -4304 9858 4304 -0 4039 4866 3.146 3.336 2.085 + 12 3 9 1 39.38 66.46 68.00 67.66 96.64 90.32 0 44433 13922 12672 0.285 0.285 0.313 0.910 0.978 0 360.0 12058 0 0 614 12672 -3887 8784 3887 0 3463 4214 3.180 3.482 2.155 + 12 3 9 2 39.92 66.33 68.00 67.67 96.82 90.39 0 44696 13825 11281 0.252 0.252 0.309 0.816 0.954 0 318.6 10737 0 0 544 11281 -3481 7800 3481 0 3112 3792 3.215 3.450 2.134 + 12 3 9 3 40.46 66.18 68.00 67.64 96.97 90.42 0 44960 13728 10035 0.223 0.223 0.305 0.731 0.933 0 281.7 9554 0 0 481 10035 -3128 6907 3128 0 2788 3405 3.250 3.427 2.113 + 12 3 9 4 41.00 65.94 68.00 67.61 97.11 90.44 0 45224 13631 8976 0.198 0.198 0.301 0.658 0.915 0 250.6 8548 0 0 427 8976 -2831 6145 2831 0 2503 3067 3.285 3.415 2.097 + 12 3 9 5 41.54 65.71 68.00 67.57 97.24 90.43 0 45487 13535 7970 0.175 0.175 0.298 0.589 0.897 0 221.2 7593 0 0 377 7970 -2547 5423 2547 -0 2229 2743 3.321 3.406 2.081 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 139 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.74 68.00 67.53 97.44 90.44 0 45868 13395 8470 0.185 0.185 0.292 0.632 0.908 0 233.1 8072 0 0 398 8470 -2752 5717 2752 0 2283 2818 3.373 3.535 2.132 + 12 3 10 1 43.10 65.88 68.00 67.53 97.69 90.51 0 46249 13256 7653 0.165 0.165 0.287 0.577 0.894 0 208.9 7297 0 0 356 7653 -2514 5140 2514 0 2042 2534 3.425 3.574 2.143 + 12 3 10 2 43.88 65.73 68.00 67.55 97.96 90.62 0 46630 13117 6903 0.148 0.148 0.281 0.526 0.882 0 186.9 6584 0 0 319 6903 -2282 4621 2282 0 1818 2273 3.479 3.622 2.163 + 12 3 10 3 44.66 65.76 68.00 67.52 98.18 90.65 0 47011 12978 6128 0.130 0.130 0.276 0.472 0.868 0 164.6 5848 0 0 281 6128 -2054 4075 2054 0 1593 2010 3.533 3.671 2.175 + 12 3 10 4 45.44 65.62 68.00 67.52 98.42 90.71 0 47392 12839 5449 0.115 0.115 0.271 0.424 0.856 0 145.1 5201 0 0 248 5449 -1846 3603 1846 0 1394 1778 3.588 3.733 2.196 + 12 3 10 5 46.22 65.65 68.00 67.49 98.65 90.73 0 47773 12700 4729 .0990 .0990 0.266 0.372 0.843 0 125.0 4516 0 0 213 4729 -1624 3105 1624 0 1190 1539 3.644 3.796 2.213 + 12 3 11 0 46.58 65.53 68.00 67.49 98.76 90.75 0 47949 12636 4654 .0971 .0971 0.264 0.368 0.842 0 122.5 4445 0 0 209 4654 -1607 3047 1607 0 1154 1500 3.669 3.851 2.235 + 12 3 11 1 46.94 65.73 68.00 67.47 98.85 90.74 0 48124 12572 4197 .0872 .0872 0.261 0.334 0.833 0 110.1 4009 0 0 188 4197 -1461 2736 1461 -0 1035 1360 3.696 3.872 2.237 + 12 3 11 2 47.30 65.57 68.00 67.50 98.90 90.79 0 48154 12562 3847 .0799 .0799 0.261 0.306 0.827 0 100.9 3675 0 0 172 3847 -1334 2513 1334 -0 954 1263 3.700 3.850 2.230 + 12 3 11 3 47.66 65.79 68.00 67.47 98.88 90.75 0 48154 12562 3353 .0696 .0696 0.261 0.267 0.817 0 87.9 3203 0 0 150 3353 -1167 2186 1167 0 842 1128 3.700 3.805 2.204 + 12 3 11 4 48.02 65.57 68.00 67.51 98.91 90.81 0 48154 12562 3050 .0633 .0633 0.261 0.243 0.811 0 80.0 2914 0 0 136 3050 -1057 1993 1057 -0 772 1044 3.700 3.777 2.196 + 12 3 11 5 48.38 65.82 68.00 67.47 98.88 90.75 0 48154 12562 2612 .0542 .0542 0.261 0.208 0.802 0 68.5 2495 0 0 117 2612 -909 1703 909 0 668 921 3.700 3.736 2.171 + 12 3 12 0 48.86 65.45 68.00 67.51 98.92 90.81 0 48154 12562 1878 .0390 .0390 0.261 0.150 0.787 0 49.2 1794 0 0 84 1878 -650 1228 650 -0 489 710 3.700 3.668 2.142 + 12 3 12 1 49.34 65.58 68.00 67.45 98.86 90.72 0 48154 12562 1355 .0281 .0281 0.261 0.108 0.777 0 35.5 1294 0 0 61 1355 -473 882 473 0 358 555 3.700 3.619 2.110 + 12 3 12 2 49.82 65.17 68.00 67.47 98.87 90.74 0 48154 12562 1028 .0213 .0213 0.261 .0818 0.770 0 26.9 982 0 0 46 1028 -358 670 358 -0 274 456 3.700 3.589 2.096 + 12 3 12 3 50.30 65.36 68.00 67.41 98.81 90.64 0 48154 12562 605 .0126 .0126 0.261 .0482 0.762 0 15.9 578 0 0 27 605 -213 393 213 -0 163 326 3.700 3.550 2.068 + 12 3 12 4 50.78 65.22 68.00 67.43 98.84 90.68 0 48154 12562 327 .0068 .0068 0.261 .0260 0.757 0 8.6 312 0 0 15 327 -114 213 114 0 89 240 3.700 3.524 2.058 + 12 3 12 5 51.26 65.15 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 13 0 51.59 65.11 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.09 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.13 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.12 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.16 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.11 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.27 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.19 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.39 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.29 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.39 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.30 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.34 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.57 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.52 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.58 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.44 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.44 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.43 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.57 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.53 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.52 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.55 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.56 68.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.61 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.41 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.61 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.24 68.00 67.51 98.91 90.79 0 48154 12562 1017 .0211 .0211 0.261 .0809 0.770 0 26.7 971 0 0 45 1017 -354 664 353 -1 271 316 3.700 3.588 2.100 + 12 3 17 4 49.49 65.66 68.00 67.42 98.83 90.68 0 48154 12562 3000 .0623 .0623 0.261 0.239 0.810 0 78.7 2866 0 0 134 3000 -1050 1950 1050 -0 760 894 3.700 3.772 2.181 + 12 3 17 5 49.10 65.86 68.00 67.49 98.89 90.78 0 48154 12562 3376 .0701 .0701 0.261 0.269 0.817 0 88.5 3225 0 0 151 3376 -1172 2204 1172 0 847 998 3.700 3.807 2.208 + 12 3 18 0 48.05 65.89 68.00 67.53 98.94 90.86 0 48154 12562 3353 .0696 .0696 0.261 0.267 0.817 0 87.9 3203 0 0 150 3353 -1156 2196 1156 0 842 1128 3.700 3.805 2.214 + 12 3 18 1 47.00 65.97 68.00 67.54 98.94 90.87 0 48154 12562 3936 .0817 .0817 0.261 0.313 0.828 0 103.2 3760 0 0 176 3936 -1356 2580 1356 0 974 1287 3.700 3.859 2.243 + 12 3 18 2 45.95 66.11 68.00 67.56 98.63 90.82 0 47641 12748 4502 .0945 .0945 0.268 0.353 0.838 0 119.3 4298 0 0 204 4502 -1526 2976 1526 -0 1152 1492 3.624 3.732 2.196 + 12 3 18 3 44.90 66.28 68.00 67.59 98.33 90.78 0 47128 12935 5044 0.107 0.107 0.274 0.390 0.847 0 135.1 4813 0 0 230 5044 -1679 3365 1679 0 1331 1698 3.550 3.617 2.155 + 12 3 18 4 43.85 66.49 68.00 67.62 98.03 90.74 0 46615 13122 5614 0.120 0.120 0.281 0.428 0.857 0 152.0 5355 0 0 259 5614 -1834 3780 1834 0 1523 1919 3.477 3.517 2.121 + 12 3 18 5 42.80 66.72 68.00 67.67 97.73 90.71 0 46103 13309 6188 0.134 0.134 0.289 0.465 0.866 0 169.4 5899 0 0 289 6188 -1982 4206 1982 -0 1722 2147 3.405 3.427 2.092 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 140 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.82 68.00 67.71 97.73 90.76 0 46029 13336 6241 0.136 0.136 0.290 0.468 0.867 0 171.2 5949 0 0 292 6241 -1982 4260 1982 0 1743 2172 3.395 3.412 2.093 + 12 3 19 1 42.50 66.82 68.00 67.73 97.70 90.79 0 45956 13363 6531 0.142 0.142 0.291 0.489 0.872 0 179.4 6225 0 0 306 6531 -2061 4469 2061 0 1822 2265 3.385 3.415 2.100 + 12 3 19 2 42.35 66.94 68.00 67.73 97.66 90.78 0 45883 13390 6767 0.147 0.147 0.292 0.505 0.876 0 186.2 6449 0 0 318 6767 -2130 4637 2130 0 1889 2343 3.375 3.415 2.102 + 12 3 19 3 42.20 66.91 68.00 67.76 97.63 90.81 0 45810 13417 7017 0.153 0.153 0.293 0.523 0.881 0 193.4 6687 0 0 330 7017 -2196 4821 2196 0 1958 2424 3.365 3.415 2.107 + 12 3 19 4 42.05 66.95 68.00 67.75 97.58 90.79 0 45736 13443 7209 0.158 0.158 0.294 0.536 0.884 0 199.0 6870 0 0 339 7209 -2251 4958 2251 0 2014 2490 3.355 3.411 2.107 + 12 3 19 5 41.90 66.89 68.00 67.76 97.54 90.80 0 45663 13470 7472 0.164 0.164 0.295 0.555 0.889 0 206.6 7120 0 0 352 7472 -2324 5148 2324 0 2086 2575 3.345 3.413 2.111 + 12 3 20 0 41.60 66.94 68.00 67.76 97.44 90.76 0 45517 13524 7799 0.171 0.171 0.297 0.577 0.894 0 216.3 7430 0 0 369 7799 -2418 5381 2418 0 2185 2690 3.325 3.401 2.107 + 12 3 20 1 41.30 66.89 68.00 67.77 97.36 90.74 0 45370 13578 8114 0.179 0.179 0.299 0.598 0.899 0 225.8 7729 0 0 385 8114 -2501 5613 2501 0 2280 2802 3.305 3.389 2.106 + 12 3 20 2 41.00 66.85 68.00 67.77 97.26 90.71 0 45224 13631 8382 0.185 0.185 0.301 0.615 0.904 0 234.0 7983 0 0 399 8382 -2574 5808 2574 -0 2366 2902 3.285 3.374 2.101 + 12 3 20 3 40.70 66.90 68.00 67.76 97.16 90.67 0 45077 13685 8548 0.190 0.190 0.304 0.625 0.906 0 239.4 8140 0 0 408 8548 -2616 5932 2616 0 2428 2973 3.266 3.353 2.092 + 12 3 20 4 40.40 66.81 68.00 67.77 97.08 90.65 0 44931 13739 8849 0.197 0.197 0.306 0.644 0.911 0 248.6 8425 0 0 424 8849 -2692 6157 2692 0 2522 3082 3.246 3.341 2.090 + 12 3 20 5 40.10 66.82 68.00 67.76 96.97 90.60 0 44784 13793 8997 0.201 0.201 0.308 0.652 0.913 0 253.6 8564 0 0 433 8997 -2731 6266 2731 0 2580 3149 3.227 3.319 2.080 + 12 3 21 0 40.43 66.78 68.00 67.76 97.08 90.65 0 44945 13734 9442 0.210 0.210 0.306 0.688 0.922 0 265.2 8990 0 0 452 9442 -2876 6566 2876 0 2657 3246 3.248 3.384 2.112 + 12 3 21 1 40.76 66.75 68.00 67.76 97.17 90.68 0 45106 13674 9537 0.211 0.211 0.303 0.697 0.924 0 266.9 9082 0 0 455 9537 -2921 6617 2921 0 2651 3242 3.270 3.426 2.130 + 12 3 21 2 41.09 66.70 68.00 67.75 97.28 90.71 0 45268 13615 9610 0.212 0.212 0.301 0.706 0.926 0 268.0 9153 0 0 457 9610 -2957 6653 2957 0 2639 3233 3.291 3.469 2.149 + 12 3 21 3 41.42 66.63 68.00 67.75 97.37 90.74 0 45429 13556 9663 0.213 0.213 0.298 0.713 0.928 0 268.5 9205 0 0 458 9663 -2989 6673 2989 0 2622 3216 3.313 3.511 2.167 + 12 3 21 4 41.75 66.50 68.00 67.73 97.47 90.75 0 45590 13497 9705 0.213 0.213 0.296 0.719 0.930 0 268.7 9246 0 0 458 9705 -3021 6684 3021 0 2602 3197 3.335 3.553 2.184 + 12 3 21 5 42.08 66.52 68.00 67.71 97.55 90.75 0 45751 13438 9707 0.212 0.212 0.294 0.722 0.931 0 267.8 9250 0 0 457 9707 -3045 6662 3045 -0 2573 3167 3.357 3.594 2.198 + 12 3 22 0 42.05 66.52 68.00 67.71 97.54 90.75 0 45736 13443 10492 0.229 0.229 0.294 0.780 0.945 0 289.6 9998 0 0 494 10492 -3290 7202 3290 0 2741 3372 3.355 3.647 2.226 + 12 3 22 1 42.02 66.58 68.00 67.71 97.53 90.75 0 45722 13449 10652 0.233 0.233 0.294 0.792 0.948 0 294.1 10150 0 0 502 10652 -3339 7313 3339 0 2777 3416 3.353 3.655 2.230 + 12 3 22 2 41.99 66.62 68.00 67.73 97.53 90.76 0 45707 13454 10789 0.236 0.236 0.294 0.802 0.950 0 298.0 10281 0 0 508 10789 -3374 7415 3374 0 2809 3454 3.351 3.661 2.235 + 12 3 22 3 41.96 66.83 68.00 67.73 97.53 90.77 0 45692 13459 10819 0.237 0.237 0.295 0.804 0.951 0 298.9 10309 0 0 510 10819 -3378 7441 3378 -0 2818 3464 3.349 3.659 2.236 + 12 3 22 4 41.93 66.92 68.00 67.77 97.56 90.82 0 45678 13465 10929 0.239 0.239 0.295 0.812 0.953 0 302.0 10414 0 0 515 10929 -3393 7536 3393 0 2843 3495 3.347 3.663 2.244 + 12 3 22 5 41.90 66.99 68.00 67.78 97.56 90.85 0 45663 13470 11025 0.241 0.241 0.295 0.818 0.955 0 304.8 10505 0 0 520 11025 -3411 7614 3411 0 2866 3522 3.345 3.666 2.249 + 12 3 23 0 41.51 67.11 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.67 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.31 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.34 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.24 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.16 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.07 67.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 64.92 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.86 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.76 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.68 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.51 66.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.46 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.49 66.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.32 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.25 66.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.13 66.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.01 66.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.90 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.78 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.67 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.55 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.44 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.32 65.84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 141 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.20 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.08 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 62.95 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.83 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.70 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.57 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.45 65.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.32 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.19 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.06 65.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.92 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.79 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.65 65.00 64.46 92.47 87.21 0 42951 16702 287 .0067 .0067 0.389 .0172 0.754 0 8.4 273 0 0 14 287 -83 205 82 -0 118 269 2.814 2.311 1.548 + 12 4 5 1 29.96 61.56 65.00 64.39 92.41 87.15 0 42954 16714 3042 .0708 .0708 0.389 0.182 0.796 0 89.4 2890 0 0 153 3042 -878 2165 878 0 1186 1475 2.813 2.437 1.617 + 12 4 5 2 29.93 61.85 65.00 64.37 92.39 87.12 0 42958 16725 3459 .0805 .0805 0.389 0.207 0.802 0 101.7 3286 0 0 173 3459 -1001 2458 1001 -0 1338 1648 2.812 2.455 1.626 + 12 4 5 3 29.90 61.85 65.00 64.42 92.44 87.19 0 42962 16737 3854 .0897 .0897 0.390 0.230 0.808 0 113.2 3661 0 0 193 3854 -1107 2747 1107 0 1480 1810 2.812 2.473 1.641 + 12 4 5 4 29.87 61.81 65.00 64.42 92.44 87.20 0 42966 16749 4269 .0993 .0993 0.390 0.255 0.814 0 125.4 4055 0 0 214 4269 -1226 3043 1226 0 1628 1978 2.811 2.491 1.652 + 12 4 5 5 29.84 61.81 65.00 64.41 92.43 87.19 0 42970 16761 4696 0.109 0.109 0.390 0.280 0.820 0 138.0 4460 0 0 235 4696 -1350 3346 1350 0 1777 2149 2.811 2.510 1.663 + 12 4 6 0 29.72 61.81 66.50 64.57 116.10 112.33 0 42986 16809 82207 1.000 1.912 1.000 1.000 1.000 0.720 1262 40832 36024 0 2154 79010 -13699 63241 15769 2070 14538 52852 2.809 2.809 1.200 + 12 4 6 1 29.60 67.97 66.50 65.73 93.77 89.53 0 43002 16856 21824 0.508 0.508 0.508 1.000 1.000 0 640.7 20731 0 0 1093 21824 -5694 16129 5694 0 7234 8463 2.806 2.866 1.937 + 12 4 6 2 29.48 64.79 66.50 66.60 94.66 90.84 0 43017 16904 21661 0.504 0.504 0.504 1.000 1.000 0 635.6 20577 0 0 1084 21661 -4748 16913 4748 0 7183 8404 2.804 2.865 2.046 + 12 4 6 3 29.36 63.87 66.50 66.20 94.26 90.39 0 43033 16951 22326 0.519 0.519 0.519 1.000 1.000 0 654.9 21208 0 0 1117 22326 -5221 17104 5221 -0 7418 8672 2.802 2.859 2.004 + 12 4 6 4 29.24 64.58 66.50 66.08 94.15 90.34 0 43049 16999 23097 0.537 0.537 0.537 1.000 1.000 0 677.3 21941 0 0 1155 23097 -5447 17650 5447 0 7691 8983 2.800 2.853 1.995 + 12 4 6 5 29.12 64.62 66.50 66.17 94.25 90.23 0 43065 17047 21475 0.499 0.499 0.499 1.000 1.000 0 629.5 20401 0 0 1074 21475 -5145 16330 5145 0 7134 8344 2.798 2.860 1.990 + 12 4 7 0 29.42 64.91 67.84 66.24 126.91 122.52 0 43025 16928 106k 1.000 2.466 1.000 1.000 1.000 1.000 1262 40872 50000 0 2154 93025 -15712 75458 17567 1856 14581 66871 2.803 2.803 1.131 + 12 4 7 1 29.72 69.11 68.00 67.44 97.67 95.35 0 42986 16809 46447 1.000 1.081 1.000 1.000 1.000 0.0672 1262 40832 3361 0 2154 46347 -8386 37746 8601 214 14538 20189 2.809 2.809 1.882 + 12 4 7 2 30.02 67.39 68.00 68.10 96.10 93.88 0 42947 16690 38265 0.891 0.891 0.891 1.000 1.000 0 1124 36329 0 0 1918 38247 -6439 31808 6439 -0 12876 14930 2.814 2.821 2.150 + 12 4 7 3 30.32 66.48 68.00 67.89 95.87 93.53 0 42907 16571 37069 0.864 0.864 0.864 1.000 1.000 0 1091 35208 0 0 1861 37069 -6633 30435 6633 0 12445 14442 2.820 2.829 2.128 + 12 4 7 4 30.62 67.00 68.00 67.77 95.73 93.26 0 42868 16452 35701 0.833 0.833 0.833 1.000 1.000 0 1051 33907 0 0 1794 35701 -6668 29033 6668 0 11951 13881 2.825 2.837 2.112 + 12 4 7 5 30.92 67.00 68.00 67.84 95.77 93.12 0 42829 16333 32546 0.760 0.760 0.760 1.000 1.000 0 959.3 30910 0 0 1637 32546 -6207 26339 6207 0 10846 12619 2.831 2.850 2.110 + 12 4 8 0 32.18 67.27 68.00 67.83 95.66 92.70 0 42663 15833 29043 0.681 0.681 0.681 1.000 1.000 0 859.3 27576 0 0 1466 29043 -5841 23202 5841 -0 9565 11168 2.855 2.883 2.103 + 12 4 8 1 33.44 67.23 68.00 67.87 95.58 92.37 0 42498 15333 26164 0.616 0.616 0.616 1.000 1.000 0 777.2 24838 0 0 1326 26164 -5459 20706 5459 0 8513 9976 2.880 2.918 2.104 + 12 4 8 2 34.70 67.37 68.00 67.86 95.47 91.93 0 42333 14833 23460 0.554 0.554 0.554 1.000 1.000 0 699.6 22266 0 0 1193 23460 -5157 18303 5157 -0 7534 8864 2.905 2.955 2.097 + 12 4 8 3 35.96 67.37 68.00 67.87 95.76 91.87 0 42762 14540 21440 0.501 0.501 0.501 1.000 1.000 0 632.9 20360 0 0 1080 21440 -4928 16513 4928 0 6709 7925 2.969 3.035 2.120 + 12 4 8 4 37.22 67.49 68.00 67.87 96.16 91.86 0 43378 14312 19820 0.457 0.457 0.457 1.000 1.000 0 576.8 18836 0 0 984 19820 -4777 15043 4777 0 6012 7132 3.045 3.133 2.150 + 12 4 8 5 38.48 67.56 68.00 67.89 96.58 91.89 0 43993 14084 18503 0.421 0.421 0.421 1.000 1.000 0 530.9 17597 0 0 906 18503 -4638 13865 4638 0 5432 6474 3.124 3.239 2.188 + 12 4 9 0 39.11 67.67 68.00 67.90 96.79 91.97 0 44301 13971 18184 0.410 0.410 0.410 1.000 1.000 0 518.2 17300 0 0 884 18184 -4607 13577 4607 -0 5253 6274 3.163 3.293 2.212 + 12 4 9 1 39.74 67.72 68.00 67.92 97.01 91.93 0 44608 13858 17363 0.389 0.389 0.389 1.000 1.000 0 491.4 16525 0 0 838 17363 -4509 12855 4509 -0 4923 5898 3.204 3.357 2.231 + 12 4 9 2 40.37 67.72 68.00 67.92 97.22 91.90 0 44916 13744 16709 0.372 0.372 0.372 1.000 1.000 0 469.6 15908 0 0 801 16709 -4439 12270 4439 -0 4648 5586 3.244 3.423 2.252 + 12 4 9 3 41.00 67.67 68.00 67.93 97.42 91.86 0 45224 13631 16117 0.356 0.356 0.356 1.000 1.000 0 449.9 15349 0 0 768 16116 -4380 11737 4380 0 4395 5299 3.285 3.492 2.273 + 12 4 9 4 41.63 67.58 68.00 67.92 97.61 91.83 0 45531 13519 15623 0.343 0.343 0.343 1.000 1.000 0 433.1 14884 0 0 739 15623 -4339 11284 4339 0 4174 5050 3.327 3.566 2.297 + 12 4 9 5 42.26 67.69 68.00 67.91 97.80 91.76 0 45839 13406 15087 0.329 0.329 0.329 1.000 1.000 0 415.5 14378 0 0 709 15086 -4296 10791 4296 0 3944 4789 3.369 3.646 2.319 + 12 4 10 0 42.41 67.76 68.00 67.93 97.87 91.85 0 45912 13379 15193 0.331 0.331 0.331 1.000 1.000 0 417.7 14480 0 0 713 15193 -4300 10893 4300 0 3958 4807 3.379 3.659 2.332 + 12 4 10 1 42.56 67.80 68.00 67.94 97.93 91.80 0 45985 13352 14895 0.324 0.324 0.324 1.000 1.000 0 408.9 14197 0 0 698 14895 -4255 10640 4255 -0 3853 4687 3.389 3.684 2.338 + 12 4 10 2 42.71 67.82 68.00 67.95 97.99 91.75 0 46059 13325 14622 0.317 0.317 0.317 1.000 1.000 0 400.8 13938 0 0 684 14622 -4217 10405 4217 0 3757 4577 3.399 3.710 2.343 + 12 4 10 3 42.86 67.83 68.00 67.96 98.04 91.69 0 46132 13299 14341 0.311 0.311 0.311 1.000 1.000 0 392.4 13671 0 0 670 14341 -4180 10161 4180 0 3658 4464 3.409 3.737 2.348 + 12 4 10 4 43.01 68.03 68.00 67.96 98.10 91.56 0 46205 13272 13943 0.302 0.302 0.302 1.000 1.000 0 380.9 13293 0 0 650 13943 -4130 9813 4130 -0 3526 4312 3.419 3.770 2.350 + 12 4 10 5 43.16 68.12 68.00 68.00 98.18 91.51 0 46278 13245 13609 0.294 0.294 0.294 1.000 1.000 0 371.2 12976 0 0 633 13609 -4069 9540 4069 0 3413 4183 3.430 3.802 2.358 + 12 4 11 0 43.49 68.07 68.00 68.02 98.30 91.41 0 46440 13186 13117 0.282 0.282 0.284 0.995 0.999 0 356.6 12509 0 0 608 13117 -3991 9127 3991 0 3092 3837 3.452 4.046 2.467 + 12 4 11 1 43.82 68.29 68.00 68.01 98.40 91.45 0 46601 13127 12536 0.269 0.269 0.282 0.955 0.989 0 339.6 11957 0 0 579 12536 -3832 8704 3832 0 2950 3666 3.475 4.053 2.466 + 12 4 11 2 44.15 68.29 68.00 68.05 98.55 91.54 0 46762 13068 12075 0.258 0.258 0.279 0.924 0.981 0 326.0 11519 0 0 556 12075 -3685 8389 3685 0 2830 3523 3.497 4.070 2.477 + 12 4 11 3 44.48 68.36 68.00 68.05 98.66 91.58 0 46923 13010 11506 0.245 0.245 0.277 0.884 0.971 0 309.6 10978 0 0 528 11506 -3526 7980 3526 0 2692 3356 3.520 4.079 2.479 + 12 4 11 4 44.81 68.40 68.00 68.07 98.78 91.64 0 47084 12951 10994 0.233 0.233 0.275 0.849 0.962 0 294.8 10491 0 0 503 10994 -3377 7617 3377 0 2563 3203 3.543 4.093 2.484 + 12 4 11 5 45.14 68.46 68.00 68.08 98.89 91.69 0 47245 12892 10462 0.221 0.221 0.273 0.811 0.953 0 279.5 9985 0 0 477 10462 -3223 7239 3223 -0 2432 3046 3.567 4.105 2.488 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 142 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.44 68.00 68.09 98.95 91.71 0 47319 12866 9483 0.200 0.200 0.272 0.737 0.934 0 253.0 9052 0 0 432 9483 -2925 6558 2925 0 2236 2804 3.577 4.049 2.459 + 12 4 12 1 45.44 68.30 68.00 68.09 99.00 91.73 0 47392 12839 8883 0.187 0.187 0.271 0.692 0.923 0 236.6 8479 0 0 404 8883 -2746 6137 2746 -0 2107 2647 3.588 4.024 2.444 + 12 4 12 2 45.59 68.26 68.00 68.07 99.02 91.70 0 47465 12812 8215 0.173 0.173 0.270 0.641 0.910 0 218.5 7842 0 0 373 8215 -2554 5661 2554 0 1964 2473 3.599 3.993 2.423 + 12 4 12 3 45.74 68.28 68.00 68.06 99.06 91.70 0 47538 12786 7572 0.159 0.159 0.269 0.592 0.898 0 201.1 7229 0 0 343 7572 -2362 5210 2362 -0 1824 2303 3.609 3.963 2.404 + 12 4 12 4 45.89 68.17 68.00 68.06 99.11 91.72 0 47612 12759 7139 0.150 0.150 0.268 0.560 0.890 0 189.3 6816 0 0 323 7139 -2231 4908 2231 -0 1725 2184 3.620 3.952 2.397 + 12 4 12 5 46.04 68.17 68.00 68.04 99.14 91.70 0 47685 12732 6692 0.140 0.140 0.267 0.526 0.881 0 177.1 6390 0 0 302 6692 -2102 4590 2102 0 1622 2061 3.631 3.939 2.385 + 12 4 13 0 46.40 67.99 68.00 68.04 99.25 91.73 0 47861 12668 5901 0.123 0.123 0.265 0.466 0.866 0 155.6 5635 0 0 266 5901 -1864 4037 1864 0 1433 1835 3.656 3.931 2.376 + 12 4 13 1 46.76 67.91 68.00 68.01 99.34 91.71 0 48036 12604 5384 0.112 0.112 0.262 0.427 0.857 0 141.5 5142 0 0 241 5384 -1716 3667 1716 0 1302 1680 3.683 3.949 2.376 + 12 4 13 2 47.12 67.87 68.00 68.00 99.40 91.70 0 48154 12562 4882 0.101 0.101 0.261 0.389 0.847 0 128.0 4664 0 0 218 4882 -1566 3316 1566 0 1182 1537 3.700 3.946 2.368 + 12 4 13 3 47.48 67.80 68.00 67.99 99.39 91.68 0 48154 12562 4518 .0938 .0938 0.261 0.360 0.840 0 118.4 4316 0 0 202 4518 -1452 3066 1452 0 1103 1442 3.700 3.913 2.349 + 12 4 13 4 47.84 67.74 68.00 67.97 99.38 91.66 0 48154 12562 4308 .0895 .0895 0.261 0.343 0.836 0 112.9 4115 0 0 193 4308 -1387 2921 1387 0 1057 1386 3.700 3.893 2.337 + 12 4 13 5 48.20 67.68 68.00 67.96 99.36 91.64 0 48154 12562 4154 .0863 .0863 0.261 0.331 0.833 0 108.9 3968 0 0 186 4154 -1340 2814 1340 0 1023 1345 3.700 3.879 2.328 + 12 4 14 0 48.47 67.67 68.00 67.95 99.35 91.62 0 48154 12562 4187 .0869 .0869 0.261 0.333 0.833 0 109.8 4000 0 0 187 4187 -1353 2834 1353 0 1030 1354 3.700 3.882 2.328 + 12 4 14 1 48.74 67.59 68.00 67.94 99.35 91.61 0 48154 12562 4224 .0877 .0877 0.261 0.336 0.834 0 110.7 4035 0 0 189 4224 -1366 2859 1366 0 1039 1364 3.700 3.885 2.329 + 12 4 14 2 49.01 67.62 68.00 67.93 99.34 91.59 0 48154 12562 4171 .0866 .0866 0.261 0.332 0.833 0 109.3 3985 0 0 187 4171 -1351 2820 1351 0 1027 1350 3.700 3.880 2.324 + 12 4 14 3 49.28 67.68 68.00 67.94 99.34 91.60 0 48154 12562 4031 .0837 .0837 0.261 0.321 0.830 0 105.7 3851 0 0 180 4031 -1305 2726 1305 0 996 1312 3.700 3.867 2.318 + 12 4 14 4 49.55 67.60 68.00 67.94 99.35 91.61 0 48154 12562 3845 .0799 .0799 0.261 0.306 0.827 0 100.8 3673 0 0 172 3845 -1243 2602 1243 0 954 1263 3.700 3.850 2.311 + 12 4 14 5 49.82 67.62 68.00 67.93 99.34 91.59 0 48154 12562 3619 .0751 .0751 0.261 0.288 0.822 0 94.9 3457 0 0 162 3619 -1172 2446 1172 0 903 1201 3.700 3.829 2.298 + 12 4 15 0 49.67 67.62 68.00 67.93 99.34 91.59 0 48154 12562 2476 .0514 .0514 0.261 0.197 0.799 0 64.9 2366 0 0 111 2476 -802 1674 802 -0 635 883 3.700 3.723 2.244 + 12 4 15 1 49.52 67.60 68.00 67.93 99.34 91.59 0 48154 12562 2188 .0454 .0454 0.261 0.174 0.794 0 57.4 2091 0 0 98 2188 -709 1479 709 0 566 800 3.700 3.697 2.230 + 12 4 15 2 49.37 67.59 68.00 67.92 99.33 91.57 0 48154 12562 1959 .0407 .0407 0.261 0.156 0.789 0 51.4 1871 0 0 88 1959 -636 1323 636 0 509 733 3.700 3.675 2.217 + 12 4 15 3 49.22 67.52 68.00 67.92 99.32 91.56 0 48154 12562 2116 .0439 .0439 0.261 0.168 0.792 0 55.5 2021 0 0 95 2116 -687 1428 687 0 548 779 3.700 3.690 2.224 + 12 4 15 4 49.07 67.51 68.00 67.91 99.31 91.53 0 48154 12562 2621 .0544 .0544 0.261 0.209 0.802 0 68.7 2504 0 0 117 2621 -853 1768 853 0 670 924 3.700 3.737 2.245 + 12 4 15 5 48.92 67.73 68.00 67.90 99.31 91.53 0 48154 12562 3122 .0648 .0648 0.261 0.249 0.812 0 81.8 2982 0 0 140 3122 -1017 2105 1017 0 788 1064 3.700 3.783 2.269 + 12 4 16 0 48.59 67.73 68.00 67.94 99.34 91.59 0 48154 12562 4404 .0915 .0915 0.261 0.351 0.838 0 115.4 4207 0 0 197 4404 -1427 2977 1427 -0 1078 1412 3.700 3.902 2.335 + 12 4 16 1 48.26 68.20 68.00 67.94 99.35 91.60 0 48154 12562 5031 0.104 0.104 0.261 0.401 0.850 0 131.9 4806 0 0 225 5031 -1629 3402 1629 0 1214 1575 3.700 3.960 2.365 + 12 4 16 2 47.93 68.19 68.00 68.02 99.43 91.73 0 48154 12562 5640 0.117 0.117 0.261 0.449 0.862 0 147.9 5388 0 0 252 5640 -1804 3836 1804 0 1341 1730 3.700 4.017 2.407 + 12 4 16 3 47.60 68.41 68.00 68.03 99.43 91.75 0 48154 12562 6119 0.127 0.127 0.261 0.487 0.872 0 160.4 5845 0 0 274 6119 -1954 4165 1954 0 1439 1849 3.700 4.061 2.431 + 12 4 16 4 47.27 68.45 68.00 68.07 99.48 91.82 0 48154 12562 6568 0.136 0.136 0.261 0.523 0.881 0 172.2 6274 0 0 294 6568 -2084 4483 2084 0 1529 1959 3.700 4.103 2.459 + 12 4 16 5 46.94 68.42 68.00 68.08 99.47 91.84 0 48124 12572 6973 0.145 0.145 0.261 0.555 0.889 0 182.9 6661 0 0 312 6973 -2205 4768 2205 -0 1613 2062 3.696 4.129 2.476 + 12 4 17 0 46.79 68.56 68.00 68.08 99.42 91.83 0 48051 12599 7293 0.152 0.152 0.262 0.579 0.895 0 191.6 6966 0 0 327 7293 -2303 4991 2303 0 1687 2150 3.685 4.129 2.478 + 12 4 17 1 46.64 68.65 68.00 68.11 99.40 91.86 0 47978 12626 7535 0.157 0.157 0.263 0.597 0.899 0 198.2 7196 0 0 338 7535 -2363 5172 2363 0 1746 2220 3.674 4.123 2.482 + 12 4 17 2 46.49 68.79 68.00 68.13 99.37 91.88 0 47905 12652 7729 0.161 0.161 0.264 0.611 0.903 0 203.7 7382 0 0 347 7729 -2411 5318 2411 -0 1795 2279 3.663 4.112 2.482 + 12 4 17 3 46.34 68.85 68.00 68.16 99.35 91.92 0 47831 12679 7963 0.166 0.166 0.265 0.628 0.907 0 210.2 7605 0 0 359 7963 -2467 5496 2467 -0 1853 2348 3.652 4.105 2.485 + 12 4 17 4 46.19 68.99 68.00 68.17 99.32 91.93 0 47758 12706 8137 0.170 0.170 0.266 0.640 0.910 0 215.1 7770 0 0 367 8137 -2510 5628 2510 0 1899 2402 3.641 4.093 2.484 + 12 4 17 5 46.04 69.06 68.00 68.20 99.30 91.97 0 47685 12732 8364 0.175 0.175 0.267 0.657 0.914 0 221.4 7986 0 0 378 8364 -2563 5801 2563 0 1955 2469 3.631 4.085 2.487 + 12 4 18 0 45.47 69.19 68.00 68.21 99.13 91.94 0 47407 12834 8125 0.171 0.171 0.271 0.633 0.908 0 216.4 7756 0 0 369 8125 -2463 5662 2463 0 1956 2462 3.590 3.965 2.435 + 12 4 18 1 44.90 69.22 68.00 68.23 98.97 91.93 0 47128 12935 8385 0.178 0.178 0.274 0.648 0.912 0 224.6 8002 0 0 383 8385 -2510 5875 2510 0 2056 2575 3.550 3.893 2.409 + 12 4 18 2 44.33 69.33 68.00 68.24 98.79 91.88 0 46850 13036 8657 0.185 0.185 0.278 0.664 0.916 0 233.3 8259 0 0 398 8657 -2566 6091 2566 -0 2159 2693 3.510 3.826 2.382 + 12 4 18 3 43.76 69.46 68.00 68.26 98.63 91.86 0 46571 13138 8922 0.192 0.192 0.282 0.679 0.920 0 241.8 8510 0 0 413 8922 -2613 6309 2613 0 2262 2811 3.471 3.762 2.359 + 12 4 18 4 43.19 69.58 68.00 68.28 98.47 91.84 0 46293 13240 9182 0.198 0.198 0.286 0.693 0.923 0 250.4 8755 0 0 427 9182 -2655 6526 2655 0 2365 2929 3.432 3.702 2.337 + 12 4 18 5 42.62 69.72 68.00 68.30 98.31 91.82 0 46015 13341 9468 0.206 0.206 0.290 0.710 0.927 0 259.7 9024 0 0 443 9468 -2704 6764 2704 0 2475 3055 3.393 3.646 2.318 + 12 4 19 0 42.20 69.77 68.00 68.33 98.20 91.82 0 45810 13417 9416 0.206 0.206 0.293 0.702 0.925 0 259.5 8974 0 0 443 9416 -2660 6757 2660 0 2501 3080 3.365 3.589 2.296 + 12 4 19 1 41.78 69.76 68.00 68.34 98.08 91.79 0 45605 13492 9605 0.211 0.211 0.296 0.712 0.928 0 265.9 9152 0 0 454 9605 -2689 6916 2689 0 2578 3168 3.337 3.550 2.281 + 12 4 19 2 41.36 69.76 68.00 68.34 97.95 91.75 0 45399 13567 9799 0.216 0.216 0.299 0.722 0.931 0 272.5 9334 0 0 465 9799 -2725 7074 2725 -0 2657 3258 3.309 3.513 2.266 + 12 4 19 3 40.94 69.77 68.00 68.34 97.81 91.71 0 45194 13642 9987 0.221 0.221 0.302 0.732 0.933 0 279.0 9512 0 0 476 9987 -2758 7229 2758 0 2735 3348 3.281 3.477 2.251 + 12 4 19 4 40.52 69.74 68.00 68.34 97.68 91.66 0 44989 13717 10188 0.226 0.226 0.305 0.743 0.936 0 285.9 9701 0 0 488 10188 -2793 7395 2793 -0 2817 3441 3.254 3.444 2.238 + 12 4 19 5 40.10 69.73 68.00 68.34 97.54 91.61 0 44784 13793 10376 0.232 0.232 0.308 0.752 0.938 0 292.5 9877 0 0 499 10376 -2828 7548 2828 -0 2896 3532 3.227 3.410 2.223 + 12 4 20 0 40.37 69.69 68.00 68.34 97.63 91.65 0 44916 13744 10577 0.235 0.235 0.306 0.770 0.942 0 297.3 10070 0 0 507 10577 -2892 7685 2892 -0 2916 3560 3.244 3.453 2.245 + 12 4 20 1 40.64 69.74 68.00 68.34 97.72 91.68 0 45048 13696 10585 0.235 0.235 0.304 0.773 0.943 0 296.6 10079 0 0 506 10585 -2907 7678 2907 0 2893 3536 3.262 3.484 2.259 + 12 4 20 2 40.91 69.78 68.00 68.35 97.81 91.73 0 45180 13648 10564 0.234 0.234 0.302 0.774 0.944 0 295.2 10060 0 0 504 10564 -2908 7656 2908 -0 2864 3504 3.279 3.513 2.274 + 12 4 20 3 41.18 69.64 68.00 68.35 97.91 91.77 0 45312 13599 10583 0.234 0.234 0.300 0.778 0.945 0 294.8 10080 0 0 503 10583 -2920 7663 2920 0 2843 3482 3.297 3.546 2.290 + 12 4 20 4 41.45 69.79 68.00 68.34 97.97 91.78 0 45443 13551 10508 0.231 0.231 0.298 0.775 0.944 0 291.9 10010 0 0 498 10508 -2921 7587 2921 0 2801 3436 3.315 3.573 2.300 + 12 4 20 5 41.72 69.73 68.00 68.36 98.08 91.85 0 45575 13502 10487 0.230 0.230 0.296 0.777 0.944 0 290.5 9991 0 0 496 10487 -2915 7572 2915 0 2772 3404 3.333 3.605 2.318 + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 143 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.85 68.00 68.35 97.94 91.78 0 45370 13578 10874 0.240 0.240 0.299 0.801 0.950 0 302.6 10358 0 0 516 10874 -3009 7866 3009 0 2893 3545 3.305 3.581 2.307 + 12 4 21 1 40.88 69.91 68.00 68.37 97.82 91.76 0 45165 13653 11020 0.244 0.244 0.302 0.807 0.952 0 308.0 10495 0 0 525 11020 -3020 8000 3020 0 2964 3626 3.277 3.541 2.293 + 12 4 21 2 40.46 69.89 68.00 68.38 97.70 91.73 0 44960 13728 11164 0.248 0.248 0.305 0.813 0.953 0 313.5 10629 0 0 535 11164 -3033 8131 3033 0 3035 3706 3.250 3.502 2.278 + 12 4 21 3 40.04 69.89 68.00 68.37 97.56 91.67 0 44755 13804 11329 0.253 0.253 0.308 0.821 0.955 0 319.5 10783 0 0 545 11329 -3059 8269 3059 0 3111 3792 3.223 3.466 2.262 + 12 4 21 4 39.62 69.88 68.00 68.37 97.43 91.62 0 44550 13879 11500 0.258 0.258 0.312 0.829 0.957 0 325.9 10944 0 0 556 11500 -3085 8414 3085 0 3189 3881 3.196 3.432 2.247 + 12 4 21 5 39.20 69.88 68.00 68.37 97.29 91.57 0 44345 13955 11666 0.263 0.263 0.315 0.836 0.959 0 332.1 11100 0 0 567 11666 -3111 8556 3111 0 3266 3969 3.169 3.399 2.233 + 12 4 22 0 39.29 69.89 68.00 68.37 97.32 91.58 0 44389 13938 12356 0.278 0.278 0.314 0.886 0.972 0 351.4 11756 0 0 599 12356 -3296 9059 3296 0 3405 4141 3.175 3.452 2.262 + 12 4 22 1 39.38 69.98 68.00 68.38 97.35 91.60 0 44433 13922 12459 0.280 0.280 0.313 0.895 0.974 0 354.0 11855 0 0 604 12459 -3326 9133 3326 -0 3418 4158 3.180 3.468 2.271 + 12 4 22 2 39.47 70.03 68.00 68.39 97.40 91.64 0 44477 13906 12528 0.282 0.282 0.313 0.901 0.975 0 355.6 11921 0 0 607 12528 -3338 9190 3338 -0 3423 4166 3.186 3.482 2.280 + 12 4 22 3 39.56 70.04 68.00 68.40 97.44 91.67 0 44520 13890 12592 0.283 0.283 0.312 0.907 0.977 0 357.0 11983 0 0 609 12592 -3353 9239 3353 0 3427 4173 3.192 3.496 2.289 + 12 4 22 4 39.65 69.99 68.00 68.41 97.47 91.69 0 44564 13874 12650 0.284 0.284 0.311 0.912 0.978 0 358.3 12038 0 0 611 12650 -3370 9279 3370 0 3430 4178 3.198 3.510 2.296 + 12 4 22 5 39.74 70.16 68.00 68.40 97.49 91.69 0 44608 13858 12602 0.283 0.283 0.311 0.909 0.977 0 356.6 11994 0 0 608 12602 -3365 9237 3365 0 3411 4155 3.204 3.517 2.298 + 12 4 23 0 39.59 70.25 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.70 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.26 67.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.12 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.85 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.70 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 004: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 004: + + + ALTER RSYS "rsys1" + rsDefrostModel = "RevCycle" + rsCtrlAuxH = CYCLE + FIXRPTITLES("RSYS -- Aux Cycle / Def RevCycle") + + RUN + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 004 Sat 01-Jan-22 2:52:44 pm Page 144 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 005: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 55 subhours of run. + Total condensation heat = 0.0547889 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.765 0 0.275 0.151 0 0 0 0 0.0565 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.334 0 1.140 0.605 0 0 0 0 0.227 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.281 0 1.157 0.523 0 0 0 0 0.235 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.569 0 0.730 0.537 0 0 0 0 0.155 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.327 0 0.0841 0.0310 0 0 0 0 0.0172 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.312 0 0.0828 0.0779 0 0 0 0 0.0184 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Alt / Def RevCycle + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 70.387 3.011 1.038 0 0.151 0.0565 1.245 0 0 0 0 0 0 0 0 0 0 0.275 0 0.151 0.0565 0.0359 0.518 0 0 0 0 0 0 0 0.876 -.0074 0 0 0 0 + Dec 272.69 12.099 4.092 0 0.605 0.227 4.924 0 0 0 0 0 0 0 0 0 0 1.140 0 0.605 0.227 0.0605 2.033 0 0 0 0 0 0 0 3.610 -.0275 0 0 0 0 + Jan 299.62 10.458 4.422 0 0.523 0.235 5.180 0 0 0 0 0 0 0 0 0 0 1.157 0 0.523 0.235 0.0760 1.991 0 0 0 0 0 0 0 3.814 -.0313 0 0 0 0 + Feb 177.32 10.744 2.732 0 0.537 0.155 3.425 0 0 0 0 0 0 0 0 0 0 0.730 0 0.537 0.155 0.0498 1.473 0 0 0 0 0 0 0 2.490 -.0182 0 0 0 0 + Mar 24.464 0.621 0.338 0 0.0310 0.0172 0.386 0 0 0 0 0 0 0 0 0 0 0.0841 0 0.0310 0.0172 .00887 0.141 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 20.601 1.557 0.313 0 0.0779 0.0184 0.410 0 0 0 0 0 0 0 0 0 0 0.0828 0 0.0779 0.0184 0.0180 0.197 0 0 0 0 0 0 0 0.289 -.0015 0 0 0 0 + + Yr 865.08 38.490 12.936 0 1.925 0.710 15.570 0 0 0 0 0 0 0 0 0 0 3.469 0 1.925 0.710 0.249 6.353 0 0 0 0 0 0 0 11.345 -.0897 0 0 0 0 + + + +RSYS -- Aux Alt / Def RevCycle + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.275 0.151 0.0565 0.518 0.876 1.692 0.518 0.876 1.692 0 0 0 0 0 0 0 + Dec 1.140 0.605 0.227 2.033 3.610 1.776 2.033 3.610 1.776 0 0 0 0 0 0 -.0078 + Jan 1.157 0.523 0.235 1.991 3.814 1.916 1.991 3.814 1.916 0 0 0 0 0 0 0 + Feb 0.730 0.537 0.155 1.473 2.490 1.691 1.473 2.490 1.691 0 0 0 0 0 0 -.0039 + Mar 0.0841 0.0310 0.0172 0.141 0.265 1.877 0.141 0.265 1.877 0 0 0 0 0 0 -.0020 + Apr 0.0828 0.0779 0.0184 0.197 0.289 1.466 0.197 0.289 1.466 0 0 0 0 0 0 -.0020 + + Yr 3.469 1.925 0.710 6.353 11.345 1.786 6.353 11.345 1.786 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 145 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Alt / Def RevCycle for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.769 0 0.334 2.240 4.698 2.098 2.240 4.698 2.098 0 0 0 0 0 0 -0.000 + 8 6.156 8.333 1.466 16.092 25.377 1.577 16.092 25.377 1.577 0 0 0 0 0 0 -0.000 + 9 4.707 0 0.891 5.734 14.014 2.444 5.734 14.014 2.444 0 0 0 0 0 0 -0.000 + 10 3.933 0 0.764 4.834 11.599 2.400 4.834 11.599 2.400 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.148 9.799 2.362 4.148 9.799 2.362 0 0 0 0 0 0 -0.000 + 12 2.899 0 0.595 3.630 8.452 2.329 3.630 8.452 2.329 0 0 0 0 0 0 -0.000 + 13 2.362 0 0.502 3.000 7.080 2.360 3.000 7.080 2.360 0 0 0 0 0 0 -0.000 + 14 1.978 0 0.401 2.379 5.689 2.391 2.379 5.689 2.391 0 0 0 0 0 0 0 + 15 1.975 0 0.400 2.375 5.698 2.399 2.375 5.698 2.399 0 0 0 0 0 0 0 + 16 1.963 0 0.397 2.359 5.690 2.412 2.359 5.690 2.412 0 0 0 0 0 0 0 + 17 1.978 0 0.401 2.379 5.774 2.427 2.379 5.774 2.427 0 0 0 0 0 0 0 + 18 1.953 0 0.394 2.347 5.704 2.431 2.347 5.704 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.383 5.444 2.285 2.383 5.444 2.285 0 0 0 0 0 0 -0.000 + 20 1.834 0 0.365 2.336 5.360 2.294 2.336 5.360 2.294 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.502 2.315 2.376 5.502 2.315 0 0 0 0 0 0 -0.000 + 22 2.073 0 0.418 2.628 6.183 2.353 2.628 6.183 2.353 0 0 0 0 0 0 -0.000 + 23 2.386 0 0.482 3.004 7.158 2.383 3.004 7.158 2.383 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def RevCycle for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.769 0 0.845 5.750 12.596 2.190 5.750 12.596 2.190 0 0 0 0 0 0 -0.000 + 8 5.811 16.667 1.698 24.312 30.346 1.248 24.312 30.346 1.248 0 0 0 0 0 0 -0.000 + 9 6.139 0 1.065 7.340 17.263 2.352 7.340 17.263 2.352 0 0 0 0 0 0 -0.000 + 10 4.512 0 0.820 5.469 12.969 2.372 5.469 12.969 2.372 0 0 0 0 0 0 -0.000 + 11 3.729 0 0.704 4.570 10.931 2.392 4.570 10.931 2.392 0 0 0 0 0 0 -0.000 + 12 3.208 0 0.628 3.973 9.642 2.427 3.973 9.642 2.427 0 0 0 0 0 0 -0.000 + 13 2.280 0 0.476 2.892 7.195 2.488 2.892 7.195 2.488 0 0 0 0 0 0 -0.000 + 14 2.007 0 0.408 2.551 6.174 2.421 2.551 6.174 2.421 0 0 0 0 0 0 -0.000 + 15 1.935 0 0.390 2.461 5.937 2.412 2.461 5.937 2.412 0 0 0 0 0 0 -0.000 + 16 1.338 0 0.252 1.727 3.851 2.230 1.727 3.851 2.230 0 0 0 0 0 0 -0.000 + 17 1.799 0 0.357 2.292 5.464 2.384 2.292 5.464 2.384 0 0 0 0 0 0 -0.000 + 18 1.978 0 0.399 2.514 6.172 2.455 2.514 6.172 2.455 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 146 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.136 0 0.412 2.684 6.353 2.367 2.684 6.353 2.367 0 0 0 0 0 0 -0.000 + 20 2.584 0 0.467 3.188 7.135 2.238 3.188 7.135 2.238 0 0 0 0 0 0 -0.000 + 21 2.955 0 0.525 3.616 8.007 2.214 3.616 8.007 2.214 0 0 0 0 0 0 -0.000 + 22 3.291 0 0.580 4.007 8.866 2.213 4.007 8.866 2.213 0 0 0 0 0 0 -0.000 + 23 3.821 0 0.668 4.625 10.159 2.196 4.625 10.159 2.196 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def RevCycle for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.668 0 0.0878 0.892 1.285 1.441 0.892 1.285 1.441 0 0 0 0 0 0 -0.000 + 6 1.965 0 0.267 2.368 3.917 1.654 2.368 3.917 1.654 0 0 0 0 0 0 -0.000 + 7 7.819 10.399 1.600 19.953 27.258 1.366 19.953 27.258 1.366 0 0 0 0 0 0 -0.000 + 8 4.629 32.217 2.072 39.055 39.173 1.003 39.055 39.173 1.003 0 0 0 0 0 0 -0.000 + 9 7.945 0 1.249 9.331 19.747 2.116 9.331 19.747 2.116 0 0 0 0 0 0 -0.000 + 10 3.868 0 0.666 4.670 10.062 2.155 4.670 10.062 2.155 0 0 0 0 0 0 -0.000 + 11 1.971 0 0.348 2.456 5.277 2.149 2.456 5.277 2.149 0 0 0 0 0 0 -0.000 + 12 1.387 0 0.249 1.773 3.787 2.136 1.773 3.787 2.136 0 0 0 0 0 0 -0.000 + 13 0.895 0 0.160 1.191 2.418 2.030 1.191 2.418 2.030 0 0 0 0 0 0 -0.000 + 14 0.423 0 0.0722 0.632 1.085 1.718 0.632 1.085 1.718 0 0 0 0 0 0 -0.000 + 15 0.0323 0 .00532 0.174 0.0794 0.456 0.174 0.0794 0.456 0 0 0 0 0 0 -0.000 + 16 0.0194 0 .00322 0.159 0.0474 0.298 0.159 0.0474 0.298 0 0 0 0 0 0 -0.000 + 17 0.609 0 0.106 0.851 1.561 1.834 0.851 1.561 1.834 0 0 0 0 0 0 -0.000 + 18 1.734 0 0.317 2.187 4.693 2.146 2.187 4.693 2.146 0 0 0 0 0 0 -0.000 + 19 2.461 0 0.427 3.025 6.314 2.088 3.025 6.314 2.088 0 0 0 0 0 0 -0.000 + 20 3.096 0 0.523 3.755 7.709 2.053 3.755 7.709 2.053 0 0 0 0 0 0 -0.000 + 21 3.434 0 0.582 4.153 8.608 2.073 4.153 8.608 2.073 0 0 0 0 0 0 -0.000 + 22 3.897 0 0.660 4.694 9.727 2.072 4.694 9.727 2.072 0 0 0 0 0 0 -0.000 + 23 4.412 0 0.745 5.294 11.014 2.081 5.294 11.014 2.081 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 40140 42500 31130 3.70 2.91 2.60 2.32 4.45 3.03 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 147 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 252 111 364 1245 876 6 0 0 0 0 0 0 0 + Dec 67.53 886 412 1298 4924 3610 16 0 0 0 0 0 0 0 + Jan 67.52 933 417 1351 5180 3814 15 0 0 0 0 0 0 0 + Feb 67.64 622 298 920 3425 2490 14 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 386 265 2 0 0 0 0 0 0 0 + Apr 69.33 80 38 118 410 289 3 0 0 0 0 0 0 0 + + Yr 68.43 2861 1309 4170 15570 11345 55 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 148 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.45 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 77 36 113 421 308 -0 0 0 0 0 0 0 0 + 1 65.00 90 43 133 497 364 0 0 0 0 0 0 0 0 + 2 65.00 101 48 149 561 412 0 0 0 0 0 0 0 0 + 3 65.00 116 55 171 646 475 0 0 0 0 0 0 0 0 + 4 65.00 128 61 189 714 524 -0 0 0 0 0 0 0 0 + 5 65.00 142 67 209 788 579 0 0 0 0 0 0 0 0 + 6 65.00 154 74 228 860 632 -0 0 0 0 0 0 0 0 + 1 65.96 636 832 1469 8692 7004 220 0 0 0 0 0 0 0 + 2 66.50 557 715 1272 7214 5817 125 0 0 0 0 0 0 0 + 3 66.50 496 335 831 3945 3114 -0 0 0 0 0 0 0 0 + 4 66.50 492 340 832 3961 3129 0 0 0 0 0 0 0 0 + 5 66.50 506 362 868 4044 3176 0 0 0 0 0 0 0 0 + 6 66.50 500 333 833 3779 2946 -0 0 0 0 0 0 0 0 + 1 67.10 624 812 1436 8692 7118 138 0 0 0 0 0 0 0 + 2 67.55 636 822 1458 8692 7131 103 0 0 0 0 0 0 0 + 3 67.89 622 800 1422 8692 7191 79 0 0 0 0 0 0 0 + 4 68.00 509 647 1156 7078 5897 25 0 0 0 0 0 0 0 + 5 68.00 502 550 1053 6090 5037 0 0 0 0 0 0 0 0 + 6 68.00 502 501 1003 5534 4531 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 149 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 502 443 946 4927 3982 0 0 0 0 0 0 0 0 + 2 68.00 491 383 874 4366 3492 -0 0 0 0 0 0 0 0 + 3 68.00 488 331 819 3832 3014 0 0 0 0 0 0 0 0 + 4 68.00 490 287 777 3402 2626 0 0 0 0 0 0 0 0 + 5 68.00 492 250 742 3030 2288 0 0 0 0 0 0 0 0 + 6 68.00 493 216 708 2689 1981 0 0 0 0 0 0 0 0 + 1 68.00 491 195 686 2484 1799 0 0 0 0 0 0 0 0 + 2 68.00 487 172 659 2251 1592 -0 0 0 0 0 0 0 0 + 3 68.00 437 152 589 1994 1405 0 0 0 0 0 0 0 0 + 4 68.00 398 136 535 1791 1257 0 0 0 0 0 0 0 0 + 5 68.00 361 121 482 1593 1111 0 0 0 0 0 0 0 0 + 6 68.00 325 107 432 1409 977 0 0 0 0 0 0 0 0 + 1 68.00 317 103 421 1350 929 -0 0 0 0 0 0 0 0 + 2 68.00 288 93 381 1205 824 -0 0 0 0 0 0 0 0 + 3 68.00 260 82 342 1072 729 0 0 0 0 0 0 0 0 + 4 68.00 233 73 306 945 638 -0 0 0 0 0 0 0 0 + 5 68.00 209 64 273 833 559 -0 0 0 0 0 0 0 0 + 6 68.00 182 56 238 718 481 0 0 0 0 0 0 0 0 + 1 68.00 199 61 260 783 522 0 0 0 0 0 0 0 0 + 2 68.00 178 55 232 696 464 0 0 0 0 0 0 0 0 + 3 68.00 155 47 202 606 404 0 0 0 0 0 0 0 0 + 4 68.00 134 41 175 523 348 -0 0 0 0 0 0 0 0 + 5 68.00 114 35 149 444 295 0 0 0 0 0 0 0 0 + 6 68.00 94 29 123 365 242 0 0 0 0 0 0 0 0 + 1 68.00 58 18 75 223 148 0 0 0 0 0 0 0 0 + 2 68.00 35 11 46 135 89 0 0 0 0 0 0 0 0 + 3 68.00 13 4 17 49 33 -0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 150 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 4 1 5 13 9 -0 0 0 0 0 0 0 0 + 1 68.00 72 21 93 256 163 0 0 0 0 0 0 0 0 + 2 68.00 88 26 115 314 199 0 0 0 0 0 0 0 0 + 3 68.00 96 29 124 341 217 0 0 0 0 0 0 0 0 + 4 68.00 110 33 143 392 249 0 0 0 0 0 0 0 0 + 5 68.00 121 36 157 430 272 -0 0 0 0 0 0 0 0 + 6 68.00 135 40 175 477 303 0 0 0 0 0 0 0 0 + 1 68.00 134 40 173 473 300 0 0 0 0 0 0 0 0 + 2 68.00 150 45 195 532 337 0 0 0 0 0 0 0 0 + 3 68.00 163 48 211 573 362 0 0 0 0 0 0 0 0 + 4 68.00 179 53 232 630 398 -0 0 0 0 0 0 0 0 + 5 68.00 191 57 247 671 423 0 0 0 0 0 0 0 0 + 6 68.00 207 61 269 729 460 0 0 0 0 0 0 0 0 + 1 68.00 232 69 301 815 514 -0 0 0 0 0 0 0 0 + 2 68.00 249 74 323 875 552 0 0 0 0 0 0 0 0 + 3 68.00 265 78 344 932 589 -0 0 0 0 0 0 0 0 + 4 68.00 277 82 359 975 616 -0 0 0 0 0 0 0 0 + 5 68.00 291 86 377 1026 650 -0 0 0 0 0 0 0 0 + 6 68.00 301 90 391 1075 684 -0 0 0 0 0 0 0 0 + 1 68.00 327 99 426 1181 756 0 0 0 0 0 0 0 0 + 2 68.00 337 103 440 1233 792 -0 0 0 0 0 0 0 0 + 3 68.00 346 108 453 1281 828 -0 0 0 0 0 0 0 0 + 4 68.00 355 112 467 1332 865 0 0 0 0 0 0 0 0 + 5 68.00 364 116 480 1382 902 0 0 0 0 0 0 0 0 + 6 68.00 372 121 492 1430 937 0 0 0 0 0 0 0 0 + 1 68.00 409 134 543 1590 1047 0 0 0 0 0 0 0 0 + 2 68.00 417 138 555 1640 1085 0 0 0 0 0 0 0 0 + 3 68.00 422 142 564 1685 1121 0 0 0 0 0 0 0 0 + 4 68.00 429 146 575 1733 1158 0 0 0 0 0 0 0 0 + 5 68.00 435 150 585 1779 1194 0 0 0 0 0 0 0 0 + 6 68.00 439 153 593 1819 1226 0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 151 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 47 22 69 230 161 -0 0 0 0 0 0 0 0 + 4 65.00 122 57 179 596 417 0 0 0 0 0 0 0 0 + 5 65.00 140 66 206 689 483 0 0 0 0 0 0 0 0 + 6 65.00 156 73 229 774 545 0 0 0 0 0 0 0 0 + 1 65.95 714 904 1619 8692 6855 219 0 0 0 0 0 0 0 + 2 66.50 637 789 1426 7248 5696 126 0 0 0 0 0 0 0 + 3 66.50 562 354 915 3858 2942 -0 0 0 0 0 0 0 0 + 4 66.50 557 367 925 3945 3021 0 0 0 0 0 0 0 0 + 5 66.50 573 396 968 4053 3085 0 0 0 0 0 0 0 0 + 6 66.50 565 366 931 3807 2876 -0 0 0 0 0 0 0 0 + 1 67.11 689 872 1562 8692 6990 141 0 0 0 0 0 0 0 + 2 67.57 699 879 1578 8692 7008 106 0 0 0 0 0 0 0 + 3 67.93 681 852 1533 8692 7077 82 0 0 0 0 0 0 0 + 4 68.00 568 649 1217 6611 5379 14 0 0 0 0 0 0 0 + 5 68.00 559 567 1126 5848 4722 0 0 0 0 0 0 0 0 + 6 68.00 557 510 1068 5275 4207 -0 0 0 0 0 0 0 0 + 1 68.00 555 449 1004 4695 3691 0 0 0 0 0 0 0 0 + 2 68.00 544 387 932 4138 3207 0 0 0 0 0 0 0 0 + 3 68.00 536 336 871 3650 2779 0 0 0 0 0 0 0 0 + 4 68.00 529 291 820 3233 2413 -0 0 0 0 0 0 0 0 + 5 68.00 530 253 783 2886 2103 0 0 0 0 0 0 0 0 + 6 68.00 529 221 749 2586 1837 0 0 0 0 0 0 0 0 + 1 68.00 525 202 727 2414 1687 0 0 0 0 0 0 0 0 + 2 68.00 490 179 669 2170 1501 -0 0 0 0 0 0 0 0 + 3 68.00 440 159 600 1935 1335 0 0 0 0 0 0 0 0 + 4 68.00 396 142 538 1717 1179 0 0 0 0 0 0 0 0 + 5 68.00 359 126 485 1534 1049 0 0 0 0 0 0 0 0 + 6 68.00 323 112 435 1360 925 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 152 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 351 120 471 1448 978 -0 0 0 0 0 0 0 0 + 2 68.00 325 108 433 1314 881 0 0 0 0 0 0 0 0 + 3 68.00 295 96 392 1181 789 0 0 0 0 0 0 0 0 + 4 68.00 267 85 353 1050 698 0 0 0 0 0 0 0 0 + 5 68.00 242 76 317 934 617 0 0 0 0 0 0 0 0 + 6 68.00 214 66 280 813 533 0 0 0 0 0 0 0 0 + 1 68.00 212 64 276 797 521 0 0 0 0 0 0 0 0 + 2 68.00 193 58 251 719 469 0 0 0 0 0 0 0 0 + 3 68.00 176 53 229 660 430 -0 0 0 0 0 0 0 0 + 4 68.00 154 46 200 574 374 0 0 0 0 0 0 0 0 + 5 68.00 140 42 182 523 342 -0 0 0 0 0 0 0 0 + 6 68.00 121 36 157 451 294 -0 0 0 0 0 0 0 0 + 1 68.00 87 26 113 327 213 0 0 0 0 0 0 0 0 + 2 68.00 66 20 85 244 159 0 0 0 0 0 0 0 0 + 3 68.00 51 15 66 191 124 0 0 0 0 0 0 0 0 + 4 68.00 31 9 41 116 75 0 0 0 0 0 0 0 0 + 5 68.00 16 5 20 57 37 0 0 0 0 0 0 0 0 + 6 68.00 0 0 1 2 1 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 60 18 78 224 146 -0 0 0 0 0 0 0 0 + 5 68.00 137 41 178 508 330 0 0 0 0 0 0 0 0 + 6 68.00 152 46 198 570 372 0 0 0 0 0 0 0 0 + 1 68.00 151 45 196 567 371 0 0 0 0 0 0 0 0 + 2 68.00 176 53 229 665 436 0 0 0 0 0 0 0 0 + 3 68.00 197 61 257 759 501 0 0 0 0 0 0 0 0 + 4 68.00 215 68 283 849 566 0 0 0 0 0 0 0 0 + 5 68.00 233 76 309 944 636 0 0 0 0 0 0 0 0 + 6 68.00 249 84 333 1039 706 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 153 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 249 84 333 1049 716 0 0 0 0 0 0 0 0 + 2 68.00 258 88 346 1095 750 0 0 0 0 0 0 0 0 + 3 68.00 266 91 357 1135 777 0 0 0 0 0 0 0 0 + 4 68.00 275 94 369 1177 809 0 0 0 0 0 0 0 0 + 5 68.00 281 97 378 1209 832 -0 0 0 0 0 0 0 0 + 6 68.00 289 100 390 1253 863 0 0 0 0 0 0 0 0 + 1 68.00 300 105 405 1307 901 0 0 0 0 0 0 0 0 + 2 68.00 310 109 419 1359 940 -0 0 0 0 0 0 0 0 + 3 68.00 318 113 431 1403 972 0 0 0 0 0 0 0 0 + 4 68.00 322 116 438 1431 993 0 0 0 0 0 0 0 0 + 5 68.00 330 120 450 1480 1030 -0 0 0 0 0 0 0 0 + 6 68.00 334 123 457 1505 1048 -0 0 0 0 0 0 0 0 + 1 68.00 353 128 481 1579 1098 0 0 0 0 0 0 0 0 + 2 68.00 359 130 488 1595 1106 0 0 0 0 0 0 0 0 + 3 68.00 364 130 494 1607 1112 0 0 0 0 0 0 0 0 + 4 68.00 369 131 500 1615 1115 0 0 0 0 0 0 0 0 + 5 68.00 373 132 505 1622 1117 0 0 0 0 0 0 0 0 + 6 68.00 377 132 509 1622 1113 -0 0 0 0 0 0 0 0 + 1 68.00 407 142 550 1753 1203 -0 0 0 0 0 0 0 0 + 2 68.00 413 145 558 1779 1221 0 0 0 0 0 0 0 0 + 3 68.00 417 146 564 1802 1238 0 0 0 0 0 0 0 0 + 4 68.00 418 146 564 1807 1243 0 0 0 0 0 0 0 0 + 5 68.00 420 147 567 1825 1258 -0 0 0 0 0 0 0 0 + 6 68.00 422 148 569 1841 1271 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 154 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 13 6 18 64 45 -0 0 0 0 0 0 0 0 + 2 65.00 101 46 147 509 362 0 0 0 0 0 0 0 0 + 3 65.00 115 53 167 578 411 0 0 0 0 0 0 0 0 + 4 65.00 127 58 185 644 459 -0 0 0 0 0 0 0 0 + 5 65.00 140 65 205 713 509 0 0 0 0 0 0 0 0 + 6 65.00 154 71 226 785 559 0 0 0 0 0 0 0 0 + 1 65.96 682 874 1556 8692 6917 220 0 0 0 0 0 0 0 + 2 66.50 601 755 1355 7194 5713 125 0 0 0 0 0 0 0 + 3 66.50 532 343 875 3873 2998 0 0 0 0 0 0 0 0 + 4 66.50 529 358 887 3970 3083 0 0 0 0 0 0 0 0 + 5 66.50 545 393 937 4151 3213 0 0 0 0 0 0 0 0 + 6 66.50 538 362 900 3891 2991 -0 0 0 0 0 0 0 0 + 1 67.09 662 846 1508 8692 7048 136 0 0 0 0 0 0 0 + 2 67.53 671 854 1525 8692 7066 102 0 0 0 0 0 0 0 + 3 67.87 654 828 1482 8692 7133 77 0 0 0 0 0 0 0 + 4 68.00 556 702 1259 7362 6074 30 0 0 0 0 0 0 0 + 5 68.00 535 590 1124 6245 5120 0 0 0 0 0 0 0 0 + 6 68.00 531 536 1067 5706 4639 -0 0 0 0 0 0 0 0 + 1 68.00 530 475 1005 5095 4090 0 0 0 0 0 0 0 0 + 2 68.00 521 417 938 4554 3616 -0 0 0 0 0 0 0 0 + 3 68.00 514 364 877 4038 3160 0 0 0 0 0 0 0 0 + 4 68.00 512 326 838 3680 2842 -0 0 0 0 0 0 0 0 + 5 68.00 514 295 810 3388 2578 -0 0 0 0 0 0 0 0 + 6 68.00 515 270 786 3154 2369 -0 0 0 0 0 0 0 0 + 1 68.00 516 263 779 3091 2312 0 0 0 0 0 0 0 0 + 2 68.00 514 248 762 2947 2185 0 0 0 0 0 0 0 0 + 3 68.00 514 235 749 2833 2084 0 0 0 0 0 0 0 0 + 4 68.00 514 225 739 2729 1990 -0 0 0 0 0 0 0 0 + 5 68.00 514 216 731 2642 1912 0 0 0 0 0 0 0 0 + 6 68.00 516 208 723 2550 1827 0 0 0 0 0 0 0 0 + 1 68.00 516 208 724 2566 1842 -0 0 0 0 0 0 0 0 + 2 68.00 513 203 716 2514 1798 0 0 0 0 0 0 0 0 + 3 68.00 512 198 709 2466 1757 0 0 0 0 0 0 0 0 + 4 68.00 510 193 703 2418 1715 0 0 0 0 0 0 0 0 + 5 68.00 509 188 696 2367 1671 0 0 0 0 0 0 0 0 + 6 68.00 506 180 686 2289 1603 0 0 0 0 0 0 0 0 + 1 68.00 501 170 671 2202 1531 -0 0 0 0 0 0 0 0 + 2 68.00 487 163 650 2131 1481 0 0 0 0 0 0 0 0 + 3 68.00 468 156 623 2032 1409 0 0 0 0 0 0 0 0 + 4 68.00 449 148 598 1949 1351 0 0 0 0 0 0 0 0 + 5 68.00 430 141 571 1853 1282 -0 0 0 0 0 0 0 0 + 6 68.00 413 134 546 1772 1226 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 155 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 376 121 497 1608 1111 0 0 0 0 0 0 0 0 + 2 68.00 352 113 465 1498 1033 0 0 0 0 0 0 0 0 + 3 68.00 327 105 431 1386 955 0 0 0 0 0 0 0 0 + 4 68.00 303 97 400 1280 880 -0 0 0 0 0 0 0 0 + 5 68.00 286 91 378 1205 827 -0 0 0 0 0 0 0 0 + 6 68.00 270 86 355 1128 773 -0 0 0 0 0 0 0 0 + 1 68.00 240 75 315 996 680 0 0 0 0 0 0 0 0 + 2 68.00 221 69 290 907 617 0 0 0 0 0 0 0 0 + 3 68.00 202 62 264 823 558 0 0 0 0 0 0 0 0 + 4 68.00 187 58 245 761 516 0 0 0 0 0 0 0 0 + 5 68.00 179 55 235 728 493 0 0 0 0 0 0 0 0 + 6 68.00 173 53 226 701 474 0 0 0 0 0 0 0 0 + 1 68.00 175 54 228 706 477 0 0 0 0 0 0 0 0 + 2 68.00 176 54 231 712 481 0 0 0 0 0 0 0 0 + 3 68.00 175 54 228 704 475 0 0 0 0 0 0 0 0 + 4 68.00 168 52 220 679 459 0 0 0 0 0 0 0 0 + 5 68.00 160 49 210 648 438 0 0 0 0 0 0 0 0 + 6 68.00 151 47 198 610 412 -0 0 0 0 0 0 0 0 + 1 68.00 104 32 136 420 284 0 0 0 0 0 0 0 0 + 2 68.00 92 28 120 370 250 0 0 0 0 0 0 0 0 + 3 68.00 82 25 108 332 224 0 0 0 0 0 0 0 0 + 4 68.00 89 27 116 357 241 -0 0 0 0 0 0 0 0 + 5 68.00 110 34 144 441 298 -0 0 0 0 0 0 0 0 + 6 68.00 131 40 171 525 354 0 0 0 0 0 0 0 0 + 1 68.00 183 56 238 739 500 0 0 0 0 0 0 0 0 + 2 68.00 208 64 272 839 567 0 0 0 0 0 0 0 0 + 3 68.00 232 71 303 944 641 -0 0 0 0 0 0 0 0 + 4 68.00 252 77 330 1033 703 0 0 0 0 0 0 0 0 + 5 68.00 269 83 352 1105 753 0 0 0 0 0 0 0 0 + 6 68.00 283 87 370 1168 798 0 0 0 0 0 0 0 0 + 1 68.00 295 91 386 1223 836 0 0 0 0 0 0 0 0 + 2 68.00 302 94 396 1263 866 0 0 0 0 0 0 0 0 + 3 68.00 308 96 404 1294 890 -0 0 0 0 0 0 0 0 + 4 68.00 314 99 413 1333 919 0 0 0 0 0 0 0 0 + 5 68.00 319 101 420 1361 941 0 0 0 0 0 0 0 0 + 6 68.00 325 103 429 1398 970 0 0 0 0 0 0 0 0 + 1 68.00 311 101 412 1358 946 0 0 0 0 0 0 0 0 + 2 68.00 316 104 420 1402 982 0 0 0 0 0 0 0 0 + 3 68.00 322 107 429 1447 1018 -0 0 0 0 0 0 0 0 + 4 68.00 326 111 437 1491 1054 0 0 0 0 0 0 0 0 + 5 68.00 330 114 444 1534 1090 0 0 0 0 0 0 0 0 + 6 68.00 335 117 452 1582 1130 0 0 0 0 0 0 0 0 + 1 68.00 328 116 445 1573 1128 0 0 0 0 0 0 0 0 + 2 68.00 331 119 450 1604 1155 -0 0 0 0 0 0 0 0 + 3 68.00 334 122 455 1637 1181 0 0 0 0 0 0 0 0 + 4 68.00 337 124 461 1668 1207 0 0 0 0 0 0 0 0 + 5 68.00 340 127 467 1702 1235 0 0 0 0 0 0 0 0 + 6 68.00 343 130 473 1733 1260 0 0 0 0 0 0 0 0 + 1 68.00 351 132 483 1766 1283 -0 0 0 0 0 0 0 0 + 2 68.00 353 132 486 1767 1282 -0 0 0 0 0 0 0 0 + 3 68.00 354 132 486 1764 1278 0 0 0 0 0 0 0 0 + 4 68.00 356 132 488 1767 1279 0 0 0 0 0 0 0 0 + 5 68.00 357 131 488 1754 1266 0 0 0 0 0 0 0 0 + 6 68.00 357 130 487 1750 1264 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 156 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 367 135 502 1815 1313 -0 0 0 0 0 0 0 0 + 2 68.00 367 137 504 1839 1335 0 0 0 0 0 0 0 0 + 3 68.00 368 139 506 1863 1357 0 0 0 0 0 0 0 0 + 4 68.00 370 141 511 1890 1380 0 0 0 0 0 0 0 0 + 5 68.00 371 144 515 1919 1404 0 0 0 0 0 0 0 0 + 6 68.00 373 146 519 1947 1427 -0 0 0 0 0 0 0 0 + 1 68.00 396 155 550 2062 1511 0 0 0 0 0 0 0 0 + 2 68.00 399 156 555 2079 1524 0 0 0 0 0 0 0 0 + 3 68.00 401 156 557 2090 1533 -0 0 0 0 0 0 0 0 + 4 68.00 403 157 560 2101 1541 0 0 0 0 0 0 0 0 + 5 68.00 405 157 562 2110 1548 0 0 0 0 0 0 0 0 + 6 68.00 405 157 562 2102 1541 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 157 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.47 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.33 66.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.15 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.00 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.82 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.67 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.51 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.35 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.19 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.03 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.87 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.71 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.55 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.39 65.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.23 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.08 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 65.92 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.76 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.60 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.44 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.28 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.12 65.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 64.96 65.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.80 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.64 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.48 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.32 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.16 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.00 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.83 65.00 64.83 92.76 87.72 0 42829 16333 2526 .0590 .0590 0.381 0.155 0.789 0 74.4 2399 0 0 127 2526 -677 1849 676 -1 986 1249 2.831 2.433 1.662 + 12 2 5 0 30.77 64.03 65.00 64.79 92.73 87.76 0 42848 16392 2980 .0696 .0696 0.383 0.182 0.795 0 87.8 2831 0 0 150 2980 -795 2185 795 0 1155 1441 2.828 2.451 1.675 + 12 2 5 1 30.62 64.00 65.00 64.82 92.78 87.83 0 42868 16452 3367 .0785 .0785 0.384 0.205 0.801 0 99.2 3198 0 0 169 3367 -892 2475 892 0 1297 1602 2.825 2.466 1.688 + 12 2 5 2 30.47 63.93 65.00 64.81 92.78 87.85 0 42888 16511 3875 .0903 .0903 0.385 0.235 0.809 0 114.0 3680 0 0 195 3875 -1026 2848 1026 0 1480 1811 2.823 2.487 1.701 + 12 2 5 3 30.32 63.90 65.00 64.80 92.78 87.84 0 42907 16571 4283 .0998 .0998 0.386 0.258 0.815 0 126.0 4068 0 0 215 4283 -1136 3147 1136 -0 1626 1977 2.820 2.502 1.709 + 12 2 5 4 30.17 63.85 65.00 64.79 92.79 87.86 0 42927 16630 4729 0.110 0.110 0.387 0.284 0.821 0 139.1 4492 0 0 237 4729 -1254 3475 1254 0 1783 2157 2.817 2.519 1.720 + 12 2 5 5 30.02 63.83 65.00 64.78 92.79 87.87 0 42947 16690 5159 0.120 0.120 0.389 0.309 0.827 0 151.6 4900 0 0 259 5159 -1368 3791 1368 -0 1933 2328 2.814 2.535 1.730 + 12 2 6 0 29.90 63.81 65.96 64.84 98.85 96.41 0 42962 16737 81639 .0501 1.900 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8812 42024 10130 1318 0 52290 2.812 2.109 0.806 + 12 2 6 1 29.78 67.31 66.50 65.67 93.89 91.79 0 42978 16785 43295 0.968 1.007 1.000 0.967 0.992 0.0332 1262 39469 1660 0 2154 43283 -7631 34900 8383 752 14165 18115 2.810 2.786 1.941 + 12 2 6 2 29.66 67.03 66.50 66.56 94.59 91.10 0 42994 16833 23669 0.551 0.551 0.551 1.000 1.000 0 695.0 22483 0 0 1186 23669 -4983 18686 4983 -0 7869 9191 2.807 2.857 2.064 + 12 2 6 3 29.54 65.84 66.50 66.54 94.59 91.12 0 43010 16880 23766 0.553 0.553 0.553 1.000 1.000 0 697.5 22576 0 0 1190 23766 -4993 18772 4993 0 7908 9235 2.805 2.855 2.063 + 12 2 6 4 29.42 66.04 66.50 66.39 94.45 90.99 0 43025 16928 24263 0.564 0.564 0.564 1.000 1.000 0 711.9 23049 0 0 1215 24263 -5208 19055 5208 0 8086 9437 2.803 2.850 2.049 + 12 2 6 5 29.30 66.25 66.50 66.41 94.48 90.81 0 43041 16975 22673 0.527 0.527 0.527 1.000 1.000 0 665.0 21539 0 0 1135 22673 -4999 17674 4999 -0 7541 8812 2.801 2.856 2.037 + 12 2 7 0 29.57 66.37 67.10 66.46 100.47 98.05 0 43006 16868 106k .0501 2.454 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8618 42710 9444 826 0 52290 2.806 2.104 0.819 + 12 2 7 1 29.84 67.85 67.55 66.99 101.00 98.55 0 42970 16761 79017 .0501 1.839 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8748 42786 9367 620 0 52290 2.811 2.108 0.820 + 12 2 7 2 30.11 68.31 67.89 67.56 101.58 99.16 0 42935 16654 58626 .0502 1.365 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8532 43147 9007 475 0 52290 2.816 2.112 0.827 + 12 2 7 3 30.38 68.44 68.00 67.92 95.90 93.90 0 42899 16547 42471 0.990 0.990 0.990 1.000 1.000 0 1250 40337 0 0 2132 42470 -6939 35383 7087 148 14297 16565 2.821 2.821 2.154 + 12 2 7 4 30.65 68.14 68.00 68.04 95.99 93.69 0 42864 16440 36539 0.852 0.852 0.852 1.000 1.000 0 1076 34704 0 0 1836 36539 -6315 30224 6315 0 12236 14208 2.826 2.836 2.148 + 12 2 7 5 30.92 67.95 68.00 68.00 95.94 93.41 0 42829 16333 33203 0.775 0.775 0.775 1.000 1.000 0 978.6 31534 0 0 1670 33203 -6017 27186 6017 -0 11071 12878 2.831 2.848 2.134 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 158 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.29 68.00 67.98 95.77 92.96 0 42620 15702 29565 0.694 0.694 0.694 1.000 1.000 0 875.7 28071 0 0 1494 29565 -5673 23891 5673 0 9720 11351 2.861 2.888 2.130 + 12 2 8 1 34.10 68.30 68.00 68.03 95.69 92.58 0 42412 15071 26194 0.618 0.618 0.618 1.000 1.000 0 779.6 24864 0 0 1330 26194 -5244 20950 5244 -0 8483 9950 2.893 2.931 2.135 + 12 2 8 2 35.69 68.40 68.00 68.03 95.83 92.29 0 42631 14588 22995 0.539 0.539 0.539 1.000 1.000 0 680.9 21833 0 0 1162 22995 -4911 18083 4911 0 7258 8556 2.952 3.008 2.148 + 12 2 8 3 37.28 68.43 68.00 68.04 96.35 92.27 0 43407 14301 20414 0.470 0.470 0.470 1.000 1.000 0 593.7 19401 0 0 1013 20414 -4660 15755 4660 0 6193 7343 3.049 3.133 2.186 + 12 2 8 4 38.87 68.49 68.00 68.05 96.87 92.18 0 44184 14014 18179 0.411 0.411 0.411 1.000 1.000 0 519.4 17293 0 0 886 18179 -4449 13730 4449 0 5282 6305 3.148 3.274 2.226 + 12 2 8 5 40.46 68.56 68.00 68.07 97.39 92.00 0 44960 13728 16136 0.359 0.359 0.359 1.000 1.000 0 453.0 15363 0 0 773 16136 -4249 11886 4249 0 4464 5373 3.250 3.441 2.270 + 12 2 9 0 41.12 68.61 68.00 68.08 97.61 91.76 0 45282 13610 14906 0.329 0.329 0.329 1.000 1.000 0 415.5 14197 0 0 709 14906 -4115 10792 4115 0 4019 4865 3.293 3.532 2.282 + 12 2 9 1 41.78 68.62 68.00 68.10 97.84 91.37 0 45605 13492 13509 0.296 0.296 0.296 1.000 1.000 0 373.9 12871 0 0 638 13509 -3956 9553 3956 -0 3532 4306 3.337 3.644 2.291 + 12 2 9 2 42.44 68.57 68.00 68.10 98.05 91.45 0 45927 13374 11962 0.260 0.260 0.291 0.894 0.974 0 328.8 11401 0 0 561 11962 -3535 8427 3535 0 2996 3694 3.381 3.805 2.369 + 12 2 9 3 43.10 68.42 68.00 68.10 98.26 91.51 0 46249 13256 10749 0.232 0.232 0.287 0.811 0.953 0 293.4 10248 0 0 501 10749 -3207 7541 3207 0 2692 3329 3.425 3.807 2.363 + 12 2 9 4 43.76 68.26 68.00 68.07 98.44 91.54 0 46571 13138 9557 0.205 0.205 0.282 0.727 0.932 0 259.0 9115 0 0 442 9557 -2891 6666 2891 0 2391 2970 3.471 3.812 2.353 + 12 2 9 5 44.42 67.96 68.00 68.04 98.63 91.55 0 46894 13020 8455 0.180 0.180 0.278 0.649 0.912 0 227.6 8067 0 0 388 8455 -2594 5861 2594 0 2110 2635 3.516 3.823 2.346 + 12 2 10 0 44.93 67.70 68.00 67.99 98.74 91.51 0 47143 12930 8099 0.172 0.172 0.274 0.626 0.907 0 216.9 7729 0 0 370 8099 -2524 5575 2524 -0 1995 2502 3.552 3.874 2.357 + 12 2 10 1 45.44 67.60 68.00 67.95 98.85 91.48 0 47392 12839 7228 0.153 0.153 0.271 0.563 0.891 0 192.5 6900 0 0 328 7228 -2286 4942 2286 -0 1777 2242 3.588 3.884 2.348 + 12 2 10 2 45.95 67.31 68.00 67.93 99.00 91.49 0 47641 12748 6430 0.135 0.135 0.268 0.504 0.876 0 170.4 6139 0 0 291 6430 -2054 4376 2054 0 1574 2001 3.624 3.900 2.346 + 12 2 10 3 46.46 67.16 68.00 67.87 99.11 91.44 0 47890 12658 5667 0.118 0.118 0.264 0.448 0.862 0 149.4 5412 0 0 255 5667 -1839 3829 1839 -0 1380 1772 3.661 3.921 2.341 + 12 2 10 4 46.97 66.91 68.00 67.84 99.24 91.43 0 48139 12567 4996 0.104 0.104 0.261 0.398 0.849 0 131.0 4772 0 0 223 4996 -1641 3355 1641 -0 1208 1568 3.698 3.951 2.344 + 12 2 10 5 47.48 66.74 68.00 67.80 99.20 91.35 0 48154 12562 4311 .0895 .0895 0.261 0.343 0.836 0 113.0 4118 0 0 193 4311 -1426 2884 1426 0 1058 1387 3.700 3.893 2.307 + 12 2 11 0 48.20 66.63 68.00 67.76 99.16 91.29 0 48154 12562 4696 .0975 .0975 0.261 0.374 0.843 0 123.1 4486 0 0 210 4696 -1562 3134 1562 0 1142 1488 3.700 3.929 2.319 + 12 2 11 1 48.92 66.66 68.00 67.73 99.14 91.24 0 48154 12562 4175 .0867 .0867 0.261 0.332 0.833 0 109.5 3989 0 0 187 4175 -1394 2781 1394 0 1028 1351 3.700 3.881 2.290 + 12 2 11 2 49.64 66.63 68.00 67.74 99.14 91.25 0 48154 12562 3634 .0755 .0755 0.261 0.289 0.822 0 95.3 3472 0 0 163 3634 -1213 2421 1213 0 906 1205 3.700 3.831 2.265 + 12 2 11 3 50.36 66.55 68.00 67.73 99.13 91.23 0 48154 12562 3136 .0651 .0651 0.261 0.250 0.812 0 82.2 2995 0 0 140 3136 -1048 2087 1048 -0 791 1068 3.700 3.784 2.240 + 12 2 11 4 51.08 66.49 68.00 67.71 99.12 91.19 0 48154 12562 2663 .0553 .0553 0.261 0.212 0.803 0 69.8 2544 0 0 119 2663 -893 1770 893 0 680 936 3.700 3.741 2.215 + 12 2 11 5 51.80 66.41 68.00 67.70 99.10 91.16 0 48154 12562 2189 .0455 .0455 0.261 0.174 0.794 0 57.4 2091 0 0 98 2189 -736 1453 736 0 566 800 3.700 3.697 2.190 + 12 2 12 0 52.70 66.30 68.00 67.68 99.08 91.14 0 48154 12562 1339 .0278 .0278 0.261 0.107 0.777 0 35.1 1279 0 0 60 1339 -451 888 451 0 354 413 3.700 3.618 2.148 + 12 2 12 1 53.60 66.11 68.00 67.66 99.06 91.10 0 48154 12562 809 .0168 .0168 0.261 .0644 0.766 0 21.2 773 0 0 36 809 -274 535 274 0 217 253 3.700 3.569 2.119 + 12 2 12 2 54.50 65.95 68.00 67.62 99.02 91.03 0 48154 12562 296 .0061 .0061 0.261 .0236 0.756 0 7.8 283 0 0 13 296 -101 195 101 -0 80 94 3.700 3.521 2.088 + 12 2 12 3 55.40 65.78 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.70 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.65 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.62 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.57 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.52 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.50 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.46 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.43 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.38 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.34 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.29 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.25 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.21 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.16 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.11 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.07 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.01 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 64.95 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 64.89 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 64.86 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.81 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.76 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.70 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.65 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.54 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.47 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 159 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.42 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.29 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.22 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.16 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.02 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 63.94 68.00 67.19 98.59 90.20 0 48154 12562 81 .0017 .0017 0.261 .0064 0.752 0 2.1 77 0 0 4 81 -29 51 29 -0 22 26 3.700 3.501 2.004 + 12 2 18 0 53.00 63.89 68.00 67.14 98.55 90.18 0 48154 12562 1536 .0319 .0319 0.261 0.122 0.781 0 40.3 1467 0 0 69 1536 -560 976 560 0 404 472 3.700 3.636 2.067 + 12 2 18 1 52.94 63.91 68.00 67.13 98.53 90.15 0 48154 12562 1885 .0391 .0391 0.261 0.150 0.788 0 49.4 1801 0 0 84 1885 -688 1197 688 0 491 575 3.700 3.669 2.080 + 12 2 18 2 52.88 63.93 68.00 67.13 98.54 90.16 0 48154 12562 2046 .0425 .0425 0.261 0.163 0.791 0 53.6 1954 0 0 91 2046 -747 1299 747 0 531 622 3.700 3.683 2.089 + 12 2 18 3 52.82 63.83 68.00 67.14 98.54 90.16 0 48154 12562 2352 .0489 .0489 0.261 0.187 0.797 0 61.7 2247 0 0 105 2352 -858 1494 858 0 605 711 3.700 3.712 2.103 + 12 2 18 4 52.76 63.81 68.00 67.12 98.52 90.13 0 48154 12562 2578 .0535 .0535 0.261 0.205 0.801 0 67.6 2463 0 0 115 2578 -943 1635 943 -0 660 775 3.700 3.733 2.109 + 12 2 18 5 52.70 63.75 68.00 67.11 98.52 90.12 0 48154 12562 2865 .0595 .0595 0.261 0.228 0.807 0 75.1 2737 0 0 128 2865 -1049 1816 1049 0 728 856 3.700 3.759 2.121 + 12 2 19 0 52.19 63.77 68.00 67.10 98.51 90.10 0 48154 12562 2838 .0589 .0589 0.261 0.226 0.806 0 74.4 2711 0 0 127 2838 -1041 1798 1041 0 722 849 3.700 3.757 2.118 + 12 2 19 1 51.68 63.63 68.00 67.10 98.51 90.10 0 48154 12562 3193 .0663 .0663 0.261 0.254 0.814 0 83.7 3050 0 0 143 3193 -1170 2022 1170 0 805 948 3.700 3.790 2.134 + 12 2 19 2 51.17 63.63 68.00 67.08 98.48 90.06 0 48154 12562 3437 .0714 .0714 0.261 0.274 0.818 0 90.1 3283 0 0 154 3437 -1264 2173 1264 0 861 1015 3.700 3.812 2.141 + 12 2 19 3 50.66 63.57 68.00 67.07 98.48 90.05 0 48154 12562 3782 .0785 .0785 0.261 0.301 0.825 0 99.2 3613 0 0 169 3782 -1392 2390 1392 -0 940 1109 3.700 3.844 2.155 + 12 2 19 4 50.15 63.60 68.00 67.06 98.47 90.03 0 48154 12562 4025 .0836 .0836 0.261 0.320 0.830 0 105.5 3845 0 0 180 4025 -1484 2541 1484 0 994 1174 3.700 3.867 2.164 + 12 2 19 5 49.64 63.51 68.00 67.07 98.47 90.03 0 48154 12562 4372 .0908 .0908 0.261 0.348 0.837 0 114.6 4177 0 0 196 4372 -1611 2761 1611 0 1071 1267 3.700 3.899 2.179 + 12 2 20 0 49.13 63.52 68.00 67.05 98.46 90.01 0 48154 12562 4891 0.102 0.102 0.261 0.389 0.847 0 128.2 4672 0 0 219 4891 -1805 3086 1805 -0 1184 1539 3.700 3.947 2.200 + 12 2 20 1 48.62 63.60 68.00 67.05 98.45 90.01 0 48154 12562 5249 0.109 0.109 0.261 0.418 0.854 0 137.6 5014 0 0 235 5249 -1938 3311 1938 0 1260 1631 3.700 3.980 2.215 + 12 2 20 2 48.11 63.68 68.00 67.06 98.47 90.04 0 48154 12562 5595 0.116 0.116 0.261 0.445 0.861 0 146.7 5345 0 0 250 5595 -2062 3533 2062 -0 1332 1719 3.700 4.012 2.233 + 12 2 20 3 47.60 63.79 68.00 67.08 98.48 90.06 0 48154 12562 5850 0.121 0.121 0.261 0.466 0.866 0 153.4 5588 0 0 262 5850 -2152 3698 2152 -0 1385 1783 3.700 4.036 2.246 + 12 2 20 4 47.09 63.88 68.00 67.10 98.50 90.09 0 48154 12562 6159 0.128 0.128 0.261 0.490 0.873 0 161.5 5883 0 0 275 6159 -2259 3899 2259 -0 1447 1859 3.700 4.065 2.263 + 12 2 20 5 46.58 64.05 68.00 67.12 98.39 90.10 0 47949 12636 6449 0.134 0.134 0.264 0.510 0.878 0 169.8 6159 0 0 290 6449 -2347 4102 2347 -0 1535 1961 3.669 4.013 2.248 + 12 2 21 0 46.10 64.13 68.00 67.16 98.27 90.12 0 47714 12722 7089 0.149 0.149 0.267 0.557 0.889 0 187.5 6769 0 0 320 7089 -2554 4535 2554 0 1699 2155 3.635 3.984 2.246 + 12 2 21 1 45.62 64.25 68.00 67.18 98.14 90.12 0 47480 12807 7396 0.156 0.156 0.270 0.578 0.894 0 196.6 7061 0 0 335 7396 -2642 4755 2642 -0 1798 2270 3.601 3.928 2.229 + 12 2 21 2 45.14 64.35 68.00 67.21 98.02 90.13 0 47245 12892 7688 0.163 0.163 0.273 0.596 0.899 0 205.4 7338 0 0 350 7688 -2719 4969 2719 -0 1894 2381 3.567 3.873 2.214 + 12 2 21 3 44.66 64.44 68.00 67.23 97.89 90.13 0 47011 12978 7992 0.170 0.170 0.276 0.616 0.904 0 214.6 7626 0 0 366 7992 -2800 5191 2800 0 1995 2497 3.533 3.823 2.199 + 12 2 21 4 44.18 64.53 68.00 67.25 97.76 90.12 0 46777 13063 8291 0.177 0.177 0.279 0.635 0.909 0 223.7 7909 0 0 382 8291 -2880 5411 2880 0 2096 2614 3.500 3.774 2.184 + 12 2 21 5 43.70 64.62 68.00 67.27 97.63 90.12 0 46542 13149 8577 0.184 0.184 0.283 0.652 0.913 0 232.6 8180 0 0 397 8577 -2952 5625 2952 0 2195 2728 3.466 3.727 2.170 + 12 2 22 0 43.28 64.71 68.00 67.30 97.52 90.11 0 46337 13224 9539 0.206 0.206 0.285 0.721 0.930 0 259.9 9095 0 0 443 9539 -3256 6282 3256 0 2431 3011 3.438 3.741 2.186 + 12 2 22 1 42.86 64.91 68.00 67.32 97.40 90.11 0 46132 13299 9842 0.213 0.213 0.288 0.740 0.935 0 269.3 9383 0 0 459 9842 -3332 6510 3332 0 2532 3128 3.409 3.706 2.176 + 12 2 22 2 42.44 65.03 68.00 67.36 97.31 90.14 0 45927 13374 10108 0.220 0.220 0.291 0.756 0.939 0 277.8 9634 0 0 474 10108 -3384 6724 3384 0 2625 3236 3.381 3.670 2.170 + 12 2 22 3 42.02 65.12 68.00 67.39 97.20 90.15 0 45722 13449 10395 0.227 0.227 0.294 0.773 0.943 0 287.0 9906 0 0 490 10395 -3447 6948 3447 0 2724 3350 3.353 3.636 2.162 + 12 2 22 4 41.60 65.23 68.00 67.41 97.09 90.14 0 45517 13524 10672 0.234 0.234 0.297 0.789 0.947 0 296.0 10167 0 0 505 10672 -3509 7163 3509 0 2822 3463 3.325 3.603 2.153 + 12 2 22 5 41.18 65.33 68.00 67.43 96.98 90.14 0 45312 13599 10914 0.241 0.241 0.300 0.803 0.951 0 304.0 10395 0 0 519 10914 -3555 7358 3555 0 2913 3568 3.297 3.569 2.144 + 12 2 23 0 41.27 65.42 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 63.95 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.60 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.40 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.27 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.10 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.01 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 62.95 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.77 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.68 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.51 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.43 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 160 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.38 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.25 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.21 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.11 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.10 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 61.99 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.92 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.88 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.87 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.79 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.68 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.59 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.49 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.39 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.29 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.19 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.08 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 60.98 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.87 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.76 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.65 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.54 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.43 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.31 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.20 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.08 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 59.96 65.00 64.14 92.24 86.86 0 43088 17118 1380 .0320 .0320 0.397 .0806 0.770 0 40.4 1311 0 0 69 1380 -416 966 414 -2 560 765 2.794 2.342 1.537 + 12 3 5 3 28.64 60.07 65.00 64.10 92.22 86.86 0 43128 17237 3574 .0829 .0829 0.400 0.207 0.802 0 104.6 3395 0 0 178 3574 -1074 2499 1074 0 1395 1710 2.789 2.434 1.588 + 12 3 5 4 28.34 60.34 65.00 64.11 92.26 86.93 0 43167 17356 4136 .0958 .0958 0.402 0.238 0.810 0 120.9 3929 0 0 206 4136 -1237 2899 1237 0 1602 1945 2.783 2.452 1.603 + 12 3 5 5 28.04 60.38 65.00 64.15 92.33 87.04 0 43206 17475 4646 0.108 0.108 0.404 0.266 0.816 0 135.7 4414 0 0 232 4646 -1375 3271 1375 0 1788 2156 2.778 2.468 1.619 + 12 3 6 0 28.07 60.40 65.95 64.38 98.40 95.76 0 43202 17463 82757 .0499 1.916 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9711 41129 11025 1313 0 52290 2.779 2.084 0.789 + 12 3 6 1 28.10 64.56 66.50 65.21 93.57 91.27 0 43198 17451 43508 0.969 1.007 1.000 0.968 0.992 0.0324 1262 39713 1622 0 2154 43489 -8554 34178 9310 757 14406 18318 2.779 2.757 1.880 + 12 3 6 2 28.13 64.23 66.50 66.10 94.27 90.37 0 43194 17439 23146 0.536 0.536 0.536 1.000 1.000 0 676.4 21992 0 0 1154 23146 -5492 17654 5492 -0 7759 9049 2.780 2.834 1.981 + 12 3 6 3 28.16 62.83 66.50 66.09 94.25 90.46 0 43190 17427 23672 0.548 0.548 0.548 1.000 1.000 0 691.9 22492 0 0 1180 23672 -5547 18125 5547 0 7941 9258 2.780 2.832 1.987 + 12 3 6 4 28.19 63.08 66.50 65.91 94.08 90.32 0 43187 17415 24319 0.563 0.563 0.563 1.000 1.000 0 710.8 23106 0 0 1213 24319 -5809 18509 5809 0 8166 9515 2.781 2.830 1.974 + 12 3 6 5 28.22 63.38 66.50 65.94 94.10 90.14 0 43183 17403 22844 0.529 0.529 0.529 1.000 1.000 0 667.8 21704 0 0 1139 22843 -5585 17259 5585 -0 7649 8925 2.781 2.837 1.964 + 12 3 7 0 28.52 63.64 67.11 66.07 100.09 97.50 0 43143 17284 106k .0499 2.456 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9369 41940 10214 844 0 52290 2.787 2.090 0.804 + 12 3 7 1 28.82 65.35 67.57 66.64 100.65 98.04 0 43104 17166 78063 .0500 1.811 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9468 42047 10107 639 0 52290 2.792 2.094 0.806 + 12 3 7 2 29.12 65.82 67.93 67.25 101.26 98.70 0 43065 17047 56530 .0500 1.313 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9200 42460 9693 493 0 52290 2.798 2.098 0.814 + 12 3 7 3 29.42 65.99 68.00 67.62 95.68 93.37 0 43025 16928 39680 0.922 0.922 0.922 1.000 1.000 0 1164 37679 0 0 1985 39665 -7302 32276 7389 87 13418 15540 2.803 2.808 2.095 + 12 3 7 4 29.72 65.72 68.00 67.69 95.73 93.15 0 42986 16809 35086 0.816 0.816 0.816 1.000 1.000 0 1030 33328 0 0 1758 35085 -6756 28329 6756 0 11809 13704 2.809 2.822 2.088 + 12 3 7 5 30.02 65.71 68.00 67.65 95.66 92.82 0 42947 16690 31648 0.737 0.737 0.737 1.000 1.000 0 930.2 30061 0 0 1587 31648 -6407 25241 6407 -0 10601 12325 2.814 2.836 2.071 + 12 3 8 0 31.40 65.91 68.00 67.64 95.53 92.36 0 42766 16142 28171 0.659 0.659 0.659 1.000 1.000 0 831.6 26753 0 0 1419 28171 -6022 22149 6022 0 9318 10874 2.840 2.871 2.063 + 12 3 8 1 32.78 65.97 68.00 67.65 95.43 91.91 0 42585 15595 24830 0.583 0.583 0.583 1.000 1.000 0 736.0 23574 0 0 1256 24830 -5590 19240 5590 0 8102 9494 2.867 2.910 2.056 + 12 3 8 2 34.16 66.07 68.00 67.65 95.30 91.39 0 42404 15047 21901 0.516 0.516 0.516 1.000 1.000 0 652.0 20789 0 0 1112 21901 -5227 16674 5227 0 7042 8291 2.894 2.952 2.045 + 12 3 8 3 35.54 66.10 68.00 67.65 95.40 91.02 0 42557 14616 19397 0.456 0.456 0.456 1.000 1.000 0 575.4 18416 0 0 982 19397 -4920 14477 4920 -0 6095 7213 2.943 3.021 2.046 + 12 3 8 4 36.92 66.18 68.00 67.63 95.83 90.83 0 43231 14366 17315 0.401 0.401 0.401 1.000 1.000 0 505.6 16453 0 0 863 17315 -4697 12619 4697 0 5247 6246 3.027 3.136 2.065 + 12 3 8 5 38.30 66.25 68.00 67.63 96.26 90.60 0 43905 14117 15514 0.353 0.353 0.353 1.000 1.000 0 446.1 14753 0 0 761 15514 -4494 11020 4494 0 4518 5416 3.112 3.265 2.087 + 12 3 9 0 38.84 66.31 68.00 67.63 96.43 90.36 0 44169 14019 14485 0.328 0.328 0.328 1.000 1.000 0 414.0 13779 0 0 706 14485 -4363 10121 4363 0 4139 4982 3.146 3.329 2.089 + 12 3 9 1 39.38 66.36 68.00 67.63 96.61 90.27 0 44433 13922 13017 0.293 0.293 0.313 0.935 0.984 0 369.8 12386 0 0 631 13017 -4014 9003 4014 -0 3535 4302 3.180 3.504 2.161 + 12 3 9 2 39.92 66.18 68.00 67.64 96.79 90.35 0 44696 13825 11609 0.260 0.260 0.309 0.840 0.960 0 327.9 11050 0 0 559 11609 -3597 8012 3597 0 3183 3879 3.215 3.472 2.141 + 12 3 9 3 40.46 66.10 68.00 67.62 96.94 90.37 0 44960 13728 10303 0.229 0.229 0.305 0.751 0.938 0 289.3 9810 0 0 494 10303 -3228 7076 3228 0 2848 3478 3.250 3.445 2.118 + 12 3 9 4 41.00 65.94 68.00 67.60 97.09 90.41 0 45224 13631 9204 0.204 0.204 0.301 0.675 0.919 0 256.9 8766 0 0 438 9204 -2911 6293 2911 0 2555 3130 3.285 3.431 2.102 + 12 3 9 5 41.54 65.75 68.00 67.57 97.23 90.42 0 45487 13535 8163 0.179 0.179 0.298 0.603 0.901 0 226.5 7776 0 0 386 8163 -2612 5551 2612 0 2274 2797 3.321 3.420 2.087 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 161 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.67 68.00 67.53 97.45 90.44 0 45868 13395 8690 0.189 0.189 0.292 0.649 0.912 0 239.2 8282 0 0 408 8690 -2824 5866 2824 -0 2332 2877 3.373 3.551 2.141 + 12 3 10 1 43.10 65.75 68.00 67.51 97.67 90.48 0 46249 13256 7885 0.170 0.170 0.287 0.595 0.899 0 215.2 7518 0 0 367 7885 -2596 5289 2596 0 2093 2597 3.425 3.592 2.150 + 12 3 10 2 43.88 65.68 68.00 67.52 97.93 90.58 0 46630 13117 7085 0.152 0.152 0.281 0.540 0.885 0 191.8 6758 0 0 327 7085 -2351 4734 2351 0 1859 2322 3.479 3.636 2.166 + 12 3 10 3 44.66 65.70 68.00 67.51 98.17 90.63 0 47011 12978 6303 0.134 0.134 0.276 0.486 0.871 0 169.2 6014 0 0 289 6303 -2117 4186 2117 0 1632 2057 3.533 3.685 2.180 + 12 3 10 4 45.44 65.58 68.00 67.50 98.41 90.69 0 47392 12839 5604 0.118 0.118 0.271 0.436 0.859 0 149.3 5349 0 0 255 5604 -1902 3702 1902 0 1428 1819 3.588 3.746 2.200 + 12 3 10 5 46.22 65.58 68.00 67.48 98.64 90.71 0 47773 12700 4876 0.102 0.102 0.266 0.384 0.846 0 128.8 4656 0 0 220 4876 -1677 3199 1677 0 1222 1579 3.644 3.809 2.218 + 12 3 11 0 46.58 65.51 68.00 67.47 98.74 90.72 0 47949 12636 4783 .0997 .0997 0.264 0.378 0.845 0 125.9 4568 0 0 215 4783 -1655 3128 1655 0 1183 1534 3.669 3.862 2.238 + 12 3 11 1 46.94 65.69 68.00 67.46 98.84 90.72 0 48124 12572 4317 .0897 .0897 0.261 0.343 0.836 0 113.2 4123 0 0 193 4317 -1504 2813 1504 0 1062 1392 3.696 3.883 2.241 + 12 3 11 2 47.30 65.47 68.00 67.49 98.89 90.77 0 48154 12562 3957 .0822 .0822 0.261 0.315 0.829 0 103.7 3780 0 0 177 3957 -1375 2582 1375 -0 979 1293 3.700 3.861 2.234 + 12 3 11 3 47.66 65.75 68.00 67.45 98.86 90.72 0 48154 12562 3446 .0716 .0716 0.261 0.274 0.819 0 90.3 3292 0 0 154 3446 -1202 2244 1202 0 863 1154 3.700 3.813 2.205 + 12 3 11 4 48.02 65.61 68.00 67.50 98.90 90.79 0 48154 12562 3139 .0652 .0652 0.261 0.250 0.812 0 82.3 2999 0 0 140 3139 -1089 2050 1089 -0 792 1069 3.700 3.785 2.198 + 12 3 11 5 48.38 65.76 68.00 67.48 98.88 90.76 0 48154 12562 2705 .0562 .0562 0.261 0.215 0.804 0 70.9 2584 0 0 121 2705 -941 1764 941 -0 690 947 3.700 3.744 2.175 + 12 3 12 0 48.86 65.29 68.00 67.50 98.90 90.79 0 48154 12562 1961 .0407 .0407 0.261 0.156 0.789 0 51.4 1873 0 0 88 1961 -680 1281 680 0 510 734 3.700 3.676 2.144 + 12 3 12 1 49.34 65.56 68.00 67.43 98.83 90.68 0 48154 12562 1465 .0304 .0304 0.261 0.117 0.779 0 38.4 1399 0 0 66 1465 -513 952 513 0 386 588 3.700 3.630 2.111 + 12 3 12 2 49.82 65.34 68.00 67.46 98.87 90.73 0 48154 12562 1143 .0237 .0237 0.261 .0910 0.773 0 30.0 1092 0 0 51 1143 -398 745 398 0 303 491 3.700 3.600 2.101 + 12 3 12 3 50.30 65.33 68.00 67.43 98.83 90.68 0 48154 12562 694 .0144 .0144 0.261 .0553 0.764 0 18.2 663 0 0 31 694 -243 451 243 0 186 354 3.700 3.558 2.075 + 12 3 12 4 50.78 65.23 68.00 67.43 98.83 90.67 0 48154 12562 345 .0072 .0072 0.261 .0275 0.757 0 9.0 330 0 0 15 345 -121 224 121 0 93 245 3.700 3.526 2.058 + 12 3 12 5 51.26 65.09 68.00 67.41 98.82 90.65 0 48154 12562 10 .0002 .0002 0.261 .0008 0.750 0 0.3 9 0 0 0 10 -3 6 3 0 3 140 3.700 3.495 2.041 + 12 3 13 0 51.59 65.08 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.05 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.10 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.05 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.14 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.11 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.24 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.13 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.36 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.28 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.36 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.26 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.29 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.52 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.48 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.55 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.40 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.41 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.40 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.54 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.49 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.49 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.51 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.53 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.58 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.38 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.58 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.21 68.00 67.50 98.90 90.77 0 48154 12562 1342 .0279 .0279 0.261 0.107 0.777 0 35.2 1282 0 0 60 1342 -467 876 466 -1 354 414 3.700 3.618 2.114 + 12 3 17 4 49.49 65.70 68.00 67.42 98.82 90.67 0 48154 12562 3047 .0633 .0633 0.261 0.243 0.811 0 79.9 2911 0 0 136 3047 -1068 1979 1068 0 771 907 3.700 3.776 2.182 + 12 3 17 5 49.10 65.84 68.00 67.50 98.90 90.79 0 48154 12562 3421 .0710 .0710 0.261 0.272 0.818 0 89.7 3268 0 0 153 3421 -1186 2234 1186 0 857 1010 3.700 3.811 2.211 + 12 3 18 0 48.05 65.89 68.00 67.53 98.93 90.85 0 48154 12562 3403 .0707 .0707 0.261 0.271 0.818 0 89.2 3251 0 0 152 3403 -1175 2228 1175 0 853 1142 3.700 3.809 2.216 + 12 3 18 1 47.00 65.95 68.00 67.54 98.94 90.87 0 48154 12562 3988 .0828 .0828 0.261 0.317 0.829 0 104.5 3810 0 0 178 3988 -1374 2613 1374 0 986 1301 3.700 3.863 2.244 + 12 3 18 2 45.95 66.10 68.00 67.55 98.62 90.81 0 47641 12748 4552 .0955 .0955 0.268 0.357 0.839 0 120.6 4346 0 0 206 4552 -1544 3008 1544 0 1163 1505 3.624 3.736 2.197 + 12 3 18 3 44.90 66.26 68.00 67.59 98.32 90.78 0 47128 12935 5093 0.108 0.108 0.274 0.394 0.848 0 136.4 4860 0 0 233 5093 -1696 3396 1696 0 1342 1711 3.550 3.621 2.157 + 12 3 18 4 43.85 66.48 68.00 67.62 98.02 90.74 0 46615 13122 5666 0.122 0.122 0.281 0.432 0.858 0 153.4 5404 0 0 262 5666 -1852 3814 1852 0 1535 1933 3.477 3.521 2.123 + 12 3 18 5 42.80 66.71 68.00 67.66 97.73 90.70 0 46103 13309 6235 0.135 0.135 0.289 0.469 0.867 0 170.7 5944 0 0 291 6235 -1998 4238 1998 0 1733 2161 3.405 3.430 2.093 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 162 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.81 68.00 67.70 97.72 90.76 0 46029 13336 6292 0.137 0.137 0.290 0.472 0.868 0 172.6 5998 0 0 294 6292 -1998 4294 1998 0 1756 2187 3.395 3.416 2.094 + 12 3 19 1 42.50 66.82 68.00 67.73 97.70 90.79 0 45956 13363 6573 0.143 0.143 0.291 0.492 0.873 0 180.5 6265 0 0 308 6573 -2075 4497 2075 0 1833 2277 3.385 3.419 2.101 + 12 3 19 2 42.35 66.93 68.00 67.73 97.66 90.78 0 45883 13390 6807 0.148 0.148 0.292 0.508 0.877 0 187.3 6488 0 0 320 6807 -2143 4664 2143 0 1898 2354 3.375 3.418 2.103 + 12 3 19 3 42.20 66.90 68.00 67.75 97.63 90.80 0 45810 13417 7065 0.154 0.154 0.293 0.527 0.882 0 194.7 6733 0 0 332 7065 -2212 4853 2212 0 1969 2438 3.365 3.419 2.109 + 12 3 19 4 42.05 66.94 68.00 67.75 97.58 90.79 0 45736 13443 7256 0.159 0.159 0.294 0.540 0.885 0 200.3 6914 0 0 342 7256 -2266 4990 2266 -0 2025 2503 3.355 3.415 2.108 + 12 3 19 5 41.90 66.89 68.00 67.76 97.54 90.79 0 45663 13470 7515 0.165 0.165 0.295 0.558 0.889 0 207.8 7161 0 0 354 7515 -2338 5177 2338 0 2096 2587 3.345 3.416 2.112 + 12 3 20 0 41.60 66.94 68.00 67.76 97.44 90.75 0 45517 13524 7841 0.172 0.172 0.297 0.580 0.895 0 217.4 7470 0 0 371 7841 -2432 5409 2432 0 2194 2702 3.325 3.404 2.109 + 12 3 20 1 41.30 66.89 68.00 67.77 97.36 90.74 0 45370 13578 8153 0.180 0.180 0.299 0.600 0.900 0 226.8 7766 0 0 387 8153 -2513 5640 2513 -0 2290 2813 3.305 3.392 2.107 + 12 3 20 2 41.00 66.85 68.00 67.77 97.26 90.71 0 45224 13631 8419 0.186 0.186 0.301 0.618 0.904 0 235.0 8018 0 0 401 8419 -2586 5834 2586 0 2375 2912 3.285 3.377 2.102 + 12 3 20 3 40.70 66.90 68.00 67.76 97.16 90.67 0 45077 13685 8584 0.190 0.190 0.304 0.627 0.907 0 240.4 8173 0 0 410 8584 -2627 5957 2627 0 2436 2983 3.266 3.355 2.093 + 12 3 20 4 40.40 66.81 68.00 67.77 97.08 90.65 0 44931 13739 8882 0.198 0.198 0.306 0.647 0.912 0 249.6 8457 0 0 426 8882 -2703 6180 2703 -0 2530 3092 3.246 3.343 2.091 + 12 3 20 5 40.10 66.82 68.00 67.76 96.97 90.60 0 44784 13793 9029 0.202 0.202 0.308 0.655 0.914 0 254.5 8595 0 0 434 9029 -2741 6288 2741 -0 2588 3158 3.227 3.321 2.081 + 12 3 21 0 40.43 66.78 68.00 67.76 97.08 90.65 0 44945 13734 9473 0.211 0.211 0.306 0.690 0.922 0 266.1 9019 0 0 454 9473 -2886 6587 2886 0 2664 3254 3.248 3.386 2.113 + 12 3 21 1 40.76 66.75 68.00 67.76 97.17 90.68 0 45106 13674 9567 0.212 0.212 0.303 0.700 0.925 0 267.8 9111 0 0 457 9567 -2930 6637 2930 0 2657 3251 3.270 3.428 2.131 + 12 3 21 2 41.09 66.70 68.00 67.75 97.28 90.71 0 45268 13615 9639 0.213 0.213 0.301 0.708 0.927 0 268.8 9180 0 0 459 9639 -2966 6673 2966 0 2645 3240 3.291 3.471 2.150 + 12 3 21 3 41.42 66.63 68.00 67.75 97.37 90.74 0 45429 13556 9690 0.213 0.213 0.298 0.715 0.929 0 269.3 9231 0 0 459 9690 -2998 6693 2998 0 2628 3224 3.313 3.513 2.168 + 12 3 21 4 41.75 66.50 68.00 67.73 97.47 90.75 0 45590 13497 9731 0.213 0.213 0.296 0.721 0.930 0 269.5 9272 0 0 460 9731 -3029 6702 3029 0 2608 3204 3.335 3.555 2.185 + 12 3 21 5 42.08 66.53 68.00 67.71 97.55 90.75 0 45751 13438 9732 0.213 0.213 0.294 0.724 0.931 0 268.5 9274 0 0 458 9732 -3053 6679 3053 -0 2579 3173 3.357 3.596 2.199 + 12 3 22 0 42.05 66.53 68.00 67.71 97.54 90.75 0 45736 13443 10516 0.230 0.230 0.294 0.782 0.946 0 290.2 10021 0 0 495 10516 -3297 7219 3297 -0 2746 3378 3.355 3.649 2.227 + 12 3 22 1 42.02 66.58 68.00 67.71 97.53 90.75 0 45722 13449 10675 0.233 0.233 0.294 0.794 0.948 0 294.7 10172 0 0 503 10675 -3346 7329 3346 0 2782 3421 3.353 3.656 2.231 + 12 3 22 2 41.99 66.62 68.00 67.73 97.53 90.76 0 45707 13454 10812 0.237 0.237 0.294 0.804 0.951 0 298.6 10302 0 0 509 10812 -3381 7431 3381 0 2813 3459 3.351 3.662 2.236 + 12 3 22 3 41.96 66.83 68.00 67.73 97.53 90.77 0 45692 13459 10841 0.237 0.237 0.295 0.805 0.951 0 299.5 10330 0 0 511 10841 -3385 7456 3385 0 2822 3469 3.349 3.660 2.237 + 12 3 22 4 41.93 66.92 68.00 67.77 97.56 90.82 0 45678 13465 10949 0.240 0.240 0.295 0.813 0.953 0 302.6 10433 0 0 516 10949 -3399 7550 3399 -0 2847 3500 3.347 3.664 2.245 + 12 3 22 5 41.90 67.00 68.00 67.78 97.56 90.85 0 45663 13470 11044 0.242 0.242 0.295 0.820 0.955 0 305.3 10523 0 0 521 11044 -3417 7627 3417 0 2870 3527 3.345 3.667 2.250 + 12 3 23 0 41.51 67.11 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.68 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.31 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.35 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.24 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.16 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.07 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 64.92 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.86 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.76 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.68 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.52 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.46 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.49 66.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.32 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.25 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.13 66.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.01 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.90 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.78 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.67 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.55 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.44 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.32 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 163 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.20 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.08 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 62.95 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.83 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.70 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.57 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.45 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.32 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.19 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.06 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.92 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.79 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.65 65.00 64.45 92.47 87.21 0 42951 16702 381 .0089 .0089 0.389 .0228 0.756 0 11.2 362 0 0 19 381 -110 272 109 -1 156 312 2.814 2.316 1.550 + 12 4 5 1 29.96 61.58 65.00 64.39 92.41 87.15 0 42954 16714 3054 .0711 .0711 0.389 0.183 0.796 0 89.8 2901 0 0 153 3054 -881 2173 881 0 1190 1480 2.813 2.437 1.618 + 12 4 5 2 29.93 61.85 65.00 64.38 92.39 87.12 0 42958 16725 3469 .0808 .0808 0.389 0.207 0.802 0 101.9 3295 0 0 174 3469 -1004 2466 1004 0 1342 1652 2.812 2.456 1.627 + 12 4 5 3 29.90 61.85 65.00 64.42 92.44 87.19 0 42962 16737 3865 .0900 .0900 0.390 0.231 0.808 0 113.6 3671 0 0 194 3865 -1110 2755 1110 -0 1484 1814 2.812 2.473 1.642 + 12 4 5 4 29.87 61.81 65.00 64.42 92.44 87.20 0 42966 16749 4280 .0996 .0996 0.390 0.256 0.814 0 125.7 4065 0 0 215 4280 -1229 3051 1229 0 1632 1983 2.811 2.492 1.653 + 12 4 5 5 29.84 61.81 65.00 64.41 92.43 87.19 0 42970 16761 4709 0.110 0.110 0.390 0.281 0.820 0 138.3 4473 0 0 236 4709 -1353 3356 1353 0 1782 2154 2.811 2.511 1.663 + 12 4 6 0 29.72 61.82 65.96 64.57 98.59 96.03 0 42986 16809 82218 .0501 1.913 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9335 41500 10654 1319 0 52290 2.809 2.106 0.796 + 12 4 6 1 29.60 65.80 66.50 65.40 93.55 91.34 0 43002 16856 43170 0.983 1.004 1.000 0.983 0.996 0.0175 1262 40134 874 0 2154 43162 -8131 34279 8882 751 14364 17528 2.806 2.794 1.971 + 12 4 6 2 29.48 65.42 66.50 66.30 94.36 90.63 0 43017 16904 23241 0.540 0.540 0.540 1.000 1.000 0 682.0 22077 0 0 1164 23241 -5251 17990 5251 0 7730 9030 2.804 2.856 2.023 + 12 4 6 3 29.36 64.09 66.50 66.28 94.34 90.72 0 43033 16951 23822 0.554 0.554 0.554 1.000 1.000 0 698.8 22630 0 0 1192 23822 -5322 18501 5322 0 7937 9265 2.802 2.851 2.027 + 12 4 6 4 29.24 64.34 66.50 66.12 94.19 90.65 0 43049 16999 24905 0.579 0.579 0.579 1.000 1.000 0 730.3 23659 0 0 1246 24905 -5624 19281 5624 0 8318 9700 2.800 2.844 2.016 + 12 4 6 5 29.12 64.62 66.50 66.14 94.23 90.49 0 43065 17047 23343 0.542 0.542 0.542 1.000 1.000 0 684.3 22176 0 0 1167 23343 -5399 17944 5399 -0 7782 9086 2.798 2.850 2.005 + 12 4 7 0 29.42 64.85 67.09 66.24 100.25 97.74 0 43025 16928 107k .0501 2.478 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9047 42288 9866 819 0 52290 2.803 2.102 0.811 + 12 4 7 1 29.72 66.49 67.53 66.78 100.80 98.26 0 42986 16809 80194 .0501 1.866 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9148 42397 9757 609 0 52290 2.809 2.106 0.813 + 12 4 7 2 30.02 66.93 67.87 67.37 101.38 98.88 0 42947 16690 60038 .0501 1.398 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8893 42797 9357 464 0 52290 2.814 2.111 0.821 + 12 4 7 3 30.32 67.08 68.00 67.72 96.53 94.41 0 42907 16571 44193 0.870 1.030 1.000 0.863 0.966 0.137 1262 35169 6852 0 2154 44174 -7551 36445 7729 178 12915 22057 2.820 2.723 1.663 + 12 4 7 4 30.62 66.99 68.00 67.85 95.81 93.47 0 42868 16452 37469 0.874 0.874 0.874 1.000 1.000 0 1103 35586 0 0 1882 37469 -6747 30722 6747 0 12557 14576 2.825 2.834 2.128 + 12 4 7 5 30.92 66.90 68.00 67.84 95.77 93.23 0 42829 16333 34237 0.799 0.799 0.799 1.000 1.000 0 1009 32515 0 0 1722 34237 -6403 27834 6403 -0 11425 13284 2.831 2.846 2.117 + 12 4 8 0 32.18 67.06 68.00 67.82 95.64 92.82 0 42663 15833 30572 0.717 0.717 0.717 1.000 1.000 0 904.6 29029 0 0 1543 30572 -6029 24543 6029 0 10084 11764 2.855 2.879 2.111 + 12 4 8 1 33.44 67.12 68.00 67.84 95.55 92.45 0 42498 15333 27323 0.643 0.643 0.643 1.000 1.000 0 811.6 25938 0 0 1385 27323 -5629 21693 5629 -0 8903 10424 2.880 2.913 2.109 + 12 4 8 2 34.70 67.21 68.00 67.84 95.45 92.01 0 42333 14833 24226 0.572 0.572 0.572 1.000 1.000 0 722.4 22994 0 0 1232 24226 -5265 18961 5265 0 7790 9159 2.905 2.952 2.102 + 12 4 8 3 35.96 67.25 68.00 67.85 95.74 91.93 0 42762 14540 22081 0.516 0.516 0.516 1.000 1.000 0 651.8 20969 0 0 1112 22081 -5030 17051 5030 -0 6918 8167 2.969 3.031 2.123 + 12 4 8 4 37.22 67.34 68.00 67.85 96.14 91.92 0 43378 14312 20325 0.469 0.469 0.469 1.000 1.000 0 591.5 19316 0 0 1009 20325 -4858 15467 4858 -0 6173 7319 3.045 3.129 2.154 + 12 4 8 5 38.48 67.43 68.00 67.86 96.55 91.94 0 43993 14084 18926 0.430 0.430 0.430 1.000 1.000 0 543.1 17999 0 0 926 18926 -4714 14211 4714 -0 5564 6627 3.124 3.235 2.190 + 12 4 9 0 39.11 67.54 68.00 67.88 96.77 92.02 0 44301 13971 18545 0.419 0.419 0.419 1.000 1.000 0 528.5 17644 0 0 902 18545 -4671 13874 4671 0 5365 6403 3.163 3.289 2.214 + 12 4 9 1 39.74 67.60 68.00 67.89 96.98 91.97 0 44608 13858 17682 0.396 0.396 0.396 1.000 1.000 0 500.4 16828 0 0 854 17682 -4570 13112 4570 0 5020 6011 3.204 3.352 2.232 + 12 4 9 2 40.37 67.59 68.00 67.90 97.19 91.94 0 44916 13744 16997 0.378 0.378 0.378 1.000 1.000 0 477.7 16181 0 0 815 16996 -4494 12503 4494 0 4735 5686 3.244 3.417 2.253 + 12 4 9 3 41.00 67.58 68.00 67.90 97.40 91.90 0 45224 13631 16372 0.362 0.362 0.362 1.000 1.000 0 457.0 15592 0 0 780 16372 -4432 11940 4432 -0 4471 5388 3.285 3.487 2.274 + 12 4 9 4 41.63 67.47 68.00 67.90 97.60 91.87 0 45531 13519 15854 0.348 0.348 0.348 1.000 1.000 0 439.6 15104 0 0 750 15854 -4383 11471 4383 0 4243 5129 3.327 3.560 2.297 + 12 4 9 5 42.26 67.58 68.00 67.89 97.78 91.80 0 45839 13406 15302 0.334 0.334 0.334 1.000 1.000 0 421.4 14583 0 0 719 15302 -4340 10962 4340 0 4007 4862 3.369 3.639 2.320 + 12 4 10 0 42.41 67.65 68.00 67.91 97.85 91.88 0 45912 13379 15395 0.335 0.335 0.335 1.000 1.000 0 423.3 14672 0 0 722 15395 -4343 11052 4343 -0 4017 4875 3.379 3.653 2.332 + 12 4 10 1 42.56 67.70 68.00 67.92 97.91 91.83 0 45985 13352 15083 0.328 0.328 0.328 1.000 1.000 0 414.0 14376 0 0 706 15083 -4296 10787 4296 0 3908 4751 3.389 3.678 2.338 + 12 4 10 2 42.71 67.72 68.00 67.93 97.97 91.78 0 46059 13325 14798 0.321 0.321 0.321 1.000 1.000 0 405.6 14106 0 0 692 14797 -4256 10542 4256 0 3808 4636 3.399 3.704 2.343 + 12 4 10 3 42.86 67.74 68.00 67.94 98.02 91.71 0 46132 13299 14505 0.314 0.314 0.314 1.000 1.000 0 396.9 13828 0 0 677 14505 -4217 10288 4217 0 3706 4520 3.409 3.731 2.347 + 12 4 10 4 43.01 67.76 68.00 67.94 98.08 91.63 0 46205 13272 14202 0.307 0.307 0.307 1.000 1.000 0 388.0 13540 0 0 662 14202 -4178 10024 4178 0 3601 4400 3.419 3.760 2.351 + 12 4 10 5 43.16 68.08 68.00 67.95 98.13 91.48 0 46278 13245 13733 0.297 0.297 0.297 1.000 1.000 0 374.6 13094 0 0 639 13733 -4117 9616 4117 0 3449 4224 3.430 3.797 2.352 + 12 4 11 0 43.49 68.19 68.00 68.00 98.29 91.40 0 46440 13186 13211 0.284 0.284 0.284 1.000 1.000 0 359.1 12598 0 0 613 13211 -4025 9186 4025 -0 3262 4011 3.452 3.862 2.371 + 12 4 11 1 43.82 68.11 68.00 68.03 98.42 91.47 0 46601 13127 12786 0.274 0.274 0.282 0.974 0.993 0 346.4 12195 0 0 591 12786 -3901 8885 3901 0 2994 3722 3.475 4.073 2.478 + 12 4 11 2 44.15 68.26 68.00 68.02 98.52 91.49 0 46762 13068 12195 0.261 0.261 0.279 0.933 0.983 0 329.2 11633 0 0 562 12195 -3741 8454 3741 0 2852 3550 3.497 4.079 2.477 + 12 4 11 3 44.48 68.23 68.00 68.05 98.65 91.57 0 46923 13010 11691 0.249 0.249 0.277 0.899 0.975 0 314.5 11154 0 0 537 11691 -3587 8104 3587 0 2725 3398 3.520 4.094 2.485 + 12 4 11 4 44.81 68.42 68.00 68.04 98.75 91.60 0 47084 12951 11119 0.236 0.236 0.275 0.859 0.965 0 298.1 10610 0 0 509 11119 -3429 7690 3429 -0 2586 3231 3.543 4.103 2.485 + 12 4 11 5 45.14 68.38 68.00 68.08 98.89 91.68 0 47245 12892 10635 0.225 0.225 0.273 0.825 0.956 0 284.1 10150 0 0 485 10635 -3278 7356 3278 0 2464 3085 3.567 4.120 2.495 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 164 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.30 68.00 68.07 98.93 91.68 0 47319 12866 9646 0.204 0.204 0.272 0.750 0.937 0 257.3 9207 0 0 439 9646 -2983 6663 2983 0 2266 2842 3.577 4.063 2.463 + 12 4 12 1 45.44 68.30 68.00 68.06 98.97 91.68 0 47392 12839 8989 0.190 0.190 0.271 0.700 0.925 0 239.4 8581 0 0 409 8989 -2791 6199 2791 0 2128 2673 3.588 4.033 2.444 + 12 4 12 2 45.59 68.21 68.00 68.06 99.02 91.69 0 47465 12812 8315 0.175 0.175 0.270 0.649 0.912 0 221.2 7938 0 0 377 8315 -2587 5728 2587 0 1984 2498 3.599 4.002 2.426 + 12 4 12 3 45.74 68.20 68.00 68.05 99.05 91.68 0 47538 12786 7679 0.162 0.162 0.269 0.601 0.900 0 203.9 7331 0 0 348 7679 -2400 5279 2400 -0 1845 2330 3.609 3.973 2.407 + 12 4 12 4 45.89 68.09 68.00 68.04 99.10 91.69 0 47612 12759 7229 0.152 0.152 0.268 0.567 0.892 0 191.7 6902 0 0 327 7229 -2265 4964 2265 -0 1743 2207 3.620 3.960 2.398 + 12 4 12 5 46.04 68.10 68.00 68.03 99.12 91.67 0 47685 12732 6766 0.142 0.142 0.267 0.531 0.883 0 179.1 6460 0 0 306 6766 -2131 4635 2131 -0 1638 2080 3.631 3.945 2.385 + 12 4 13 0 46.40 67.93 68.00 68.03 99.24 91.70 0 47861 12668 5973 0.125 0.125 0.265 0.472 0.868 0 157.5 5704 0 0 269 5973 -1891 4082 1891 0 1449 1854 3.656 3.938 2.377 + 12 4 13 1 46.76 67.87 68.00 68.00 99.33 91.69 0 48036 12604 5441 0.113 0.113 0.262 0.432 0.858 0 143.0 5197 0 0 244 5441 -1739 3702 1739 0 1314 1695 3.683 3.954 2.376 + 12 4 13 2 47.12 67.83 68.00 67.98 99.39 91.68 0 48154 12562 4936 0.103 0.103 0.261 0.393 0.848 0 129.4 4715 0 0 221 4936 -1586 3350 1586 0 1193 1551 3.700 3.951 2.369 + 12 4 13 3 47.48 67.75 68.00 67.98 99.38 91.66 0 48154 12562 4565 .0948 .0948 0.261 0.363 0.841 0 119.7 4361 0 0 204 4565 -1469 3096 1469 0 1113 1454 3.700 3.917 2.350 + 12 4 13 4 47.84 67.69 68.00 67.96 99.37 91.64 0 48154 12562 4366 .0907 .0907 0.261 0.348 0.837 0 114.4 4170 0 0 195 4366 -1408 2957 1408 0 1070 1401 3.700 3.898 2.338 + 12 4 13 5 48.20 67.63 68.00 67.95 99.35 91.62 0 48154 12562 4203 .0873 .0873 0.261 0.335 0.834 0 110.2 4015 0 0 188 4203 -1358 2845 1358 0 1034 1358 3.700 3.883 2.328 + 12 4 14 0 48.47 67.62 68.00 67.94 99.34 91.60 0 48154 12562 4235 .0879 .0879 0.261 0.337 0.834 0 111.0 4045 0 0 189 4235 -1371 2864 1371 0 1041 1367 3.700 3.886 2.328 + 12 4 14 1 48.74 67.54 68.00 67.93 99.34 91.59 0 48154 12562 4271 .0887 .0887 0.261 0.340 0.835 0 112.0 4080 0 0 191 4271 -1383 2888 1383 0 1049 1376 3.700 3.890 2.329 + 12 4 14 2 49.01 67.58 68.00 67.92 99.33 91.57 0 48154 12562 4223 .0877 .0877 0.261 0.336 0.834 0 110.7 4034 0 0 189 4223 -1370 2852 1370 0 1038 1364 3.700 3.885 2.325 + 12 4 14 3 49.28 67.64 68.00 67.93 99.33 91.58 0 48154 12562 4076 .0847 .0847 0.261 0.325 0.831 0 106.9 3894 0 0 182 4076 -1322 2755 1322 0 1006 1325 3.700 3.872 2.319 + 12 4 14 4 49.55 67.56 68.00 67.94 99.34 91.59 0 48154 12562 3889 .0808 .0808 0.261 0.310 0.827 0 102.0 3715 0 0 174 3889 -1260 2630 1260 0 964 1274 3.700 3.854 2.311 + 12 4 14 5 49.82 67.57 68.00 67.92 99.33 91.57 0 48154 12562 3663 .0761 .0761 0.261 0.292 0.823 0 96.0 3499 0 0 164 3663 -1188 2474 1188 -0 913 1213 3.700 3.833 2.298 + 12 4 15 0 49.67 67.58 68.00 67.92 99.33 91.57 0 48154 12562 2518 .0523 .0523 0.261 0.200 0.800 0 66.0 2405 0 0 113 2518 -817 1701 817 0 645 894 3.700 3.727 2.244 + 12 4 15 1 49.52 67.57 68.00 67.92 99.33 91.57 0 48154 12562 2222 .0461 .0461 0.261 0.177 0.794 0 58.2 2122 0 0 99 2222 -721 1501 721 0 574 809 3.700 3.700 2.230 + 12 4 15 2 49.37 67.56 68.00 67.92 99.32 91.55 0 48154 12562 1989 .0413 .0413 0.261 0.158 0.790 0 52.2 1900 0 0 89 1989 -647 1343 647 0 517 742 3.700 3.678 2.217 + 12 4 15 3 49.22 67.52 68.00 67.91 99.32 91.54 0 48154 12562 2144 .0445 .0445 0.261 0.171 0.793 0 56.2 2048 0 0 96 2144 -697 1447 697 -0 555 787 3.700 3.693 2.224 + 12 4 15 4 49.07 67.55 68.00 67.90 99.31 91.53 0 48154 12562 2649 .0550 .0550 0.261 0.211 0.803 0 69.4 2530 0 0 118 2649 -863 1786 863 -0 677 932 3.700 3.739 2.246 + 12 4 15 5 48.92 67.92 68.00 67.91 99.31 91.54 0 48154 12562 3149 .0654 .0654 0.261 0.251 0.813 0 82.6 3008 0 0 141 3149 -1025 2124 1025 0 795 1072 3.700 3.786 2.271 + 12 4 16 0 48.59 67.66 68.00 67.97 99.37 91.64 0 48154 12562 4432 .0920 .0920 0.261 0.353 0.838 0 116.2 4234 0 0 198 4432 -1430 3002 1430 0 1084 1419 3.700 3.905 2.341 + 12 4 16 1 48.26 68.09 68.00 67.93 99.34 91.58 0 48154 12562 5037 0.105 0.105 0.261 0.401 0.850 0 132.0 4811 0 0 225 5037 -1633 3404 1633 0 1215 1577 3.700 3.961 2.364 + 12 4 16 2 47.93 68.19 68.00 68.00 99.41 91.70 0 48154 12562 5665 0.118 0.118 0.261 0.451 0.863 0 148.5 5411 0 0 253 5665 -1817 3848 1817 -0 1346 1736 3.700 4.019 2.405 + 12 4 16 3 47.60 68.29 68.00 68.03 99.43 91.75 0 48154 12562 6196 0.129 0.129 0.261 0.493 0.873 0 162.4 5919 0 0 277 6196 -1979 4217 1979 0 1455 1869 3.700 4.068 2.434 + 12 4 16 4 47.27 68.37 68.00 68.05 99.45 91.79 0 48154 12562 6627 0.138 0.138 0.261 0.528 0.882 0 173.7 6331 0 0 296 6627 -2110 4518 2110 0 1541 1974 3.700 4.108 2.459 + 12 4 16 5 46.94 68.39 68.00 68.07 99.46 91.82 0 48124 12572 7006 0.146 0.146 0.261 0.557 0.889 0 183.8 6693 0 0 314 7006 -2220 4786 2220 0 1620 2070 3.696 4.132 2.475 + 12 4 17 0 46.79 68.55 68.00 68.08 99.41 91.82 0 48051 12599 7336 0.153 0.153 0.262 0.582 0.896 0 192.7 7007 0 0 329 7336 -2318 5017 2318 0 1695 2161 3.685 4.133 2.479 + 12 4 17 1 46.64 68.63 68.00 68.11 99.40 91.86 0 47978 12626 7576 0.158 0.158 0.263 0.600 0.900 0 199.3 7236 0 0 340 7576 -2377 5199 2377 0 1754 2230 3.674 4.126 2.483 + 12 4 17 2 46.49 68.77 68.00 68.13 99.37 91.88 0 47905 12652 7763 0.162 0.162 0.264 0.614 0.903 0 204.6 7414 0 0 349 7763 -2423 5340 2423 -0 1802 2287 3.663 4.115 2.483 + 12 4 17 3 46.34 68.84 68.00 68.15 99.35 91.91 0 47831 12679 7996 0.167 0.167 0.265 0.631 0.908 0 211.0 7636 0 0 360 7996 -2479 5517 2479 0 1859 2355 3.652 4.108 2.486 + 12 4 17 4 46.19 68.98 68.00 68.17 99.31 91.93 0 47758 12706 8169 0.171 0.171 0.266 0.643 0.911 0 215.9 7800 0 0 368 8169 -2521 5648 2521 0 1905 2410 3.641 4.095 2.485 + 12 4 17 5 46.04 69.04 68.00 68.19 99.29 91.96 0 47685 12732 8390 0.176 0.176 0.267 0.659 0.915 0 222.1 8011 0 0 379 8390 -2572 5818 2572 0 1960 2475 3.631 4.088 2.487 + 12 4 18 0 45.47 69.17 68.00 68.21 99.12 91.93 0 47407 12834 8151 0.172 0.172 0.271 0.635 0.909 0 217.0 7781 0 0 370 8151 -2472 5678 2472 0 1961 2468 3.590 3.967 2.435 + 12 4 18 1 44.90 69.20 68.00 68.23 98.97 91.92 0 47128 12935 8410 0.178 0.178 0.274 0.650 0.913 0 225.3 8026 0 0 384 8410 -2519 5891 2519 0 2061 2581 3.550 3.895 2.409 + 12 4 18 2 44.33 69.31 68.00 68.24 98.79 91.88 0 46850 13036 8681 0.185 0.185 0.278 0.666 0.916 0 233.9 8282 0 0 399 8681 -2575 6106 2575 -0 2164 2699 3.510 3.828 2.383 + 12 4 18 3 43.76 69.44 68.00 68.25 98.63 91.86 0 46571 13138 8945 0.192 0.192 0.282 0.681 0.920 0 242.5 8532 0 0 414 8945 -2622 6323 2622 0 2267 2817 3.471 3.764 2.359 + 12 4 18 4 43.19 69.56 68.00 68.28 98.47 91.84 0 46293 13240 9204 0.199 0.199 0.286 0.695 0.924 0 251.0 8776 0 0 428 9204 -2664 6541 2664 0 2370 2934 3.432 3.703 2.338 + 12 4 18 5 42.62 69.70 68.00 68.30 98.31 91.81 0 46015 13341 9489 0.206 0.206 0.290 0.711 0.928 0 260.3 9045 0 0 444 9489 -2712 6777 2712 0 2479 3060 3.393 3.648 2.318 + 12 4 19 0 42.20 69.75 68.00 68.32 98.20 91.81 0 45810 13417 9438 0.206 0.206 0.293 0.703 0.926 0 260.1 8995 0 0 444 9438 -2668 6771 2668 0 2505 3086 3.365 3.590 2.296 + 12 4 19 1 41.78 69.74 68.00 68.33 98.08 91.79 0 45605 13492 9627 0.211 0.211 0.296 0.714 0.928 0 266.5 9172 0 0 455 9627 -2697 6930 2697 -0 2583 3174 3.337 3.551 2.282 + 12 4 19 2 41.36 69.75 68.00 68.33 97.94 91.74 0 45399 13567 9819 0.216 0.216 0.299 0.724 0.931 0 273.0 9354 0 0 466 9819 -2733 7087 2733 0 2661 3264 3.309 3.515 2.266 + 12 4 19 3 40.94 69.76 68.00 68.34 97.81 91.70 0 45194 13642 10007 0.221 0.221 0.302 0.734 0.933 0 279.5 9531 0 0 477 10007 -2765 7242 2765 0 2740 3353 3.281 3.479 2.252 + 12 4 19 4 40.52 69.72 68.00 68.34 97.68 91.66 0 44989 13717 10212 0.227 0.227 0.305 0.744 0.936 0 286.5 9723 0 0 489 10212 -2801 7411 2801 0 2822 3448 3.254 3.445 2.238 + 12 4 19 5 40.10 69.71 68.00 68.33 97.54 91.60 0 44784 13793 10397 0.232 0.232 0.308 0.754 0.938 0 293.1 9897 0 0 500 10397 -2836 7561 2836 0 2901 3537 3.227 3.412 2.223 + 12 4 20 0 40.37 69.68 68.00 68.34 97.63 91.64 0 44916 13744 10597 0.236 0.236 0.306 0.771 0.943 0 297.8 10089 0 0 508 10597 -2900 7698 2900 -0 2921 3565 3.244 3.454 2.245 + 12 4 20 1 40.64 69.72 68.00 68.33 97.71 91.67 0 45048 13696 10604 0.235 0.235 0.304 0.774 0.944 0 297.1 10097 0 0 507 10604 -2914 7690 2914 -0 2897 3541 3.262 3.485 2.259 + 12 4 20 2 40.91 69.77 68.00 68.34 97.81 91.72 0 45180 13648 10582 0.234 0.234 0.302 0.775 0.944 0 295.7 10077 0 0 504 10582 -2914 7668 2914 0 2867 3508 3.279 3.514 2.274 + 12 4 20 3 41.18 69.63 68.00 68.35 97.90 91.77 0 45312 13599 10600 0.234 0.234 0.300 0.779 0.945 0 295.3 10097 0 0 504 10600 -2926 7674 2926 0 2846 3487 3.297 3.547 2.291 + 12 4 20 4 41.45 69.78 68.00 68.33 97.97 91.77 0 45443 13551 10524 0.232 0.232 0.298 0.777 0.944 0 292.3 10025 0 0 499 10524 -2927 7598 2927 0 2805 3440 3.315 3.574 2.300 + 12 4 20 5 41.72 69.72 68.00 68.36 98.08 91.84 0 45575 13502 10503 0.230 0.230 0.296 0.778 0.944 0 290.9 10007 0 0 496 10503 -2920 7582 2920 0 2775 3408 3.333 3.606 2.318 + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 165 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.84 68.00 68.35 97.94 91.78 0 45370 13578 10890 0.240 0.240 0.299 0.802 0.951 0 303.0 10373 0 0 517 10890 -3014 7876 3014 -0 2896 3550 3.305 3.582 2.307 + 12 4 21 1 40.88 69.90 68.00 68.37 97.82 91.76 0 45165 13653 11035 0.244 0.244 0.302 0.808 0.952 0 308.4 10509 0 0 526 11035 -3026 8010 3026 0 2967 3630 3.277 3.542 2.293 + 12 4 21 2 40.46 69.88 68.00 68.38 97.70 91.72 0 44960 13728 11179 0.249 0.249 0.305 0.814 0.954 0 313.9 10643 0 0 535 11179 -3039 8140 3039 0 3038 3710 3.250 3.503 2.278 + 12 4 21 3 40.04 69.88 68.00 68.37 97.56 91.67 0 44755 13804 11343 0.253 0.253 0.308 0.822 0.955 0 319.9 10797 0 0 546 11343 -3065 8278 3065 0 3114 3796 3.223 3.467 2.262 + 12 4 21 4 39.62 69.88 68.00 68.37 97.43 91.62 0 44550 13879 11514 0.258 0.258 0.312 0.830 0.957 0 326.3 10957 0 0 557 11514 -3090 8423 3090 0 3192 3885 3.196 3.433 2.247 + 12 4 21 5 39.20 69.87 68.00 68.37 97.29 91.56 0 44345 13955 11680 0.263 0.263 0.315 0.837 0.959 0 332.5 11113 0 0 567 11680 -3116 8564 3116 -0 3269 3972 3.169 3.400 2.233 + 12 4 22 0 39.29 69.89 68.00 68.37 97.32 91.58 0 44389 13938 12369 0.279 0.279 0.314 0.887 0.972 0 351.8 11769 0 0 600 12369 -3301 9068 3301 0 3408 4145 3.175 3.453 2.262 + 12 4 22 1 39.38 69.97 68.00 68.37 97.35 91.60 0 44433 13922 12472 0.281 0.281 0.313 0.896 0.974 0 354.3 11868 0 0 605 12472 -3331 9141 3331 0 3421 4162 3.180 3.469 2.271 + 12 4 22 2 39.47 70.02 68.00 68.39 97.40 91.64 0 44477 13906 12541 0.282 0.282 0.313 0.902 0.975 0 355.9 11934 0 0 607 12541 -3342 9198 3342 -0 3426 4170 3.186 3.483 2.281 + 12 4 22 3 39.56 70.03 68.00 68.40 97.44 91.67 0 44520 13890 12604 0.283 0.283 0.312 0.907 0.977 0 357.4 11994 0 0 610 12604 -3357 9247 3357 0 3430 4176 3.192 3.497 2.289 + 12 4 22 4 39.65 69.99 68.00 68.41 97.47 91.69 0 44564 13874 12662 0.284 0.284 0.311 0.913 0.978 0 358.7 12050 0 0 612 12662 -3374 9287 3374 0 3432 4181 3.198 3.511 2.296 + 12 4 22 5 39.74 70.15 68.00 68.40 97.49 91.69 0 44608 13858 12613 0.283 0.283 0.311 0.910 0.978 0 356.9 12005 0 0 609 12613 -3369 9244 3369 0 3413 4158 3.204 3.517 2.299 + 12 4 23 0 39.59 70.24 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.69 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.26 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.11 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.85 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.69 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 005: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 005: + + + ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE + FIXRPTITLES("RSYS -- Aux Alt / Def RevCycle") + + RUN + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 005 Sat 01-Jan-22 2:52:46 pm Page 166 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 006: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 55 subhours of run. + Total condensation heat = 0.0547142 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.774 0 0.270 0.164 0 0 0 0 0.0564 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.375 0 1.116 0.670 0 0 0 0 0.227 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.316 0 1.140 0.575 0 0 0 0 0.235 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.586 0 0.722 0.563 0 0 0 0 0.155 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.328 0 0.0835 0.0331 0 0 0 0 0.0172 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.320 0 0.0789 0.0898 0 0 0 0 0.0184 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Lockout / Def RevCycle + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 70.069 3.283 1.024 0 0.164 0.0564 1.245 0 0 0 0 0 0 0 0 0 0 0.270 0 0.164 0.0564 0.0359 0.527 0 0 0 0 0 0 0 0.876 -.0074 0 0 0 0 + Dec 271.16 13.394 4.027 0 0.670 0.227 4.924 0 0 0 0 0 0 0 0 0 0 1.116 0 0.670 0.227 0.0605 2.073 0 0 0 0 0 0 0 3.610 -.0275 0 0 0 0 + Jan 298.48 11.508 4.370 0 0.575 0.235 5.180 0 0 0 0 0 0 0 0 0 0 1.140 0 0.575 0.235 0.0760 2.026 0 0 0 0 0 0 0 3.814 -.0312 0 0 0 0 + Feb 176.77 11.256 2.707 0 0.563 0.155 3.425 0 0 0 0 0 0 0 0 0 0 0.722 0 0.563 0.155 0.0498 1.490 0 0 0 0 0 0 0 2.490 -.0182 0 0 0 0 + Mar 24.437 0.663 0.336 0 0.0331 0.0172 0.387 0 0 0 0 0 0 0 0 0 0 0.0835 0 0.0331 0.0172 .00887 0.143 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 20.343 1.795 0.302 0 0.0898 0.0184 0.410 0 0 0 0 0 0 0 0 0 0 0.0789 0 0.0898 0.0184 0.0180 0.205 0 0 0 0 0 0 0 0.289 -.0015 0 0 0 0 + + Yr 861.27 41.900 12.767 0 2.095 0.709 15.571 0 0 0 0 0 0 0 0 0 0 3.410 0 2.095 0.709 0.249 6.463 0 0 0 0 0 0 0 11.345 -.0896 0 0 0 0 + + + +RSYS -- Aux Lockout / Def RevCycle + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.270 0.164 0.0564 0.527 0.876 1.663 0.527 0.876 1.663 0 0 0 0 0 0 0 + Dec 1.116 0.670 0.227 2.073 3.610 1.741 2.073 3.610 1.741 0 0 0 0 0 0 -.0078 + Jan 1.140 0.575 0.235 2.026 3.814 1.883 2.026 3.814 1.883 0 0 0 0 0 0 0 + Feb 0.722 0.563 0.155 1.490 2.490 1.672 1.490 2.490 1.672 0 0 0 0 0 0 -.0039 + Mar 0.0835 0.0331 0.0172 0.143 0.265 1.858 0.143 0.265 1.858 0 0 0 0 0 0 -.0020 + Apr 0.0789 0.0898 0.0184 0.205 0.289 1.410 0.205 0.289 1.410 0 0 0 0 0 0 -.0020 + + Yr 3.410 2.095 0.709 6.463 11.345 1.755 6.463 11.345 1.755 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 167 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Lockout / Def RevCycle for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.770 0 0.335 2.241 4.700 2.098 2.241 4.700 2.098 0 0 0 0 0 0 -0.000 + 8 6.157 8.333 1.466 16.093 25.378 1.577 16.093 25.378 1.577 0 0 0 0 0 0 -0.000 + 9 4.707 0 0.891 5.735 14.015 2.444 5.735 14.015 2.444 0 0 0 0 0 0 -0.000 + 10 3.934 0 0.764 4.834 11.600 2.399 4.834 11.600 2.399 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.148 9.799 2.362 4.148 9.799 2.362 0 0 0 0 0 0 -0.000 + 12 2.899 0 0.595 3.630 8.453 2.328 3.630 8.453 2.328 0 0 0 0 0 0 -0.000 + 13 2.362 0 0.502 3.000 7.080 2.360 3.000 7.080 2.360 0 0 0 0 0 0 -0.000 + 14 1.979 0 0.401 2.379 5.689 2.391 2.379 5.689 2.391 0 0 0 0 0 0 0 + 15 1.975 0 0.400 2.375 5.699 2.399 2.375 5.699 2.399 0 0 0 0 0 0 0 + 16 1.963 0 0.397 2.359 5.690 2.412 2.359 5.690 2.412 0 0 0 0 0 0 0 + 17 1.978 0 0.401 2.379 5.774 2.427 2.379 5.774 2.427 0 0 0 0 0 0 0 + 18 1.953 0 0.394 2.347 5.704 2.431 2.347 5.704 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.383 5.444 2.285 2.383 5.444 2.285 0 0 0 0 0 0 -0.000 + 20 1.835 0 0.365 2.336 5.360 2.294 2.336 5.360 2.294 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.502 2.315 2.376 5.502 2.315 0 0 0 0 0 0 -0.000 + 22 2.073 0 0.418 2.628 6.183 2.353 2.628 6.183 2.353 0 0 0 0 0 0 -0.000 + 23 2.386 0 0.482 3.004 7.159 2.383 3.004 7.159 2.383 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Lockout / Def RevCycle for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.769 0 0.845 5.750 12.596 2.190 5.750 12.596 2.190 0 0 0 0 0 0 -0.000 + 8 5.811 16.667 1.698 24.312 30.347 1.248 24.312 30.347 1.248 0 0 0 0 0 0 -0.000 + 9 6.139 0 1.065 7.340 17.263 2.352 7.340 17.263 2.352 0 0 0 0 0 0 -0.000 + 10 4.512 0 0.820 5.469 12.969 2.372 5.469 12.969 2.372 0 0 0 0 0 0 -0.000 + 11 3.729 0 0.704 4.570 10.931 2.392 4.570 10.931 2.392 0 0 0 0 0 0 -0.000 + 12 3.208 0 0.628 3.973 9.642 2.427 3.973 9.642 2.427 0 0 0 0 0 0 -0.000 + 13 2.280 0 0.476 2.892 7.195 2.488 2.892 7.195 2.488 0 0 0 0 0 0 -0.000 + 14 2.007 0 0.408 2.551 6.174 2.421 2.551 6.174 2.421 0 0 0 0 0 0 -0.000 + 15 1.935 0 0.390 2.461 5.937 2.412 2.461 5.937 2.412 0 0 0 0 0 0 -0.000 + 16 1.338 0 0.252 1.727 3.851 2.230 1.727 3.851 2.230 0 0 0 0 0 0 -0.000 + 17 1.799 0 0.357 2.292 5.464 2.384 2.292 5.464 2.384 0 0 0 0 0 0 -0.000 + 18 1.978 0 0.399 2.514 6.172 2.455 2.514 6.172 2.455 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 168 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.136 0 0.412 2.684 6.353 2.367 2.684 6.353 2.367 0 0 0 0 0 0 -0.000 + 20 2.584 0 0.467 3.188 7.135 2.238 3.188 7.135 2.238 0 0 0 0 0 0 -0.000 + 21 2.955 0 0.525 3.616 8.007 2.214 3.616 8.007 2.214 0 0 0 0 0 0 -0.000 + 22 3.291 0 0.580 4.007 8.866 2.213 4.007 8.866 2.213 0 0 0 0 0 0 -0.000 + 23 3.821 0 0.668 4.625 10.159 2.196 4.625 10.159 2.196 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Lockout / Def RevCycle for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.668 0 0.0878 0.892 1.285 1.441 0.892 1.285 1.441 0 0 0 0 0 0 -0.000 + 6 1.965 0 0.267 2.368 3.917 1.654 2.368 3.917 1.654 0 0 0 0 0 0 -0.000 + 7 5.811 15.526 1.540 23.013 27.065 1.176 23.013 27.065 1.176 0 0 0 0 0 0 -0.000 + 8 4.223 33.172 2.066 39.597 39.215 0.990 39.597 39.215 0.990 0 0 0 0 0 0 -0.000 + 9 7.961 0 1.251 9.349 19.788 2.117 9.349 19.788 2.117 0 0 0 0 0 0 -0.000 + 10 3.877 0 0.667 4.681 10.089 2.155 4.681 10.089 2.155 0 0 0 0 0 0 -0.000 + 11 1.975 0 0.349 2.461 5.291 2.150 2.461 5.291 2.150 0 0 0 0 0 0 -0.000 + 12 1.390 0 0.250 1.776 3.796 2.137 1.776 3.796 2.137 0 0 0 0 0 0 -0.000 + 13 0.897 0 0.160 1.194 2.424 2.031 1.194 2.424 2.031 0 0 0 0 0 0 -0.000 + 14 0.424 0 0.0725 0.633 1.089 1.720 0.633 1.089 1.720 0 0 0 0 0 0 -0.000 + 15 0.0329 0 .00542 0.175 0.0809 0.463 0.175 0.0809 0.463 0 0 0 0 0 0 -0.000 + 16 0.0202 0 .00335 0.160 0.0493 0.308 0.160 0.0493 0.308 0 0 0 0 0 0 -0.000 + 17 0.610 0 0.106 0.852 1.563 1.834 0.852 1.563 1.834 0 0 0 0 0 0 -0.000 + 18 1.734 0 0.317 2.188 4.696 2.146 2.188 4.696 2.146 0 0 0 0 0 0 -0.000 + 19 2.462 0 0.427 3.025 6.316 2.088 3.025 6.316 2.088 0 0 0 0 0 0 -0.000 + 20 3.097 0 0.523 3.756 7.711 2.053 3.756 7.711 2.053 0 0 0 0 0 0 -0.000 + 21 3.435 0 0.582 4.153 8.610 2.073 4.153 8.610 2.073 0 0 0 0 0 0 -0.000 + 22 3.898 0 0.660 4.694 9.728 2.072 4.694 9.728 2.072 0 0 0 0 0 0 -0.000 + 23 4.412 0 0.745 5.294 11.015 2.081 5.294 11.015 2.081 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 40140 42500 31130 3.70 2.91 2.60 2.32 4.45 3.03 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 169 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 252 111 363 1245 876 6 0 0 0 0 0 0 0 + Dec 67.53 887 412 1298 4924 3610 15 0 0 0 0 0 0 0 + Jan 67.52 933 417 1351 5180 3814 15 0 0 0 0 0 0 0 + Feb 67.64 622 298 920 3425 2490 14 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 387 265 2 0 0 0 0 0 0 0 + Apr 69.33 80 38 118 410 289 3 0 0 0 0 0 0 0 + + Yr 68.43 2862 1309 4171 15571 11345 55 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 170 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.45 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 77 36 113 422 309 -0 0 0 0 0 0 0 0 + 1 65.00 90 43 133 497 364 0 0 0 0 0 0 0 0 + 2 65.00 101 48 149 561 413 0 0 0 0 0 0 0 0 + 3 65.00 116 55 171 646 475 0 0 0 0 0 0 0 0 + 4 65.00 128 61 189 714 525 -0 0 0 0 0 0 0 0 + 5 65.00 141 67 209 788 579 0 0 0 0 0 0 0 0 + 6 65.00 154 74 228 860 632 0 0 0 0 0 0 0 0 + 1 65.96 636 832 1468 8692 7004 220 0 0 0 0 0 0 0 + 2 66.50 544 703 1247 7167 5817 103 0 0 0 0 0 0 0 + 3 66.50 495 329 824 3888 3063 -0 0 0 0 0 0 0 0 + 4 66.50 492 335 827 3916 3089 0 0 0 0 0 0 0 0 + 5 66.50 505 353 858 3950 3092 0 0 0 0 0 0 0 0 + 6 66.50 499 325 824 3691 2867 0 0 0 0 0 0 0 0 + 1 67.10 624 813 1437 8692 7118 137 0 0 0 0 0 0 0 + 2 67.55 636 823 1459 8692 7130 103 0 0 0 0 0 0 0 + 3 67.89 622 800 1422 8692 7191 79 0 0 0 0 0 0 0 + 4 68.00 509 651 1160 7115 5929 25 0 0 0 0 0 0 0 + 5 68.00 503 552 1055 6112 5057 0 0 0 0 0 0 0 0 + 6 68.00 502 503 1005 5553 4548 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 171 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 502 445 947 4944 3996 0 0 0 0 0 0 0 0 + 2 68.00 491 385 876 4380 3505 0 0 0 0 0 0 0 0 + 3 68.00 488 332 820 3844 3024 -0 0 0 0 0 0 0 0 + 4 68.00 490 288 778 3412 2634 0 0 0 0 0 0 0 0 + 5 68.00 492 251 742 3038 2296 -0 0 0 0 0 0 0 0 + 6 68.00 493 216 709 2696 1987 0 0 0 0 0 0 0 0 + 1 68.00 491 196 687 2490 1804 0 0 0 0 0 0 0 0 + 2 68.00 487 173 660 2257 1597 -0 0 0 0 0 0 0 0 + 3 68.00 438 152 591 2000 1409 0 0 0 0 0 0 0 0 + 4 68.00 399 137 536 1797 1261 0 0 0 0 0 0 0 0 + 5 68.00 362 122 483 1598 1114 0 0 0 0 0 0 0 0 + 6 68.00 326 108 434 1413 980 0 0 0 0 0 0 0 0 + 1 68.00 318 104 422 1354 932 -0 0 0 0 0 0 0 0 + 2 68.00 289 93 382 1208 826 0 0 0 0 0 0 0 0 + 3 68.00 261 83 343 1075 731 0 0 0 0 0 0 0 0 + 4 68.00 234 73 307 948 640 0 0 0 0 0 0 0 0 + 5 68.00 210 65 274 835 561 0 0 0 0 0 0 0 0 + 6 68.00 182 56 239 721 483 0 0 0 0 0 0 0 0 + 1 68.00 200 61 261 785 524 0 0 0 0 0 0 0 0 + 2 68.00 178 55 233 698 465 0 0 0 0 0 0 0 0 + 3 68.00 155 48 203 608 405 0 0 0 0 0 0 0 0 + 4 68.00 134 41 175 525 349 -0 0 0 0 0 0 0 0 + 5 68.00 114 35 149 446 296 -0 0 0 0 0 0 0 0 + 6 68.00 94 29 123 367 243 -0 0 0 0 0 0 0 0 + 1 68.00 58 18 76 225 149 0 0 0 0 0 0 0 0 + 2 68.00 35 11 46 136 90 0 0 0 0 0 0 0 0 + 3 68.00 13 4 17 51 34 0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 172 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 6 2 7 20 13 -0 0 0 0 0 0 0 0 + 1 68.00 72 21 94 257 163 0 0 0 0 0 0 0 0 + 2 68.00 89 26 115 315 200 0 0 0 0 0 0 0 0 + 3 68.00 96 29 125 342 217 0 0 0 0 0 0 0 0 + 4 68.00 111 33 143 393 250 0 0 0 0 0 0 0 0 + 5 68.00 121 36 157 430 273 0 0 0 0 0 0 0 0 + 6 68.00 135 40 175 478 303 0 0 0 0 0 0 0 0 + 1 68.00 134 40 174 474 300 0 0 0 0 0 0 0 0 + 2 68.00 151 45 195 533 338 -0 0 0 0 0 0 0 0 + 3 68.00 163 48 211 574 363 0 0 0 0 0 0 0 0 + 4 68.00 179 53 232 631 399 0 0 0 0 0 0 0 0 + 5 68.00 191 57 248 672 424 0 0 0 0 0 0 0 0 + 6 68.00 207 61 269 729 461 0 0 0 0 0 0 0 0 + 1 68.00 232 69 301 816 515 0 0 0 0 0 0 0 0 + 2 68.00 249 74 323 875 552 -0 0 0 0 0 0 0 0 + 3 68.00 265 79 344 933 589 0 0 0 0 0 0 0 0 + 4 68.00 277 82 359 976 617 0 0 0 0 0 0 0 0 + 5 68.00 291 86 377 1027 650 0 0 0 0 0 0 0 0 + 6 68.00 301 90 391 1075 684 0 0 0 0 0 0 0 0 + 1 68.00 327 99 426 1182 756 0 0 0 0 0 0 0 0 + 2 68.00 337 103 440 1233 793 -0 0 0 0 0 0 0 0 + 3 68.00 346 108 453 1282 829 0 0 0 0 0 0 0 0 + 4 68.00 355 112 467 1332 866 -0 0 0 0 0 0 0 0 + 5 68.00 364 116 480 1382 902 0 0 0 0 0 0 0 0 + 6 68.00 372 121 492 1430 938 -0 0 0 0 0 0 0 0 + 1 68.00 409 134 543 1590 1047 0 0 0 0 0 0 0 0 + 2 68.00 417 138 555 1641 1085 0 0 0 0 0 0 0 0 + 3 68.00 422 142 564 1685 1121 0 0 0 0 0 0 0 0 + 4 68.00 429 146 575 1733 1158 -0 0 0 0 0 0 0 0 + 5 68.00 435 150 585 1779 1194 0 0 0 0 0 0 0 0 + 6 68.00 439 153 593 1819 1227 0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 173 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 48 22 70 232 162 -0 0 0 0 0 0 0 0 + 4 65.00 122 57 179 596 417 0 0 0 0 0 0 0 0 + 5 65.00 140 66 206 690 483 0 0 0 0 0 0 0 0 + 6 65.00 156 73 229 775 545 -0 0 0 0 0 0 0 0 + 1 65.95 714 904 1618 8692 6855 219 0 0 0 0 0 0 0 + 2 66.50 608 762 1369 7170 5697 104 0 0 0 0 0 0 0 + 3 66.50 561 348 909 3805 2896 -0 0 0 0 0 0 0 0 + 4 66.50 557 357 914 3843 2928 -0 0 0 0 0 0 0 0 + 5 66.50 573 390 962 3997 3035 0 0 0 0 0 0 0 0 + 6 66.50 565 360 925 3753 2828 0 0 0 0 0 0 0 0 + 1 67.11 690 872 1562 8692 6990 140 0 0 0 0 0 0 0 + 2 67.57 699 880 1579 8692 7007 106 0 0 0 0 0 0 0 + 3 67.93 682 853 1534 8692 7076 82 0 0 0 0 0 0 0 + 4 68.00 569 654 1222 6656 5418 15 0 0 0 0 0 0 0 + 5 68.00 560 569 1129 5869 4740 0 0 0 0 0 0 0 0 + 6 68.00 558 512 1070 5293 4223 0 0 0 0 0 0 0 0 + 1 68.00 555 451 1006 4712 3706 0 0 0 0 0 0 0 0 + 2 68.00 545 389 934 4153 3220 0 0 0 0 0 0 0 0 + 3 68.00 536 337 873 3662 2789 0 0 0 0 0 0 0 0 + 4 68.00 530 292 822 3243 2421 0 0 0 0 0 0 0 0 + 5 68.00 530 254 784 2894 2110 0 0 0 0 0 0 0 0 + 6 68.00 529 221 750 2593 1843 0 0 0 0 0 0 0 0 + 1 68.00 526 203 728 2420 1692 0 0 0 0 0 0 0 0 + 2 68.00 491 180 671 2177 1505 0 0 0 0 0 0 0 0 + 3 68.00 442 160 602 1941 1339 0 0 0 0 0 0 0 0 + 4 68.00 398 142 540 1723 1183 0 0 0 0 0 0 0 0 + 5 68.00 360 127 487 1539 1052 -0 0 0 0 0 0 0 0 + 6 68.00 324 113 437 1365 928 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 174 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 352 120 472 1453 981 0 0 0 0 0 0 0 0 + 2 68.00 326 108 434 1318 884 0 0 0 0 0 0 0 0 + 3 68.00 296 97 393 1185 791 -0 0 0 0 0 0 0 0 + 4 68.00 268 86 354 1054 700 0 0 0 0 0 0 0 0 + 5 68.00 242 76 318 937 619 0 0 0 0 0 0 0 0 + 6 68.00 215 66 281 816 535 -0 0 0 0 0 0 0 0 + 1 68.00 213 64 277 800 523 0 0 0 0 0 0 0 0 + 2 68.00 194 58 252 722 470 0 0 0 0 0 0 0 0 + 3 68.00 177 53 230 662 432 0 0 0 0 0 0 0 0 + 4 68.00 155 46 201 577 375 -0 0 0 0 0 0 0 0 + 5 68.00 140 42 182 525 343 0 0 0 0 0 0 0 0 + 6 68.00 121 36 157 453 295 0 0 0 0 0 0 0 0 + 1 68.00 88 26 114 329 215 0 0 0 0 0 0 0 0 + 2 68.00 66 20 86 246 160 -0 0 0 0 0 0 0 0 + 3 68.00 52 15 67 192 125 0 0 0 0 0 0 0 0 + 4 68.00 32 9 41 117 76 0 0 0 0 0 0 0 0 + 5 68.00 16 5 21 59 38 0 0 0 0 0 0 0 0 + 6 68.00 1 0 1 3 2 -0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 62 18 80 230 150 -0 0 0 0 0 0 0 0 + 5 68.00 137 41 178 509 330 0 0 0 0 0 0 0 0 + 6 68.00 152 46 198 571 373 0 0 0 0 0 0 0 0 + 1 68.00 151 45 196 568 372 0 0 0 0 0 0 0 0 + 2 68.00 176 53 229 666 436 0 0 0 0 0 0 0 0 + 3 68.00 197 61 258 760 502 -0 0 0 0 0 0 0 0 + 4 68.00 215 68 283 850 567 0 0 0 0 0 0 0 0 + 5 68.00 233 76 309 945 636 0 0 0 0 0 0 0 0 + 6 68.00 249 84 333 1040 707 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 175 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 249 84 333 1050 716 0 0 0 0 0 0 0 0 + 2 68.00 258 88 346 1096 750 0 0 0 0 0 0 0 0 + 3 68.00 266 91 357 1135 778 0 0 0 0 0 0 0 0 + 4 68.00 275 94 369 1179 810 0 0 0 0 0 0 0 0 + 5 68.00 281 97 378 1210 832 0 0 0 0 0 0 0 0 + 6 68.00 290 100 390 1253 863 0 0 0 0 0 0 0 0 + 1 68.00 303 106 410 1321 911 0 0 0 0 0 0 0 0 + 2 68.00 308 109 417 1351 933 0 0 0 0 0 0 0 0 + 3 68.00 317 113 430 1401 972 0 0 0 0 0 0 0 0 + 4 68.00 321 116 437 1429 992 0 0 0 0 0 0 0 0 + 5 68.00 330 120 450 1480 1030 0 0 0 0 0 0 0 0 + 6 68.00 334 123 457 1504 1047 0 0 0 0 0 0 0 0 + 1 68.00 353 128 481 1579 1098 -0 0 0 0 0 0 0 0 + 2 68.00 359 130 488 1594 1106 0 0 0 0 0 0 0 0 + 3 68.00 364 130 494 1606 1112 -0 0 0 0 0 0 0 0 + 4 68.00 369 131 500 1615 1115 0 0 0 0 0 0 0 0 + 5 68.00 373 132 505 1622 1117 0 0 0 0 0 0 0 0 + 6 68.00 377 132 509 1622 1113 0 0 0 0 0 0 0 0 + 1 68.00 407 142 550 1753 1203 -0 0 0 0 0 0 0 0 + 2 68.00 413 145 558 1779 1222 0 0 0 0 0 0 0 0 + 3 68.00 417 146 564 1802 1239 0 0 0 0 0 0 0 0 + 4 68.00 418 146 564 1807 1243 0 0 0 0 0 0 0 0 + 5 68.00 420 147 567 1825 1259 0 0 0 0 0 0 0 0 + 6 68.00 422 148 570 1841 1271 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 176 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 13 6 19 65 47 -0 0 0 0 0 0 0 0 + 2 65.00 101 46 147 509 362 0 0 0 0 0 0 0 0 + 3 65.00 115 53 167 578 411 0 0 0 0 0 0 0 0 + 4 65.00 127 58 185 644 459 0 0 0 0 0 0 0 0 + 5 65.00 140 65 205 713 509 0 0 0 0 0 0 0 0 + 6 65.00 155 71 226 785 559 -0 0 0 0 0 0 0 0 + 1 65.96 682 874 1556 8692 6917 220 0 0 0 0 0 0 0 + 2 66.50 578 733 1311 7127 5713 103 0 0 0 0 0 0 0 + 3 66.50 532 337 869 3817 2948 -0 0 0 0 0 0 0 0 + 4 66.50 530 353 883 3926 3043 0 0 0 0 0 0 0 0 + 5 66.50 544 379 923 4018 3095 0 0 0 0 0 0 0 0 + 6 66.50 537 349 886 3767 2881 0 0 0 0 0 0 0 0 + 1 67.09 662 847 1509 8692 7047 136 0 0 0 0 0 0 0 + 2 67.53 672 855 1527 8692 7065 101 0 0 0 0 0 0 0 + 3 67.87 655 828 1483 8692 7132 77 0 0 0 0 0 0 0 + 4 68.00 553 703 1256 7397 6115 26 0 0 0 0 0 0 0 + 5 68.00 535 587 1122 6213 5091 0 0 0 0 0 0 0 0 + 6 68.00 531 533 1065 5681 4616 0 0 0 0 0 0 0 0 + 1 68.00 531 473 1003 5073 4070 0 0 0 0 0 0 0 0 + 2 68.00 521 415 937 4535 3598 -0 0 0 0 0 0 0 0 + 3 68.00 514 367 881 4066 3185 0 0 0 0 0 0 0 0 + 4 68.00 513 329 842 3705 2863 -0 0 0 0 0 0 0 0 + 5 68.00 515 298 813 3412 2599 -0 0 0 0 0 0 0 0 + 6 68.00 516 273 789 3177 2388 0 0 0 0 0 0 0 0 + 1 68.00 516 265 781 3112 2331 -0 0 0 0 0 0 0 0 + 2 68.00 515 249 764 2966 2201 0 0 0 0 0 0 0 0 + 3 68.00 514 237 751 2849 2098 0 0 0 0 0 0 0 0 + 4 68.00 514 226 741 2743 2003 0 0 0 0 0 0 0 0 + 5 68.00 515 218 732 2656 1923 0 0 0 0 0 0 0 0 + 6 68.00 516 209 725 2562 1837 0 0 0 0 0 0 0 0 + 1 68.00 516 209 725 2577 1851 -0 0 0 0 0 0 0 0 + 2 68.00 514 204 718 2524 1806 -0 0 0 0 0 0 0 0 + 3 68.00 512 199 711 2476 1765 0 0 0 0 0 0 0 0 + 4 68.00 511 194 704 2426 1722 0 0 0 0 0 0 0 0 + 5 68.00 509 187 695 2357 1662 0 0 0 0 0 0 0 0 + 6 68.00 505 180 685 2299 1615 0 0 0 0 0 0 0 0 + 1 68.00 502 171 674 2217 1544 -0 0 0 0 0 0 0 0 + 2 68.00 488 164 652 2124 1472 0 0 0 0 0 0 0 0 + 3 68.00 470 156 626 2045 1418 0 0 0 0 0 0 0 0 + 4 68.00 450 149 599 1948 1349 0 0 0 0 0 0 0 0 + 5 68.00 432 141 573 1861 1288 0 0 0 0 0 0 0 0 + 6 68.00 413 134 547 1769 1222 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 177 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 375 121 496 1603 1108 0 0 0 0 0 0 0 0 + 2 68.00 352 113 465 1501 1036 0 0 0 0 0 0 0 0 + 3 68.00 327 105 432 1386 954 -0 0 0 0 0 0 0 0 + 4 68.00 304 97 402 1286 884 0 0 0 0 0 0 0 0 + 5 68.00 287 91 378 1206 828 0 0 0 0 0 0 0 0 + 6 68.00 272 86 358 1137 779 0 0 0 0 0 0 0 0 + 1 68.00 240 75 315 995 680 0 0 0 0 0 0 0 0 + 2 68.00 221 69 290 909 619 0 0 0 0 0 0 0 0 + 3 68.00 203 63 266 827 561 0 0 0 0 0 0 0 0 + 4 68.00 188 58 246 764 518 -0 0 0 0 0 0 0 0 + 5 68.00 180 56 236 730 495 0 0 0 0 0 0 0 0 + 6 68.00 174 54 227 703 476 0 0 0 0 0 0 0 0 + 1 68.00 175 54 229 709 479 0 0 0 0 0 0 0 0 + 2 68.00 177 55 231 714 483 -0 0 0 0 0 0 0 0 + 3 68.00 175 54 229 706 477 0 0 0 0 0 0 0 0 + 4 68.00 169 52 221 682 461 0 0 0 0 0 0 0 0 + 5 68.00 161 50 211 650 440 0 0 0 0 0 0 0 0 + 6 68.00 152 47 199 613 414 0 0 0 0 0 0 0 0 + 1 68.00 105 32 137 422 285 0 0 0 0 0 0 0 0 + 2 68.00 92 28 121 372 251 0 0 0 0 0 0 0 0 + 3 68.00 83 25 108 333 225 0 0 0 0 0 0 0 0 + 4 68.00 89 27 117 359 242 0 0 0 0 0 0 0 0 + 5 68.00 110 34 144 443 299 0 0 0 0 0 0 0 0 + 6 68.00 131 40 171 527 355 0 0 0 0 0 0 0 0 + 1 68.00 183 56 239 740 502 0 0 0 0 0 0 0 0 + 2 68.00 209 64 273 841 568 0 0 0 0 0 0 0 0 + 3 68.00 232 71 303 946 642 0 0 0 0 0 0 0 0 + 4 68.00 253 78 330 1034 704 -0 0 0 0 0 0 0 0 + 5 68.00 269 83 352 1106 754 0 0 0 0 0 0 0 0 + 6 68.00 283 87 371 1169 799 0 0 0 0 0 0 0 0 + 1 68.00 295 91 387 1224 837 0 0 0 0 0 0 0 0 + 2 68.00 302 94 397 1264 867 0 0 0 0 0 0 0 0 + 3 68.00 308 96 404 1295 891 -0 0 0 0 0 0 0 0 + 4 68.00 315 99 414 1334 920 -0 0 0 0 0 0 0 0 + 5 68.00 319 101 420 1363 942 -0 0 0 0 0 0 0 0 + 6 68.00 326 103 429 1400 971 0 0 0 0 0 0 0 0 + 1 68.00 312 101 412 1360 947 -0 0 0 0 0 0 0 0 + 2 68.00 316 104 420 1403 983 -0 0 0 0 0 0 0 0 + 3 68.00 322 107 429 1448 1018 -0 0 0 0 0 0 0 0 + 4 68.00 327 111 437 1492 1055 -0 0 0 0 0 0 0 0 + 5 68.00 330 114 444 1535 1091 -0 0 0 0 0 0 0 0 + 6 68.00 335 117 452 1582 1130 0 0 0 0 0 0 0 0 + 1 68.00 328 116 445 1574 1129 0 0 0 0 0 0 0 0 + 2 68.00 331 119 450 1605 1156 0 0 0 0 0 0 0 0 + 3 68.00 334 122 456 1637 1182 0 0 0 0 0 0 0 0 + 4 68.00 337 124 461 1669 1208 0 0 0 0 0 0 0 0 + 5 68.00 340 127 467 1703 1236 0 0 0 0 0 0 0 0 + 6 68.00 343 130 473 1734 1261 0 0 0 0 0 0 0 0 + 1 68.00 351 132 483 1767 1284 0 0 0 0 0 0 0 0 + 2 68.00 353 132 486 1768 1282 0 0 0 0 0 0 0 0 + 3 68.00 354 132 486 1764 1278 0 0 0 0 0 0 0 0 + 4 68.00 356 132 488 1767 1280 0 0 0 0 0 0 0 0 + 5 68.00 357 131 488 1755 1267 0 0 0 0 0 0 0 0 + 6 68.00 357 130 487 1751 1264 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 178 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 367 135 502 1815 1313 -0 0 0 0 0 0 0 0 + 2 68.00 367 137 504 1840 1335 0 0 0 0 0 0 0 0 + 3 68.00 368 139 506 1864 1357 0 0 0 0 0 0 0 0 + 4 68.00 370 141 511 1891 1380 0 0 0 0 0 0 0 0 + 5 68.00 371 144 515 1919 1404 0 0 0 0 0 0 0 0 + 6 68.00 373 146 519 1947 1428 -0 0 0 0 0 0 0 0 + 1 68.00 396 155 550 2062 1512 0 0 0 0 0 0 0 0 + 2 68.00 399 156 555 2079 1524 0 0 0 0 0 0 0 0 + 3 68.00 401 156 557 2090 1533 0 0 0 0 0 0 0 0 + 4 68.00 403 157 560 2101 1541 0 0 0 0 0 0 0 0 + 5 68.00 405 157 562 2111 1548 -0 0 0 0 0 0 0 0 + 6 68.00 405 157 562 2103 1541 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 179 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.48 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.34 66.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.16 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.01 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.83 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.68 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.52 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.36 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.20 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.04 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.88 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.72 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.56 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.40 65.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.24 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.09 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 65.93 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.77 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.61 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.45 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.29 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.13 65.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 64.97 65.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.81 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.65 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.49 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.33 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.17 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.00 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.84 65.00 64.83 92.76 87.73 0 42829 16333 2533 .0592 .0592 0.381 0.155 0.789 0 74.7 2406 0 0 127 2533 -679 1855 678 -1 989 1253 2.831 2.434 1.662 + 12 2 5 0 30.77 64.04 65.00 64.79 92.74 87.77 0 42848 16392 2981 .0696 .0696 0.383 0.182 0.795 0 87.8 2831 0 0 150 2981 -795 2186 795 0 1155 1441 2.828 2.451 1.675 + 12 2 5 1 30.62 64.01 65.00 64.82 92.78 87.83 0 42868 16452 3368 .0786 .0786 0.384 0.205 0.801 0 99.2 3199 0 0 169 3368 -892 2476 892 0 1297 1603 2.825 2.466 1.689 + 12 2 5 2 30.47 63.93 65.00 64.81 92.78 87.85 0 42888 16511 3875 .0904 .0904 0.385 0.235 0.809 0 114.1 3681 0 0 195 3875 -1026 2849 1026 0 1480 1811 2.823 2.487 1.701 + 12 2 5 3 30.32 63.91 65.00 64.80 92.78 87.85 0 42907 16571 4284 .0998 .0998 0.386 0.258 0.815 0 126.0 4069 0 0 215 4284 -1136 3148 1136 -0 1626 1978 2.820 2.502 1.710 + 12 2 5 4 30.17 63.86 65.00 64.79 92.79 87.86 0 42927 16630 4730 0.110 0.110 0.387 0.284 0.821 0 139.1 4492 0 0 237 4730 -1254 3476 1254 0 1783 2157 2.817 2.519 1.720 + 12 2 5 5 30.02 63.84 65.00 64.79 92.79 87.87 0 42947 16690 5159 0.120 0.120 0.389 0.309 0.827 0 151.7 4901 0 0 259 5159 -1368 3791 1368 0 1933 2328 2.814 2.535 1.730 + 12 2 6 0 29.90 63.82 65.96 64.84 98.86 96.41 0 0 0 81635 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8810 42026 10128 1318 0 52290 0 0 0.806 + 12 2 6 1 29.78 67.32 66.50 65.67 99.68 97.17 0 0 0 43292 0 0 1.000 0 0 0.824 1041 0 41224 0 1776 43000 -7480 34900 8100 620 0 43136 0 0 0.812 + 12 2 6 2 29.66 67.06 66.50 66.56 94.60 91.05 0 42994 16833 23327 0.543 0.543 0.543 1.000 1.000 0 684.9 22158 0 0 1168 23326 -4946 18380 4946 -0 7751 9056 2.807 2.859 2.061 + 12 2 6 3 29.54 65.84 66.50 66.54 94.59 91.08 0 43010 16880 23495 0.546 0.546 0.546 1.000 1.000 0 689.6 22319 0 0 1177 23495 -4963 18532 4963 0 7815 9128 2.805 2.856 2.061 + 12 2 6 4 29.42 66.04 66.50 66.39 94.45 90.91 0 43025 16928 23698 0.551 0.551 0.551 1.000 1.000 0 695.3 22511 0 0 1186 23698 -5147 18551 5147 0 7891 9213 2.803 2.853 2.044 + 12 2 6 5 29.30 66.25 66.50 66.41 94.48 90.73 0 43041 16975 22146 0.515 0.515 0.515 1.000 1.000 0 649.5 21038 0 0 1108 22146 -4942 17204 4942 0 7359 8603 2.801 2.859 2.032 + 12 2 7 0 29.57 66.34 67.10 66.46 100.47 98.05 0 0 0 106k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8621 42709 9445 824 0 52290 0 0 0.819 + 12 2 7 1 29.84 67.84 67.55 66.99 101.00 98.55 0 0 0 79134 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8755 42781 9373 618 0 52290 0 0 0.820 + 12 2 7 2 30.11 68.31 67.89 67.56 101.57 99.15 0 0 0 58797 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8534 43145 9008 474 0 52290 0 0 0.827 + 12 2 7 3 30.38 68.44 68.00 67.92 95.90 93.91 0 42899 16547 42692 0.995 0.995 0.995 1.000 1.000 0 1256 40548 0 0 2143 42691 -6961 35577 7114 153 14373 16653 2.821 2.821 2.154 + 12 2 7 4 30.65 68.14 68.00 68.04 95.99 93.70 0 42864 16440 36671 0.856 0.856 0.856 1.000 1.000 0 1080 34828 0 0 1842 36671 -6330 30341 6330 0 12281 14260 2.826 2.836 2.148 + 12 2 7 5 30.92 67.95 68.00 68.00 95.94 93.42 0 42829 16333 33318 0.778 0.778 0.778 1.000 1.000 0 982.0 31643 0 0 1675 33318 -6029 27289 6029 -0 11111 12923 2.831 2.848 2.134 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 180 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.29 68.00 67.98 95.77 92.97 0 42620 15702 29663 0.696 0.696 0.696 1.000 1.000 0 878.6 28164 0 0 1499 29663 -5685 23978 5685 0 9753 11389 2.861 2.888 2.131 + 12 2 8 1 34.10 68.30 68.00 68.02 95.68 92.59 0 42412 15071 26282 0.620 0.620 0.620 1.000 1.000 0 782.3 24947 0 0 1335 26282 -5253 21028 5253 0 8513 9984 2.893 2.931 2.135 + 12 2 8 2 35.69 68.39 68.00 68.03 95.83 92.30 0 42631 14588 23064 0.541 0.541 0.541 1.000 1.000 0 683.0 21899 0 0 1165 23064 -4919 18145 4919 -0 7281 8582 2.952 3.008 2.148 + 12 2 8 3 37.28 68.43 68.00 68.04 96.35 92.28 0 43407 14301 20473 0.472 0.472 0.472 1.000 1.000 0 595.4 19457 0 0 1016 20473 -4667 15806 4667 0 6212 7364 3.049 3.132 2.187 + 12 2 8 4 38.87 68.49 68.00 68.05 96.87 92.19 0 44184 14014 18228 0.413 0.413 0.413 1.000 1.000 0 520.8 17340 0 0 889 18228 -4455 13773 4455 -0 5297 6322 3.148 3.273 2.227 + 12 2 8 5 40.46 68.55 68.00 68.07 97.39 92.01 0 44960 13728 16178 0.360 0.360 0.360 1.000 1.000 0 454.2 15403 0 0 775 16178 -4254 11924 4254 0 4477 5388 3.250 3.441 2.270 + 12 2 9 0 41.12 68.61 68.00 68.08 97.61 91.77 0 45282 13610 14943 0.330 0.330 0.330 1.000 1.000 0 416.6 14232 0 0 711 14943 -4119 10824 4119 0 4030 4877 3.293 3.531 2.283 + 12 2 9 1 41.78 68.62 68.00 68.10 97.84 91.38 0 45605 13492 13542 0.297 0.297 0.297 1.000 1.000 0 374.8 12901 0 0 639 13540 -3960 9581 3960 -0 3541 4317 3.337 3.643 2.292 + 12 2 9 2 42.44 68.57 68.00 68.10 98.05 91.45 0 45927 13374 11998 0.261 0.261 0.291 0.897 0.974 0 329.8 11435 0 0 563 11998 -3545 8452 3545 0 3003 3702 3.381 3.808 2.370 + 12 2 9 3 43.10 68.42 68.00 68.10 98.26 91.51 0 46249 13256 10781 0.233 0.233 0.287 0.813 0.953 0 294.3 10279 0 0 502 10781 -3217 7564 3217 0 2698 3336 3.425 3.810 2.364 + 12 2 9 4 43.76 68.25 68.00 68.07 98.45 91.54 0 46571 13138 9586 0.206 0.206 0.282 0.730 0.932 0 259.8 9143 0 0 443 9586 -2900 6686 2900 0 2397 2977 3.471 3.814 2.354 + 12 2 9 5 44.42 67.96 68.00 68.04 98.63 91.55 0 46894 13020 8480 0.181 0.181 0.278 0.651 0.913 0 228.3 8091 0 0 389 8480 -2602 5878 2602 0 2115 2641 3.516 3.825 2.347 + 12 2 10 0 44.93 67.71 68.00 67.99 98.74 91.52 0 47143 12930 8121 0.172 0.172 0.274 0.628 0.907 0 217.5 7750 0 0 371 8121 -2531 5590 2531 -0 2000 2507 3.552 3.876 2.358 + 12 2 10 1 45.44 67.61 68.00 67.95 98.86 91.48 0 47392 12839 7249 0.153 0.153 0.271 0.565 0.891 0 193.1 6919 0 0 329 7249 -2292 4957 2292 0 1781 2247 3.588 3.885 2.349 + 12 2 10 2 45.95 67.31 68.00 67.93 99.00 91.49 0 47641 12748 6449 0.135 0.135 0.268 0.506 0.876 0 170.9 6157 0 0 292 6449 -2060 4389 2060 0 1578 2006 3.624 3.902 2.347 + 12 2 10 3 46.46 67.16 68.00 67.88 99.11 91.45 0 47890 12658 5686 0.119 0.119 0.264 0.449 0.862 0 149.9 5430 0 0 256 5686 -1844 3841 1844 0 1384 1776 3.661 3.923 2.342 + 12 2 10 4 46.97 66.91 68.00 67.84 99.24 91.43 0 48139 12567 5013 0.104 0.104 0.261 0.399 0.850 0 131.5 4789 0 0 224 5013 -1646 3367 1646 0 1211 1572 3.698 3.953 2.345 + 12 2 10 5 47.48 66.74 68.00 67.80 99.20 91.35 0 48154 12562 4326 .0898 .0898 0.261 0.344 0.836 0 113.4 4133 0 0 193 4326 -1431 2895 1431 0 1061 1391 3.700 3.895 2.308 + 12 2 11 0 48.20 66.63 68.00 67.76 99.17 91.29 0 48154 12562 4711 .0978 .0978 0.261 0.375 0.844 0 123.5 4500 0 0 211 4711 -1566 3144 1566 0 1145 1492 3.700 3.930 2.320 + 12 2 11 1 48.92 66.67 68.00 67.74 99.14 91.24 0 48154 12562 4190 .0870 .0870 0.261 0.334 0.833 0 109.8 4002 0 0 187 4190 -1399 2791 1399 0 1031 1355 3.700 3.882 2.291 + 12 2 11 2 49.64 66.64 68.00 67.74 99.14 91.25 0 48154 12562 3647 .0757 .0757 0.261 0.290 0.823 0 95.6 3484 0 0 163 3647 -1217 2430 1217 0 909 1209 3.700 3.832 2.266 + 12 2 11 3 50.36 66.56 68.00 67.73 99.13 91.23 0 48154 12562 3148 .0654 .0654 0.261 0.251 0.813 0 82.5 3007 0 0 141 3148 -1052 2096 1052 -0 794 1072 3.700 3.786 2.241 + 12 2 11 4 51.08 66.49 68.00 67.71 99.12 91.19 0 48154 12562 2674 .0555 .0555 0.261 0.213 0.803 0 70.1 2555 0 0 120 2674 -897 1778 897 -0 683 939 3.700 3.742 2.216 + 12 2 11 5 51.80 66.41 68.00 67.70 99.10 91.17 0 48154 12562 2200 .0457 .0457 0.261 0.175 0.794 0 57.7 2101 0 0 98 2200 -739 1460 739 -0 568 803 3.700 3.698 2.191 + 12 2 12 0 52.70 66.30 68.00 67.68 99.08 91.14 0 48154 12562 1349 .0280 .0280 0.261 0.107 0.777 0 35.4 1289 0 0 60 1349 -454 895 454 0 356 416 3.700 3.619 2.148 + 12 2 12 1 53.60 66.11 68.00 67.66 99.06 91.10 0 48154 12562 818 .0170 .0170 0.261 .0651 0.766 0 21.4 782 0 0 37 818 -277 542 277 0 219 256 3.700 3.570 2.119 + 12 2 12 2 54.50 65.96 68.00 67.62 99.02 91.03 0 48154 12562 305 .0063 .0063 0.261 .0243 0.756 0 8.0 291 0 0 14 305 -104 201 104 0 83 96 3.700 3.522 2.089 + 12 2 12 3 55.40 65.78 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.70 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.65 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.62 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.58 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.53 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.51 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.47 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.43 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.39 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.34 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.30 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.26 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.21 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.17 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.11 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.07 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.01 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 64.95 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 64.89 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 64.87 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.82 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.76 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.70 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.65 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.54 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.47 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 181 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.42 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.29 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.22 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.16 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.03 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 63.95 68.00 67.19 98.59 90.20 0 48154 12562 119 .0025 .0025 0.261 .0095 0.752 0 3.1 114 0 0 5 119 -44 76 43 -0 33 38 3.700 3.505 2.005 + 12 2 18 0 53.00 63.90 68.00 67.14 98.55 90.18 0 48154 12562 1541 .0320 .0320 0.261 0.123 0.781 0 40.4 1472 0 0 69 1541 -562 980 562 0 405 474 3.700 3.637 2.068 + 12 2 18 1 52.94 63.91 68.00 67.13 98.54 90.15 0 48154 12562 1891 .0393 .0393 0.261 0.151 0.788 0 49.6 1806 0 0 85 1891 -690 1201 690 0 492 577 3.700 3.669 2.081 + 12 2 18 2 52.88 63.94 68.00 67.14 98.54 90.16 0 48154 12562 2051 .0426 .0426 0.261 0.163 0.791 0 53.8 1960 0 0 92 2051 -748 1303 748 0 532 624 3.700 3.684 2.089 + 12 2 18 3 52.82 63.83 68.00 67.14 98.54 90.17 0 48154 12562 2358 .0490 .0490 0.261 0.188 0.797 0 61.8 2253 0 0 105 2358 -860 1498 860 0 607 712 3.700 3.712 2.103 + 12 2 18 4 52.76 63.82 68.00 67.12 98.52 90.13 0 48154 12562 2583 .0536 .0536 0.261 0.206 0.801 0 67.7 2467 0 0 116 2583 -945 1638 945 0 661 776 3.700 3.733 2.110 + 12 2 18 5 52.70 63.76 68.00 67.11 98.52 90.12 0 48154 12562 2871 .0596 .0596 0.261 0.229 0.807 0 75.3 2742 0 0 128 2871 -1051 1820 1051 0 729 858 3.700 3.760 2.122 + 12 2 19 0 52.19 63.78 68.00 67.10 98.51 90.10 0 48154 12562 2844 .0591 .0591 0.261 0.226 0.807 0 74.6 2717 0 0 127 2844 -1042 1801 1042 0 723 850 3.700 3.757 2.119 + 12 2 19 1 51.68 63.64 68.00 67.10 98.51 90.10 0 48154 12562 3198 .0664 .0664 0.261 0.255 0.814 0 83.8 3055 0 0 143 3198 -1172 2026 1172 -0 806 949 3.700 3.790 2.134 + 12 2 19 2 51.17 63.63 68.00 67.08 98.48 90.06 0 48154 12562 3442 .0715 .0715 0.261 0.274 0.819 0 90.2 3288 0 0 154 3442 -1266 2176 1266 0 862 1016 3.700 3.813 2.141 + 12 2 19 3 50.66 63.57 68.00 67.07 98.48 90.05 0 48154 12562 3787 .0786 .0786 0.261 0.301 0.825 0 99.3 3618 0 0 169 3787 -1394 2393 1394 0 941 1110 3.700 3.845 2.155 + 12 2 19 4 50.15 63.60 68.00 67.06 98.47 90.03 0 48154 12562 4029 .0837 .0837 0.261 0.321 0.830 0 105.6 3849 0 0 180 4029 -1485 2544 1485 0 995 1176 3.700 3.867 2.164 + 12 2 19 5 49.64 63.52 68.00 67.07 98.47 90.04 0 48154 12562 4377 .0909 .0909 0.261 0.348 0.837 0 114.7 4181 0 0 196 4377 -1613 2764 1613 0 1072 1268 3.700 3.900 2.180 + 12 2 20 0 49.13 63.52 68.00 67.05 98.46 90.02 0 48154 12562 4895 0.102 0.102 0.261 0.390 0.847 0 128.3 4676 0 0 219 4895 -1807 3089 1807 0 1185 1540 3.700 3.948 2.200 + 12 2 20 1 48.62 63.60 68.00 67.05 98.46 90.01 0 48154 12562 5253 0.109 0.109 0.261 0.418 0.855 0 137.7 5018 0 0 235 5253 -1939 3314 1939 -0 1261 1632 3.700 3.981 2.216 + 12 2 20 2 48.11 63.69 68.00 67.07 98.47 90.04 0 48154 12562 5599 0.116 0.116 0.261 0.446 0.861 0 146.8 5348 0 0 250 5599 -2063 3536 2063 0 1333 1720 3.700 4.013 2.233 + 12 2 20 3 47.60 63.79 68.00 67.08 98.48 90.06 0 48154 12562 5854 0.122 0.122 0.261 0.466 0.866 0 153.5 5592 0 0 262 5854 -2153 3701 2153 0 1385 1784 3.700 4.036 2.247 + 12 2 20 4 47.09 63.89 68.00 67.10 98.50 90.10 0 48154 12562 6162 0.128 0.128 0.261 0.491 0.873 0 161.5 5887 0 0 276 6162 -2260 3902 2260 0 1448 1860 3.700 4.065 2.264 + 12 2 20 5 46.58 64.06 68.00 67.12 98.39 90.10 0 47949 12636 6452 0.135 0.135 0.264 0.511 0.878 0 169.9 6163 0 0 290 6452 -2348 4104 2348 0 1536 1962 3.669 4.013 2.248 + 12 2 21 0 46.10 64.14 68.00 67.16 98.28 90.12 0 47714 12722 7092 0.149 0.149 0.267 0.557 0.889 0 187.6 6772 0 0 320 7092 -2555 4537 2555 0 1700 2156 3.635 3.984 2.246 + 12 2 21 1 45.62 64.26 68.00 67.18 98.14 90.12 0 47480 12807 7399 0.156 0.156 0.270 0.578 0.894 0 196.7 7064 0 0 336 7399 -2642 4757 2642 -0 1798 2270 3.601 3.928 2.229 + 12 2 21 2 45.14 64.36 68.00 67.21 98.02 90.13 0 47245 12892 7691 0.163 0.163 0.273 0.597 0.899 0 205.5 7341 0 0 351 7691 -2720 4971 2720 0 1895 2382 3.567 3.874 2.214 + 12 2 21 3 44.66 64.44 68.00 67.23 97.89 90.13 0 47011 12978 7995 0.170 0.170 0.276 0.616 0.904 0 214.7 7629 0 0 366 7995 -2801 5194 2801 -0 1995 2498 3.533 3.823 2.199 + 12 2 21 4 44.18 64.53 68.00 67.25 97.76 90.12 0 46777 13063 8293 0.177 0.177 0.279 0.635 0.909 0 223.8 7912 0 0 382 8293 -2880 5413 2880 0 2096 2615 3.500 3.774 2.184 + 12 2 21 5 43.70 64.63 68.00 67.27 97.63 90.12 0 46542 13149 8580 0.184 0.184 0.283 0.653 0.913 0 232.7 8183 0 0 397 8580 -2953 5627 2953 -0 2196 2729 3.466 3.727 2.170 + 12 2 22 0 43.28 64.72 68.00 67.30 97.52 90.12 0 46337 13224 9541 0.206 0.206 0.285 0.722 0.930 0 259.9 9098 0 0 443 9541 -3257 6284 3257 0 2432 3011 3.438 3.741 2.186 + 12 2 22 1 42.86 64.91 68.00 67.32 97.40 90.11 0 46132 13299 9845 0.213 0.213 0.288 0.740 0.935 0 269.4 9385 0 0 460 9845 -3332 6512 3332 0 2532 3128 3.409 3.706 2.177 + 12 2 22 2 42.44 65.03 68.00 67.36 97.31 90.14 0 45927 13374 10110 0.220 0.220 0.291 0.756 0.939 0 277.9 9636 0 0 474 10110 -3384 6726 3384 0 2626 3236 3.381 3.670 2.170 + 12 2 22 3 42.02 65.12 68.00 67.39 97.20 90.15 0 45722 13449 10397 0.227 0.227 0.294 0.773 0.943 0 287.1 9908 0 0 490 10397 -3447 6950 3447 -0 2725 3351 3.353 3.636 2.162 + 12 2 22 4 41.60 65.23 68.00 67.41 97.09 90.14 0 45517 13524 10674 0.235 0.235 0.297 0.789 0.947 0 296.0 10169 0 0 505 10674 -3509 7165 3509 0 2822 3464 3.325 3.603 2.154 + 12 2 22 5 41.18 65.34 68.00 67.43 96.98 90.14 0 45312 13599 10915 0.241 0.241 0.300 0.803 0.951 0 304.1 10396 0 0 519 10915 -3555 7360 3555 0 2913 3568 3.297 3.569 2.145 + 12 2 23 0 41.27 65.43 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 63.95 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.61 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.40 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.27 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.10 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.01 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 62.95 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.77 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.69 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.52 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.44 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 182 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.39 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.25 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.21 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.11 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.11 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 62.00 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.92 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.88 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.87 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.79 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.69 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.59 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.49 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.39 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.29 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.19 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.08 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 60.98 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.87 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.76 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.65 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.54 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.43 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.32 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.20 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.08 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 59.97 65.00 64.14 92.25 86.86 0 43088 17118 1391 .0323 .0323 0.397 .0813 0.770 0 40.8 1322 0 0 70 1391 -419 974 417 -2 564 770 2.794 2.343 1.537 + 12 3 5 3 28.64 60.07 65.00 64.10 92.22 86.86 0 43128 17237 3575 .0829 .0829 0.400 0.207 0.802 0 104.6 3396 0 0 179 3575 -1075 2500 1075 0 1395 1710 2.789 2.434 1.588 + 12 3 5 4 28.34 60.34 65.00 64.11 92.26 86.93 0 43167 17356 4137 .0958 .0958 0.402 0.238 0.810 0 121.0 3931 0 0 206 4137 -1237 2900 1237 0 1603 1946 2.783 2.452 1.603 + 12 3 5 5 28.04 60.38 65.00 64.16 92.33 87.05 0 43206 17475 4647 0.108 0.108 0.404 0.266 0.816 0 135.8 4416 0 0 232 4647 -1375 3272 1375 -0 1789 2157 2.778 2.468 1.620 + 12 3 6 0 28.07 60.40 65.95 64.38 98.40 95.76 0 0 0 82758 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9711 41130 11024 1313 0 52290 0 0 0.789 + 12 3 6 1 28.10 64.56 66.50 65.21 99.23 96.53 0 0 0 43510 0 0 1.000 0 0 0.825 1041 0 41243 0 1776 43020 -8215 34181 8839 624 0 43156 0 0 0.795 + 12 3 6 2 28.13 64.20 66.50 66.10 94.27 90.32 0 43194 17439 22830 0.529 0.529 0.529 1.000 1.000 0 667.2 21692 0 0 1138 22830 -5456 17374 5456 -0 7648 8923 2.780 2.836 1.977 + 12 3 6 3 28.16 62.81 66.50 66.08 94.24 90.35 0 43190 17427 23055 0.534 0.534 0.534 1.000 1.000 0 673.8 21905 0 0 1150 23055 -5486 17570 5486 -0 7726 9012 2.780 2.835 1.980 + 12 3 6 4 28.19 63.06 66.50 65.91 94.07 90.26 0 43187 17415 23981 0.555 0.555 0.555 1.000 1.000 0 701.0 22785 0 0 1196 23980 -5773 18207 5773 0 8048 9380 2.781 2.831 1.970 + 12 3 6 5 28.22 63.36 66.50 65.93 94.10 90.08 0 43183 17403 22516 0.521 0.521 0.521 1.000 1.000 0 658.2 21393 0 0 1123 22516 -5550 16966 5550 0 7535 8794 2.781 2.839 1.960 + 12 3 7 0 28.52 63.61 67.11 66.07 100.09 97.50 0 0 0 106k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9375 41937 10216 842 0 52290 0 0 0.804 + 12 3 7 1 28.82 65.33 67.57 66.63 100.65 98.04 0 0 0 78239 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9475 42042 10112 637 0 52290 0 0 0.806 + 12 3 7 2 29.12 65.81 67.93 67.25 101.26 98.69 0 0 0 56774 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9205 42457 9696 492 0 52290 0 0 0.814 + 12 3 7 3 29.42 65.96 68.00 67.61 95.67 93.38 0 43025 16928 39947 0.928 0.928 0.928 1.000 1.000 0 1172 37934 0 0 1999 39933 -7335 32506 7427 92 13511 15646 2.803 2.808 2.096 + 12 3 7 4 29.72 65.71 68.00 67.69 95.72 93.16 0 42986 16809 35215 0.819 0.819 0.819 1.000 1.000 0 1034 33451 0 0 1764 35215 -6775 28440 6776 0 11854 13755 2.809 2.822 2.088 + 12 3 7 5 30.02 65.70 68.00 67.65 95.66 92.83 0 42947 16690 31760 0.740 0.740 0.740 1.000 1.000 0 933.5 30167 0 0 1593 31760 -6422 25338 6422 0 10640 12369 2.814 2.835 2.071 + 12 3 8 0 31.40 65.90 68.00 67.64 95.53 92.37 0 42766 16142 28271 0.661 0.661 0.661 1.000 1.000 0 834.5 26847 0 0 1424 28271 -6037 22234 6037 0 9352 10913 2.840 2.871 2.063 + 12 3 8 1 32.78 65.96 68.00 67.65 95.42 91.92 0 42585 15595 24920 0.585 0.585 0.585 1.000 1.000 0 738.7 23659 0 0 1260 24920 -5603 19317 5603 0 8132 9529 2.867 2.909 2.057 + 12 3 8 2 34.16 66.06 68.00 67.65 95.30 91.40 0 42404 15047 21971 0.518 0.518 0.518 1.000 1.000 0 654.1 20855 0 0 1116 21971 -5238 16733 5238 0 7065 8318 2.894 2.952 2.045 + 12 3 8 3 35.54 66.09 68.00 67.65 95.40 91.03 0 42557 14616 19456 0.457 0.457 0.457 1.000 1.000 0 577.1 18471 0 0 985 19456 -4929 14527 4929 0 6114 7235 2.943 3.021 2.046 + 12 3 8 4 36.92 66.17 68.00 67.63 95.83 90.84 0 43231 14366 17366 0.402 0.402 0.402 1.000 1.000 0 507.1 16500 0 0 865 17366 -4705 12661 4705 0 5263 6265 3.027 3.135 2.066 + 12 3 8 5 38.30 66.24 68.00 67.63 96.26 90.61 0 43905 14117 15558 0.354 0.354 0.354 1.000 1.000 0 447.3 14795 0 0 763 15558 -4501 11057 4501 0 4532 5432 3.112 3.265 2.088 + 12 3 9 0 38.84 66.30 68.00 67.63 96.43 90.38 0 44169 14019 14523 0.329 0.329 0.329 1.000 1.000 0 415.1 13815 0 0 708 14523 -4370 10153 4370 0 4151 4995 3.146 3.328 2.090 + 12 3 9 1 39.38 66.35 68.00 67.63 96.61 90.27 0 44433 13922 13059 0.294 0.294 0.313 0.938 0.985 0 371.0 12426 0 0 633 13059 -4028 9031 4028 0 3543 4313 3.180 3.507 2.162 + 12 3 9 2 39.92 66.18 68.00 67.64 96.79 90.35 0 44696 13825 11647 0.261 0.261 0.309 0.842 0.961 0 328.9 11086 0 0 561 11647 -3610 8037 3610 0 3191 3889 3.215 3.474 2.142 + 12 3 9 3 40.46 66.09 68.00 67.61 96.94 90.37 0 44960 13728 10337 0.230 0.230 0.305 0.753 0.938 0 290.2 9842 0 0 495 10337 -3239 7098 3239 0 2855 3487 3.250 3.447 2.119 + 12 3 9 4 41.00 65.93 68.00 67.60 97.09 90.40 0 45224 13631 9235 0.204 0.204 0.301 0.677 0.919 0 257.8 8795 0 0 440 9235 -2922 6313 2922 -0 2562 3138 3.285 3.433 2.103 + 12 3 9 5 41.54 65.75 68.00 67.57 97.23 90.41 0 45487 13535 8191 0.180 0.180 0.298 0.605 0.901 0 227.3 7803 0 0 388 8191 -2621 5570 2621 0 2280 2805 3.321 3.422 2.087 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 183 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.66 68.00 67.53 97.44 90.43 0 45868 13395 8716 0.190 0.190 0.292 0.651 0.913 0 239.9 8307 0 0 409 8716 -2833 5883 2833 0 2338 2884 3.373 3.553 2.141 + 12 3 10 1 43.10 65.74 68.00 67.51 97.67 90.48 0 46249 13256 7909 0.171 0.171 0.287 0.597 0.899 0 215.9 7541 0 0 368 7909 -2604 5305 2604 0 2099 2603 3.425 3.593 2.150 + 12 3 10 2 43.88 65.68 68.00 67.52 97.93 90.58 0 46630 13117 7107 0.152 0.152 0.281 0.542 0.885 0 192.4 6779 0 0 328 7107 -2359 4748 2359 -0 1864 2328 3.479 3.638 2.166 + 12 3 10 3 44.66 65.70 68.00 67.51 98.17 90.63 0 47011 12978 6323 0.135 0.135 0.276 0.487 0.872 0 169.8 6034 0 0 290 6323 -2124 4200 2124 0 1637 2063 3.533 3.687 2.180 + 12 3 10 4 45.44 65.58 68.00 67.50 98.41 90.68 0 47392 12839 5623 0.119 0.119 0.271 0.438 0.859 0 149.8 5368 0 0 256 5623 -1909 3714 1909 0 1432 1824 3.588 3.747 2.201 + 12 3 10 5 46.22 65.58 68.00 67.48 98.63 90.71 0 47773 12700 4893 0.102 0.102 0.266 0.385 0.846 0 129.3 4673 0 0 221 4893 -1683 3210 1683 -0 1226 1583 3.644 3.811 2.219 + 12 3 11 0 46.58 65.50 68.00 67.47 98.74 90.72 0 47949 12636 4799 0.100 0.100 0.264 0.380 0.845 0 126.3 4583 0 0 216 4799 -1661 3138 1661 0 1186 1538 3.669 3.864 2.239 + 12 3 11 1 46.94 65.68 68.00 67.46 98.84 90.72 0 48124 12572 4332 .0900 .0900 0.261 0.345 0.836 0 113.6 4138 0 0 194 4332 -1509 2822 1509 0 1065 1396 3.696 3.885 2.242 + 12 3 11 2 47.30 65.46 68.00 67.49 98.89 90.77 0 48154 12562 3971 .0825 .0825 0.261 0.316 0.829 0 104.1 3793 0 0 178 3971 -1380 2591 1380 0 982 1296 3.700 3.862 2.234 + 12 3 11 3 47.66 65.74 68.00 67.45 98.86 90.72 0 48154 12562 3460 .0718 .0718 0.261 0.275 0.819 0 90.7 3305 0 0 155 3460 -1207 2252 1207 -0 866 1158 3.700 3.814 2.206 + 12 3 11 4 48.02 65.61 68.00 67.50 98.90 90.78 0 48154 12562 3152 .0654 .0654 0.261 0.251 0.813 0 82.6 3011 0 0 141 3152 -1094 2058 1094 0 795 1073 3.700 3.786 2.198 + 12 3 11 5 48.38 65.76 68.00 67.48 98.88 90.76 0 48154 12562 2716 .0564 .0564 0.261 0.216 0.804 0 71.2 2594 0 0 121 2716 -945 1771 945 0 693 951 3.700 3.746 2.175 + 12 3 12 0 48.86 65.29 68.00 67.50 98.90 90.79 0 48154 12562 1971 .0409 .0409 0.261 0.157 0.789 0 51.7 1883 0 0 88 1971 -684 1287 684 0 512 737 3.700 3.676 2.144 + 12 3 12 1 49.34 65.56 68.00 67.43 98.83 90.68 0 48154 12562 1474 .0306 .0306 0.261 0.117 0.779 0 38.6 1408 0 0 66 1474 -516 958 516 -0 388 590 3.700 3.630 2.111 + 12 3 12 2 49.82 65.33 68.00 67.46 98.87 90.73 0 48154 12562 1152 .0239 .0239 0.261 .0917 0.773 0 30.2 1100 0 0 52 1152 -401 750 401 0 306 494 3.700 3.601 2.101 + 12 3 12 3 50.30 65.33 68.00 67.43 98.83 90.68 0 48154 12562 702 .0146 .0146 0.261 .0559 0.764 0 18.4 671 0 0 31 702 -246 456 246 0 189 356 3.700 3.559 2.075 + 12 3 12 4 50.78 65.23 68.00 67.43 98.83 90.67 0 48154 12562 353 .0073 .0073 0.261 .0281 0.757 0 9.2 337 0 0 16 353 -124 229 124 0 96 248 3.700 3.526 2.058 + 12 3 12 5 51.26 65.09 68.00 67.41 98.82 90.65 0 48154 12562 17 .0003 .0003 0.261 .0013 0.750 0 0.4 16 0 0 1 17 -6 11 6 -0 5 142 3.700 3.495 2.041 + 12 3 13 0 51.59 65.08 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.05 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.10 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.05 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.14 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.11 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.23 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.13 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.35 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.28 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.36 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.26 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.29 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.52 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.48 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.55 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.40 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.41 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.40 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.54 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.49 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.49 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.51 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.53 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.58 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.38 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.58 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.21 68.00 67.49 98.90 90.77 0 48154 12562 1380 .0286 .0286 0.261 0.110 0.777 0 36.2 1318 0 0 62 1380 -480 900 479 -1 364 426 3.700 3.622 2.116 + 12 3 17 4 49.49 65.71 68.00 67.41 98.82 90.66 0 48154 12562 3052 .0634 .0634 0.261 0.243 0.811 0 80.0 2916 0 0 137 3052 -1070 1982 1070 0 772 909 3.700 3.777 2.182 + 12 3 17 5 49.10 65.84 68.00 67.50 98.90 90.79 0 48154 12562 3426 .0711 .0711 0.261 0.273 0.818 0 89.8 3273 0 0 153 3426 -1188 2238 1188 0 859 1012 3.700 3.811 2.212 + 12 3 18 0 48.05 65.89 68.00 67.53 98.93 90.85 0 48154 12562 3409 .0708 .0708 0.261 0.271 0.818 0 89.4 3257 0 0 152 3409 -1177 2232 1177 0 855 1144 3.700 3.810 2.216 + 12 3 18 1 47.00 65.95 68.00 67.54 98.94 90.87 0 48154 12562 3994 .0829 .0829 0.261 0.318 0.829 0 104.7 3816 0 0 179 3994 -1377 2618 1377 0 987 1303 3.700 3.864 2.245 + 12 3 18 2 45.95 66.10 68.00 67.55 98.62 90.81 0 47641 12748 4558 .0957 .0957 0.268 0.358 0.839 0 120.8 4352 0 0 206 4558 -1546 3012 1546 -0 1165 1507 3.624 3.737 2.198 + 12 3 18 3 44.90 66.26 68.00 67.59 98.32 90.78 0 47128 12935 5099 0.108 0.108 0.274 0.394 0.849 0 136.6 4866 0 0 233 5099 -1698 3401 1698 0 1344 1713 3.550 3.622 2.157 + 12 3 18 4 43.85 66.48 68.00 67.62 98.02 90.74 0 46615 13122 5672 0.122 0.122 0.281 0.432 0.858 0 153.6 5410 0 0 262 5672 -1854 3818 1854 0 1536 1935 3.477 3.521 2.123 + 12 3 18 5 42.80 66.71 68.00 67.66 97.73 90.70 0 46103 13309 6241 0.135 0.135 0.289 0.469 0.867 0 170.9 5949 0 0 292 6241 -2000 4241 2000 -0 1734 2162 3.405 3.430 2.094 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 184 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.81 68.00 67.70 97.72 90.76 0 46029 13336 6298 0.137 0.137 0.290 0.472 0.868 0 172.7 6003 0 0 295 6298 -2000 4298 2000 0 1757 2188 3.395 3.416 2.095 + 12 3 19 1 42.50 66.82 68.00 67.73 97.70 90.79 0 45956 13363 6576 0.143 0.143 0.291 0.492 0.873 0 180.6 6268 0 0 308 6576 -2077 4500 2077 0 1833 2278 3.385 3.419 2.101 + 12 3 19 2 42.35 66.93 68.00 67.73 97.66 90.78 0 45883 13390 6811 0.148 0.148 0.292 0.509 0.877 0 187.4 6491 0 0 320 6811 -2144 4667 2144 0 1899 2355 3.375 3.418 2.103 + 12 3 19 3 42.20 66.90 68.00 67.75 97.63 90.80 0 45810 13417 7071 0.154 0.154 0.293 0.527 0.882 0 194.9 6739 0 0 332 7071 -2214 4858 2214 0 1971 2440 3.365 3.419 2.109 + 12 3 19 4 42.05 66.94 68.00 67.75 97.58 90.79 0 45736 13443 7263 0.159 0.159 0.294 0.540 0.885 0 200.5 6921 0 0 342 7263 -2268 4994 2268 0 2026 2505 3.355 3.415 2.109 + 12 3 19 5 41.90 66.89 68.00 67.76 97.54 90.79 0 45663 13470 7521 0.165 0.165 0.295 0.558 0.890 0 207.9 7166 0 0 355 7521 -2340 5181 2340 0 2098 2589 3.345 3.416 2.112 + 12 3 20 0 41.60 66.86 68.00 67.76 97.44 90.75 0 45517 13524 7924 0.174 0.174 0.297 0.586 0.896 0 219.8 7549 0 0 375 7924 -2457 5467 2457 0 2214 2725 3.325 3.410 2.112 + 12 3 20 1 41.30 66.95 68.00 67.76 97.35 90.72 0 45370 13578 8104 0.179 0.179 0.299 0.597 0.899 0 225.5 7719 0 0 385 8104 -2503 5601 2503 0 2278 2799 3.305 3.388 2.103 + 12 3 20 2 41.00 66.87 68.00 67.77 97.27 90.72 0 45224 13631 8409 0.186 0.186 0.301 0.617 0.904 0 234.7 8009 0 0 400 8409 -2579 5830 2579 0 2372 2909 3.285 3.376 2.103 + 12 3 20 3 40.70 66.90 68.00 67.77 97.16 90.67 0 45077 13685 8575 0.190 0.190 0.304 0.627 0.907 0 240.1 8165 0 0 410 8575 -2623 5952 2623 0 2434 2980 3.266 3.355 2.093 + 12 3 20 4 40.40 66.81 68.00 67.77 97.08 90.65 0 44931 13739 8883 0.198 0.198 0.306 0.647 0.912 0 249.6 8457 0 0 426 8883 -2703 6180 2703 0 2530 3092 3.246 3.343 2.091 + 12 3 20 5 40.10 66.82 68.00 67.76 96.97 90.60 0 44784 13793 9024 0.201 0.201 0.308 0.654 0.914 0 254.4 8590 0 0 434 9024 -2739 6284 2739 0 2586 3157 3.227 3.321 2.081 + 12 3 21 0 40.43 66.78 68.00 67.76 97.08 90.65 0 44945 13734 9472 0.211 0.211 0.306 0.690 0.922 0 266.0 9018 0 0 454 9472 -2885 6587 2885 -0 2664 3254 3.248 3.386 2.113 + 12 3 21 1 40.76 66.75 68.00 67.76 97.17 90.68 0 45106 13674 9566 0.212 0.212 0.303 0.700 0.925 0 267.7 9109 0 0 457 9566 -2929 6637 2929 0 2657 3250 3.270 3.428 2.131 + 12 3 21 2 41.09 66.70 68.00 67.75 97.28 90.71 0 45268 13615 9639 0.213 0.213 0.301 0.708 0.927 0 268.8 9180 0 0 459 9639 -2966 6673 2966 -0 2645 3240 3.291 3.471 2.150 + 12 3 21 3 41.42 66.64 68.00 67.75 97.37 90.74 0 45429 13556 9690 0.213 0.213 0.298 0.715 0.929 0 269.3 9230 0 0 459 9690 -2997 6692 2997 0 2628 3224 3.313 3.513 2.168 + 12 3 21 4 41.75 66.51 68.00 67.73 97.47 90.75 0 45590 13497 9731 0.213 0.213 0.296 0.721 0.930 0 269.4 9271 0 0 460 9731 -3029 6702 3029 0 2608 3204 3.335 3.555 2.185 + 12 3 21 5 42.08 66.53 68.00 67.71 97.55 90.75 0 45751 13438 9733 0.213 0.213 0.294 0.724 0.931 0 268.6 9275 0 0 458 9733 -3053 6680 3053 0 2579 3174 3.357 3.596 2.199 + 12 3 22 0 42.05 66.53 68.00 67.71 97.54 90.75 0 45736 13443 10518 0.230 0.230 0.294 0.782 0.946 0 290.3 10022 0 0 495 10518 -3298 7220 3298 -0 2747 3379 3.355 3.649 2.227 + 12 3 22 1 42.02 66.58 68.00 67.71 97.53 90.75 0 45722 13449 10677 0.234 0.234 0.294 0.794 0.948 0 294.8 10174 0 0 503 10677 -3347 7330 3347 0 2783 3422 3.353 3.656 2.231 + 12 3 22 2 41.99 66.62 68.00 67.73 97.53 90.76 0 45707 13454 10814 0.237 0.237 0.294 0.804 0.951 0 298.7 10304 0 0 510 10814 -3382 7432 3382 0 2814 3460 3.351 3.662 2.236 + 12 3 22 3 41.96 66.83 68.00 67.73 97.53 90.77 0 45692 13459 10843 0.237 0.237 0.295 0.806 0.951 0 299.6 10332 0 0 511 10843 -3385 7458 3385 0 2823 3470 3.349 3.661 2.237 + 12 3 22 4 41.93 66.93 68.00 67.77 97.56 90.82 0 45678 13465 10952 0.240 0.240 0.295 0.813 0.953 0 302.7 10435 0 0 516 10952 -3400 7552 3400 0 2848 3501 3.347 3.664 2.245 + 12 3 22 5 41.90 67.00 68.00 67.78 97.57 90.85 0 45663 13470 11046 0.242 0.242 0.295 0.820 0.955 0 305.4 10525 0 0 521 11046 -3417 7629 3417 0 2870 3527 3.345 3.667 2.250 + 12 3 23 0 41.51 67.11 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.68 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.31 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.35 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.24 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.17 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.08 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 64.92 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.87 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.77 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.68 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.52 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.47 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.49 66.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.32 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.25 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.13 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.01 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.90 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.79 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.67 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.55 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.44 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.32 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 185 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.20 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.08 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 62.95 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.83 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.70 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.58 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.45 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.32 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.19 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.06 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.92 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.79 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.65 65.00 64.45 92.47 87.21 0 42951 16702 393 .0091 .0091 0.389 .0235 0.756 0 11.5 373 0 0 20 393 -113 280 112 -1 161 317 2.814 2.316 1.550 + 12 4 5 1 29.96 61.58 65.00 64.39 92.41 87.15 0 42954 16714 3056 .0711 .0711 0.389 0.183 0.796 0 89.8 2902 0 0 153 3056 -882 2174 882 0 1191 1480 2.813 2.438 1.618 + 12 4 5 2 29.93 61.85 65.00 64.38 92.39 87.12 0 42958 16725 3470 .0808 .0808 0.389 0.207 0.802 0 102.0 3296 0 0 174 3470 -1004 2466 1004 0 1342 1653 2.812 2.456 1.627 + 12 4 5 3 29.90 61.85 65.00 64.42 92.44 87.19 0 42962 16737 3866 .0900 .0900 0.390 0.231 0.808 0 113.6 3672 0 0 194 3866 -1110 2756 1110 0 1485 1815 2.812 2.473 1.642 + 12 4 5 4 29.87 61.81 65.00 64.42 92.44 87.20 0 42966 16749 4281 .0996 .0996 0.390 0.256 0.814 0 125.8 4066 0 0 215 4281 -1229 3052 1229 0 1632 1983 2.811 2.492 1.653 + 12 4 5 5 29.84 61.82 65.00 64.41 92.44 87.19 0 42970 16761 4710 0.110 0.110 0.390 0.281 0.820 0 138.4 4474 0 0 236 4710 -1353 3356 1353 -0 1782 2155 2.811 2.511 1.663 + 12 4 6 0 29.72 61.82 65.96 64.57 98.59 96.03 0 0 0 82218 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9335 41500 10654 1319 0 52290 0 0 0.796 + 12 4 6 1 29.60 65.80 66.50 65.40 99.42 96.80 0 0 0 43171 0 0 1.000 0 0 0.820 1035 0 40995 0 1766 42760 -7864 34280 8480 616 0 42897 0 0 0.802 + 12 4 6 2 29.48 65.41 66.50 66.30 94.36 90.57 0 43017 16904 22901 0.532 0.532 0.532 1.000 1.000 0 672.0 21754 0 0 1147 22901 -5214 17687 5214 -0 7612 8895 2.804 2.858 2.019 + 12 4 6 3 29.36 64.07 66.50 66.27 94.34 90.67 0 43033 16951 23554 0.547 0.547 0.547 1.000 1.000 0 690.9 22375 0 0 1179 23554 -5298 18256 5298 0 7844 9159 2.802 2.853 2.023 + 12 4 6 4 29.24 64.33 66.50 66.11 94.18 90.53 0 43049 16999 24107 0.560 0.560 0.560 1.000 1.000 0 706.9 22901 0 0 1206 24107 -5536 18571 5536 0 8041 9384 2.800 2.848 2.008 + 12 4 6 5 29.12 64.59 66.50 66.14 94.22 90.37 0 43065 17047 22600 0.525 0.525 0.525 1.000 1.000 0 662.5 21470 0 0 1130 22600 -5316 17284 5316 0 7524 8791 2.798 2.853 1.997 + 12 4 7 0 29.42 64.80 67.09 66.24 100.25 97.73 0 0 0 107k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9055 42283 9871 816 0 52290 0 0 0.811 + 12 4 7 1 29.72 66.47 67.53 66.78 100.79 98.25 0 0 0 80393 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9159 42387 9767 607 0 52290 0 0 0.813 + 12 4 7 2 30.02 66.92 67.87 67.36 101.38 98.88 0 0 0 60274 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8897 42794 9360 463 0 52290 0 0 0.821 + 12 4 7 3 30.32 67.06 68.00 67.72 101.73 99.24 0 0 0 44504 0 0 1.000 0 0 0.851 1074 0 42552 0 1833 44385 -7535 36693 7692 157 0 44521 0 0 0.827 + 12 4 7 4 30.62 66.99 68.00 67.85 95.80 93.45 0 42868 16452 37275 0.870 0.870 0.870 1.000 1.000 0 1098 35403 0 0 1873 37275 -6732 30544 6732 0 12491 14500 2.825 2.834 2.126 + 12 4 7 5 30.92 66.88 68.00 67.84 95.77 93.22 0 42829 16333 34088 0.796 0.796 0.796 1.000 1.000 0 1005 32373 0 0 1714 34088 -6389 27699 6389 0 11374 13225 2.831 2.846 2.116 + 12 4 8 0 32.18 67.05 68.00 67.82 95.64 92.80 0 42663 15833 30438 0.713 0.713 0.713 1.000 1.000 0 900.6 28902 0 0 1537 30438 -6019 24419 6019 0 10039 11712 2.855 2.879 2.110 + 12 4 8 1 33.44 67.11 68.00 67.84 95.55 92.43 0 42498 15333 27210 0.640 0.640 0.640 1.000 1.000 0 808.2 25831 0 0 1379 27210 -5621 21589 5621 -0 8865 10380 2.880 2.914 2.107 + 12 4 8 2 34.70 67.19 68.00 67.84 95.45 92.03 0 42333 14833 24398 0.576 0.576 0.576 1.000 1.000 0 727.5 23157 0 0 1241 24398 -5287 19111 5287 0 7847 9225 2.905 2.951 2.103 + 12 4 8 3 35.96 67.23 68.00 67.85 95.73 91.94 0 42762 14540 22227 0.520 0.520 0.520 1.000 1.000 0 656.2 21108 0 0 1119 22227 -5052 17176 5052 -0 6966 8222 2.969 3.030 2.124 + 12 4 8 4 37.22 67.33 68.00 67.85 96.14 91.94 0 43378 14312 20471 0.472 0.472 0.472 1.000 1.000 0 595.7 19455 0 0 1016 20471 -4878 15593 4878 -0 6220 7373 3.045 3.128 2.155 + 12 4 8 5 38.48 67.41 68.00 67.86 96.55 91.96 0 43993 14084 19061 0.433 0.433 0.433 1.000 1.000 0 546.9 18127 0 0 933 19061 -4732 14328 4732 0 5606 6676 3.124 3.233 2.191 + 12 4 9 0 39.11 67.52 68.00 67.87 96.76 92.04 0 44301 13971 18674 0.422 0.422 0.422 1.000 1.000 0 532.1 17766 0 0 908 18673 -4689 13985 4689 -0 5405 6449 3.163 3.287 2.215 + 12 4 9 1 39.74 67.58 68.00 67.89 96.98 91.99 0 44608 13858 17793 0.399 0.399 0.399 1.000 1.000 0 503.5 16934 0 0 859 17793 -4585 13208 4585 0 5055 6050 3.204 3.350 2.233 + 12 4 9 2 40.37 67.58 68.00 67.90 97.19 91.97 0 44916 13744 17095 0.381 0.381 0.381 1.000 1.000 0 480.5 16276 0 0 820 17095 -4508 12587 4508 0 4765 5721 3.244 3.416 2.254 + 12 4 9 3 41.00 67.57 68.00 67.90 97.39 91.92 0 45224 13631 16460 0.364 0.364 0.364 1.000 1.000 0 459.5 15676 0 0 784 16460 -4445 12015 4445 0 4498 5418 3.285 3.485 2.275 + 12 4 9 4 41.63 67.46 68.00 67.90 97.59 91.89 0 45531 13519 15934 0.350 0.350 0.350 1.000 1.000 0 441.8 15180 0 0 754 15934 -4395 11539 4395 0 4267 5157 3.327 3.558 2.299 + 12 4 9 5 42.26 67.56 68.00 67.88 97.78 91.82 0 45839 13406 15374 0.335 0.335 0.335 1.000 1.000 0 423.4 14652 0 0 722 15374 -4351 11023 4351 0 4028 4887 3.369 3.637 2.321 + 12 4 10 0 42.41 67.64 68.00 67.90 97.85 91.90 0 45912 13379 15461 0.337 0.337 0.337 1.000 1.000 0 425.1 14735 0 0 725 15460 -4353 11108 4353 -0 4036 4898 3.379 3.651 2.333 + 12 4 10 1 42.56 67.68 68.00 67.92 97.91 91.85 0 45985 13352 15143 0.329 0.329 0.329 1.000 1.000 0 415.7 14434 0 0 709 15143 -4305 10838 4305 -0 3926 4772 3.389 3.677 2.338 + 12 4 10 2 42.71 67.70 68.00 67.93 97.97 91.79 0 46059 13325 14854 0.322 0.322 0.322 1.000 1.000 0 407.1 14159 0 0 695 14854 -4265 10589 4265 0 3824 4655 3.399 3.702 2.343 + 12 4 10 3 42.86 67.72 68.00 67.93 98.02 91.73 0 46132 13299 14557 0.316 0.316 0.316 1.000 1.000 0 398.3 13878 0 0 680 14557 -4225 10332 4225 0 3721 4537 3.409 3.730 2.348 + 12 4 10 4 43.01 67.92 68.00 67.94 98.07 91.60 0 46205 13272 14143 0.306 0.306 0.306 1.000 1.000 0 386.4 13484 0 0 659 14143 -4173 9970 4173 0 3584 4380 3.419 3.762 2.350 + 12 4 10 5 43.16 68.01 68.00 67.97 98.16 91.55 0 46278 13245 13797 0.298 0.298 0.298 1.000 1.000 0 376.3 13154 0 0 642 13797 -4109 9687 4109 0 3467 4246 3.430 3.794 2.358 + 12 4 11 0 43.49 67.97 68.00 67.99 98.28 91.43 0 46440 13186 13307 0.286 0.287 0.286 1.000 1.000 0 361.6 12687 0 0 617 13304 -4043 9261 4043 -0 3289 4042 3.452 3.858 2.371 + 12 4 11 1 43.82 68.19 68.00 67.99 98.38 91.41 0 46601 13127 12744 0.273 0.273 0.282 0.971 0.993 0 345.2 12155 0 0 589 12744 -3911 8833 3911 0 2987 3712 3.475 4.069 2.470 + 12 4 11 2 44.15 68.20 68.00 68.03 98.53 91.50 0 46762 13068 12269 0.262 0.262 0.279 0.939 0.985 0 331.2 11704 0 0 565 12269 -3759 8510 3759 0 2865 3566 3.497 4.085 2.481 + 12 4 11 3 44.48 68.28 68.00 68.04 98.64 91.55 0 46923 13010 11687 0.249 0.249 0.277 0.898 0.975 0 314.4 11150 0 0 536 11687 -3593 8094 3593 0 2724 3397 3.520 4.093 2.482 + 12 4 11 4 44.81 68.32 68.00 68.05 98.76 91.61 0 47084 12951 11166 0.237 0.237 0.275 0.862 0.966 0 299.4 10655 0 0 511 11166 -3440 7726 3440 0 2595 3242 3.543 4.107 2.488 + 12 4 11 5 45.14 68.39 68.00 68.06 98.87 91.66 0 47245 12892 10615 0.225 0.225 0.273 0.823 0.956 0 283.6 10132 0 0 484 10615 -3281 7335 3281 -0 2460 3081 3.567 4.118 2.491 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 186 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.39 68.00 68.07 98.93 91.69 0 47319 12866 9620 0.203 0.203 0.272 0.748 0.937 0 256.7 9183 0 0 438 9620 -2975 6646 2975 0 2261 2836 3.577 4.061 2.462 + 12 4 12 1 45.44 68.26 68.00 68.08 98.98 91.71 0 47392 12839 9008 0.190 0.190 0.271 0.702 0.925 0 240.0 8599 0 0 409 9008 -2790 6218 2790 0 2131 2677 3.588 4.035 2.447 + 12 4 12 2 45.59 68.25 68.00 68.05 99.01 91.68 0 47465 12812 8316 0.175 0.175 0.270 0.649 0.912 0 221.2 7939 0 0 377 8316 -2590 5726 2590 -0 1984 2498 3.599 4.002 2.425 + 12 4 12 3 45.74 68.15 68.00 68.05 99.06 91.69 0 47538 12786 7716 0.162 0.162 0.269 0.603 0.901 0 204.9 7366 0 0 350 7716 -2409 5307 2409 0 1853 2339 3.609 3.976 2.410 + 12 4 12 4 45.89 68.14 68.00 68.04 99.09 91.68 0 47612 12759 7237 0.152 0.152 0.268 0.567 0.892 0 191.9 6910 0 0 327 7237 -2270 4967 2270 0 1745 2209 3.620 3.960 2.397 + 12 4 12 5 46.04 68.05 68.00 68.03 99.13 91.68 0 47685 12732 6822 0.143 0.143 0.267 0.536 0.884 0 180.6 6514 0 0 308 6822 -2146 4676 2146 0 1649 2094 3.631 3.950 2.389 + 12 4 13 0 46.40 67.98 68.00 68.02 99.23 91.69 0 47861 12668 5970 0.125 0.125 0.265 0.471 0.868 0 157.5 5701 0 0 269 5970 -1892 4078 1892 0 1448 1853 3.656 3.937 2.375 + 12 4 13 1 46.76 67.88 68.00 68.00 99.33 91.70 0 48036 12604 5452 0.114 0.114 0.262 0.433 0.858 0 143.3 5208 0 0 244 5452 -1741 3712 1741 0 1317 1698 3.683 3.955 2.377 + 12 4 13 2 47.12 67.82 68.00 67.99 99.39 91.68 0 48154 12562 4960 0.103 0.103 0.261 0.395 0.849 0 130.0 4738 0 0 222 4960 -1593 3367 1593 0 1199 1557 3.700 3.954 2.370 + 12 4 13 3 47.48 67.75 68.00 67.97 99.38 91.66 0 48154 12562 4585 .0952 .0952 0.261 0.365 0.841 0 120.2 4380 0 0 205 4585 -1476 3109 1476 -0 1118 1459 3.700 3.919 2.350 + 12 4 13 4 47.84 67.68 68.00 67.96 99.37 91.64 0 48154 12562 4381 .0910 .0910 0.261 0.349 0.837 0 114.9 4185 0 0 196 4381 -1413 2968 1413 0 1073 1406 3.700 3.900 2.339 + 12 4 13 5 48.20 67.64 68.00 67.95 99.35 91.61 0 48154 12562 4220 .0876 .0876 0.261 0.336 0.834 0 110.6 4031 0 0 189 4220 -1364 2856 1364 0 1038 1363 3.700 3.885 2.329 + 12 4 14 0 48.47 67.62 68.00 67.94 99.34 91.60 0 48154 12562 4252 .0883 .0883 0.261 0.339 0.835 0 111.5 4062 0 0 190 4252 -1376 2876 1376 0 1045 1371 3.700 3.888 2.329 + 12 4 14 1 48.74 67.55 68.00 67.93 99.34 91.59 0 48154 12562 4285 .0890 .0890 0.261 0.341 0.835 0 112.3 4094 0 0 192 4285 -1388 2897 1388 -0 1052 1380 3.700 3.891 2.330 + 12 4 14 2 49.01 67.58 68.00 67.92 99.33 91.57 0 48154 12562 4236 .0880 .0880 0.261 0.337 0.834 0 111.0 4046 0 0 189 4236 -1374 2862 1374 0 1041 1367 3.700 3.886 2.325 + 12 4 14 3 49.28 67.64 68.00 67.93 99.33 91.58 0 48154 12562 4090 .0849 .0849 0.261 0.326 0.831 0 107.2 3907 0 0 183 4090 -1326 2764 1326 0 1009 1328 3.700 3.873 2.319 + 12 4 14 4 49.55 67.56 68.00 67.94 99.34 91.59 0 48154 12562 3902 .0810 .0810 0.261 0.311 0.828 0 102.3 3728 0 0 175 3902 -1264 2639 1264 0 967 1278 3.700 3.856 2.312 + 12 4 14 5 49.82 67.58 68.00 67.92 99.33 91.57 0 48154 12562 3675 .0763 .0763 0.261 0.293 0.823 0 96.3 3511 0 0 164 3675 -1192 2483 1192 0 916 1216 3.700 3.834 2.299 + 12 4 15 0 49.67 67.58 68.00 67.92 99.33 91.57 0 48154 12562 2530 .0525 .0525 0.261 0.201 0.800 0 66.3 2417 0 0 113 2530 -821 1709 821 0 648 898 3.700 3.728 2.245 + 12 4 15 1 49.52 67.57 68.00 67.92 99.33 91.57 0 48154 12562 2233 .0464 .0464 0.261 0.178 0.794 0 58.5 2133 0 0 100 2233 -725 1509 725 0 576 813 3.700 3.701 2.231 + 12 4 15 2 49.37 67.56 68.00 67.92 99.32 91.55 0 48154 12562 2000 .0415 .0415 0.261 0.159 0.790 0 52.4 1911 0 0 89 2000 -650 1350 650 0 519 745 3.700 3.679 2.218 + 12 4 15 3 49.22 67.53 68.00 67.91 99.32 91.54 0 48154 12562 2155 .0447 .0447 0.261 0.172 0.793 0 56.5 2058 0 0 96 2155 -701 1454 701 0 557 790 3.700 3.694 2.224 + 12 4 15 4 49.07 67.56 68.00 67.90 99.31 91.53 0 48154 12562 2659 .0552 .0552 0.261 0.212 0.803 0 69.7 2540 0 0 119 2659 -866 1793 866 0 679 934 3.700 3.740 2.247 + 12 4 15 5 48.92 67.93 68.00 67.91 99.31 91.54 0 48154 12562 3159 .0656 .0656 0.261 0.251 0.813 0 82.8 3018 0 0 141 3159 -1028 2131 1028 0 797 1075 3.700 3.787 2.271 + 12 4 16 0 48.59 67.66 68.00 67.97 99.37 91.64 0 48154 12562 4442 .0923 .0923 0.261 0.354 0.838 0 116.5 4244 0 0 199 4442 -1433 3009 1433 0 1087 1422 3.700 3.906 2.341 + 12 4 16 1 48.26 68.09 68.00 67.93 99.34 91.58 0 48154 12562 5047 0.105 0.105 0.261 0.402 0.850 0 132.3 4821 0 0 226 5047 -1636 3411 1636 0 1217 1579 3.700 3.962 2.364 + 12 4 16 2 47.93 68.19 68.00 68.00 99.41 91.70 0 48154 12562 5674 0.118 0.118 0.261 0.452 0.863 0 148.8 5421 0 0 254 5674 -1820 3854 1820 0 1348 1739 3.700 4.020 2.406 + 12 4 16 3 47.60 68.30 68.00 68.03 99.43 91.75 0 48154 12562 6205 0.129 0.129 0.261 0.494 0.873 0 162.7 5928 0 0 278 6205 -1982 4223 1982 -0 1457 1871 3.700 4.069 2.435 + 12 4 16 4 47.27 68.38 68.00 68.05 99.46 91.79 0 48154 12562 6636 0.138 0.138 0.261 0.528 0.882 0 174.0 6339 0 0 297 6636 -2112 4524 2112 0 1543 1976 3.700 4.109 2.459 + 12 4 16 5 46.94 68.39 68.00 68.07 99.46 91.82 0 48124 12572 7016 0.146 0.146 0.261 0.558 0.890 0 184.0 6702 0 0 314 7016 -2223 4793 2223 0 1622 2072 3.696 4.132 2.476 + 12 4 17 0 46.79 68.55 68.00 68.08 99.42 91.82 0 48051 12599 7344 0.153 0.153 0.262 0.583 0.896 0 192.9 7015 0 0 329 7344 -2321 5024 2321 0 1697 2163 3.685 4.134 2.479 + 12 4 17 1 46.64 68.64 68.00 68.11 99.40 91.86 0 47978 12626 7585 0.158 0.158 0.263 0.601 0.900 0 199.6 7244 0 0 340 7585 -2380 5205 2380 0 1755 2232 3.674 4.127 2.484 + 12 4 17 2 46.49 68.78 68.00 68.13 99.37 91.88 0 47905 12652 7772 0.162 0.162 0.264 0.614 0.904 0 204.8 7422 0 0 349 7772 -2425 5346 2425 -0 1803 2289 3.663 4.116 2.483 + 12 4 17 3 46.34 68.84 68.00 68.15 99.35 91.92 0 47831 12679 8004 0.167 0.167 0.265 0.631 0.908 0 211.2 7643 0 0 360 8004 -2481 5523 2481 -0 1860 2357 3.652 4.108 2.487 + 12 4 17 4 46.19 68.98 68.00 68.17 99.31 91.93 0 47758 12706 8176 0.171 0.171 0.266 0.644 0.911 0 216.1 7808 0 0 369 8176 -2523 5653 2523 -0 1906 2411 3.641 4.096 2.485 + 12 4 17 5 46.04 69.05 68.00 68.19 99.29 91.96 0 47685 12732 8397 0.176 0.176 0.267 0.660 0.915 0 222.3 8018 0 0 379 8397 -2574 5823 2574 0 1961 2477 3.631 4.088 2.488 + 12 4 18 0 45.47 69.18 68.00 68.21 99.13 91.93 0 47407 12834 8158 0.172 0.172 0.271 0.636 0.909 0 217.2 7787 0 0 371 8158 -2474 5684 2474 -0 1963 2470 3.590 3.968 2.436 + 12 4 18 1 44.90 69.21 68.00 68.23 98.97 91.92 0 47128 12935 8417 0.179 0.179 0.274 0.651 0.913 0 225.4 8032 0 0 385 8417 -2521 5896 2521 -0 2062 2583 3.550 3.895 2.410 + 12 4 18 2 44.33 69.32 68.00 68.24 98.79 91.88 0 46850 13036 8688 0.185 0.185 0.278 0.666 0.917 0 234.1 8288 0 0 399 8688 -2577 6111 2577 -0 2165 2701 3.510 3.828 2.383 + 12 4 18 3 43.76 69.45 68.00 68.26 98.63 91.86 0 46571 13138 8951 0.192 0.192 0.282 0.681 0.920 0 242.6 8537 0 0 414 8951 -2623 6328 2623 -0 2268 2818 3.471 3.764 2.360 + 12 4 18 4 43.19 69.57 68.00 68.28 98.47 91.84 0 46293 13240 9210 0.199 0.199 0.286 0.696 0.924 0 251.1 8782 0 0 428 9210 -2665 6545 2665 -0 2371 2936 3.432 3.704 2.338 + 12 4 18 5 42.62 69.71 68.00 68.30 98.31 91.82 0 46015 13341 9495 0.206 0.206 0.290 0.712 0.928 0 260.5 9050 0 0 444 9495 -2713 6782 2713 0 2481 3061 3.393 3.648 2.318 + 12 4 19 0 42.20 69.76 68.00 68.32 98.20 91.82 0 45810 13417 9444 0.206 0.206 0.293 0.704 0.926 0 260.2 9000 0 0 444 9444 -2669 6775 2669 0 2507 3087 3.365 3.591 2.296 + 12 4 19 1 41.78 69.75 68.00 68.34 98.08 91.79 0 45605 13492 9632 0.211 0.211 0.296 0.714 0.928 0 266.6 9177 0 0 455 9632 -2698 6934 2698 0 2584 3175 3.337 3.552 2.282 + 12 4 19 2 41.36 69.75 68.00 68.33 97.94 91.74 0 45399 13567 9824 0.216 0.216 0.299 0.724 0.931 0 273.2 9358 0 0 466 9824 -2733 7091 2733 0 2662 3265 3.309 3.515 2.267 + 12 4 19 3 40.94 69.76 68.00 68.34 97.81 91.70 0 45194 13642 10012 0.222 0.222 0.302 0.734 0.933 0 279.7 9535 0 0 477 10012 -2766 7246 2766 0 2741 3354 3.281 3.479 2.252 + 12 4 19 4 40.52 69.72 68.00 68.34 97.68 91.66 0 44989 13717 10216 0.227 0.227 0.305 0.745 0.936 0 286.7 9727 0 0 489 10216 -2802 7414 2802 0 2823 3449 3.254 3.445 2.238 + 12 4 19 5 40.10 69.72 68.00 68.33 97.54 91.60 0 44784 13793 10401 0.232 0.232 0.308 0.754 0.939 0 293.2 9901 0 0 500 10401 -2836 7565 2836 0 2902 3539 3.227 3.412 2.224 + 12 4 20 0 40.37 69.68 68.00 68.34 97.63 91.64 0 44916 13744 10601 0.236 0.236 0.306 0.771 0.943 0 298.0 10093 0 0 508 10601 -2900 7701 2900 0 2922 3566 3.244 3.455 2.245 + 12 4 20 1 40.64 69.73 68.00 68.33 97.71 91.67 0 45048 13696 10608 0.235 0.235 0.304 0.775 0.944 0 297.3 10101 0 0 507 10608 -2915 7693 2915 0 2898 3542 3.262 3.485 2.259 + 12 4 20 2 40.91 69.77 68.00 68.34 97.81 91.72 0 45180 13648 10586 0.234 0.234 0.302 0.776 0.944 0 295.8 10081 0 0 505 10586 -2915 7671 2915 0 2868 3509 3.279 3.515 2.274 + 12 4 20 3 41.18 69.63 68.00 68.35 97.90 91.77 0 45312 13599 10604 0.234 0.234 0.300 0.780 0.945 0 295.4 10100 0 0 504 10604 -2927 7677 2927 0 2847 3487 3.297 3.548 2.291 + 12 4 20 4 41.45 69.78 68.00 68.33 97.97 91.77 0 45443 13551 10528 0.232 0.232 0.298 0.777 0.944 0 292.4 10029 0 0 499 10528 -2927 7600 2927 0 2805 3441 3.315 3.575 2.300 + 12 4 20 5 41.72 69.72 68.00 68.36 98.08 91.84 0 45575 13502 10506 0.231 0.231 0.296 0.778 0.945 0 291.0 10010 0 0 496 10506 -2921 7585 2921 0 2776 3409 3.333 3.606 2.318 + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 187 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.84 68.00 68.35 97.94 91.78 0 45370 13578 10893 0.240 0.240 0.299 0.802 0.951 0 303.1 10376 0 0 517 10893 -3015 7878 3015 -0 2897 3550 3.305 3.582 2.308 + 12 4 21 1 40.88 69.90 68.00 68.37 97.82 91.76 0 45165 13653 11038 0.244 0.244 0.302 0.808 0.952 0 308.5 10512 0 0 526 11038 -3026 8012 3026 0 2968 3631 3.277 3.542 2.293 + 12 4 21 2 40.46 69.89 68.00 68.38 97.70 91.73 0 44960 13728 11181 0.249 0.249 0.305 0.814 0.954 0 313.9 10646 0 0 536 11181 -3039 8143 3039 0 3039 3711 3.250 3.503 2.278 + 12 4 21 3 40.04 69.89 68.00 68.37 97.56 91.67 0 44755 13804 11346 0.254 0.254 0.308 0.822 0.955 0 320.0 10800 0 0 546 11346 -3065 8281 3065 0 3114 3797 3.223 3.468 2.262 + 12 4 21 4 39.62 69.88 68.00 68.37 97.43 91.62 0 44550 13879 11516 0.259 0.259 0.312 0.830 0.957 0 326.3 10959 0 0 557 11516 -3090 8426 3090 0 3192 3885 3.196 3.433 2.248 + 12 4 21 5 39.20 69.88 68.00 68.37 97.29 91.56 0 44345 13955 11682 0.263 0.263 0.315 0.837 0.959 0 332.6 11115 0 0 567 11682 -3116 8567 3116 -0 3269 3973 3.169 3.400 2.233 + 12 4 22 0 39.29 69.89 68.00 68.37 97.32 91.58 0 44389 13938 12371 0.279 0.279 0.314 0.888 0.972 0 351.8 11771 0 0 600 12371 -3301 9070 3301 0 3409 4145 3.175 3.453 2.262 + 12 4 22 1 39.38 69.98 68.00 68.38 97.35 91.60 0 44433 13922 12474 0.281 0.281 0.313 0.896 0.974 0 354.4 11870 0 0 605 12474 -3331 9143 3331 0 3421 4162 3.180 3.469 2.271 + 12 4 22 2 39.47 70.03 68.00 68.39 97.40 91.64 0 44477 13906 12543 0.282 0.282 0.313 0.902 0.975 0 356.0 11935 0 0 607 12543 -3342 9200 3342 0 3426 4170 3.186 3.483 2.281 + 12 4 22 3 39.56 70.04 68.00 68.40 97.44 91.67 0 44520 13890 12606 0.283 0.283 0.312 0.908 0.977 0 357.4 11996 0 0 610 12606 -3357 9249 3357 0 3430 4177 3.192 3.497 2.289 + 12 4 22 4 39.65 69.99 68.00 68.41 97.47 91.69 0 44564 13874 12664 0.284 0.284 0.311 0.913 0.978 0 358.7 12052 0 0 612 12664 -3374 9289 3374 -0 3433 4181 3.198 3.511 2.297 + 12 4 22 5 39.74 70.15 68.00 68.40 97.49 91.69 0 44608 13858 12615 0.283 0.283 0.311 0.910 0.978 0 357.0 12006 0 0 609 12615 -3369 9246 3369 0 3413 4159 3.204 3.517 2.299 + 12 4 23 0 39.59 70.25 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.69 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.26 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.12 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.85 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.69 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 006: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 006: + + + ALTER RSYS "rsys1" + rsCtrlAuxH = LOCKOUT + FIXRPTITLES("RSYS -- Aux Lockout / Def RevCycle") + + RUN + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 006 Sat 01-Jan-22 2:52:48 pm Page 188 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 007: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 58 subhours of run. + Total condensation heat = 0.0548905 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.697 0 0.294 0.0672 0 0 0 0 0.0531 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.033 0 1.216 0.243 0 0 0 0 0.212 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.041 0 1.226 0.227 0 0 0 0 0.223 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.321 0 0.808 0.222 0 0 0 0 0.145 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.312 0 0.0894 0.0110 0 0 0 0 0.0168 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.273 0 0.0951 0.0278 0 0 0 0 0.0172 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Cycle / Def None + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 72.847 1.345 1.125 0 0.0672 0.0531 1.245 0 0 0 0 0 0 0 0 0 0 0.294 0 0.0672 0.0531 0.0359 0.450 0 0 0 0 0 0 0 0.874 -.0073 0 0 0 0 + Dec 279.90 4.867 4.470 0 0.243 0.212 4.925 0 0 0 0 0 0 0 0 0 0 1.216 0 0.243 0.212 0.0605 1.732 0 0 0 0 0 0 0 3.601 -.0271 0 0 0 0 + Jan 307.45 4.531 4.731 0 0.227 0.223 5.181 0 0 0 0 0 0 0 0 0 0 1.226 0 0.227 0.223 0.0760 1.752 0 0 0 0 0 0 0 3.807 -.0308 0 0 0 0 + Feb 186.79 4.435 3.061 0 0.222 0.145 3.427 0 0 0 0 0 0 0 0 0 0 0.808 0 0.222 0.145 0.0498 1.225 0 0 0 0 0 0 0 2.484 -.0180 0 0 0 0 + Mar 25.084 0.219 0.359 0 0.0110 0.0168 0.386 0 0 0 0 0 0 0 0 0 0 0.0894 0 0.0110 0.0168 .00887 0.126 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 21.992 0.557 0.364 0 0.0278 0.0172 0.409 0 0 0 0 0 0 0 0 0 0 0.0951 0 0.0278 0.0172 0.0180 0.158 0 0 0 0 0 0 0 0.288 -.0015 0 0 0 0 + + Yr 894.07 15.954 14.110 0 0.798 0.667 15.574 0 0 0 0 0 0 0 0 0 0 3.728 0 0.798 0.667 0.249 5.442 0 0 0 0 0 0 0 11.317 -.0885 0 0 0 0 + + + +RSYS -- Aux Cycle / Def None + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.294 0.0672 0.0531 0.450 0.874 1.943 0.450 0.874 1.943 0 0 0 0 0 0 0 + Dec 1.216 0.243 0.212 1.732 3.601 2.079 1.732 3.601 2.079 0 0 0 0 0 0 -.0078 + Jan 1.226 0.227 0.223 1.752 3.807 2.173 1.752 3.807 2.173 0 0 0 0 0 0 0 + Feb 0.808 0.222 0.145 1.225 2.484 2.028 1.225 2.484 2.028 0 0 0 0 0 0 -.0039 + Mar 0.0894 0.0110 0.0168 0.126 0.265 2.101 0.126 0.265 2.101 0 0 0 0 0 0 -.0020 + Apr 0.0951 0.0278 0.0172 0.158 0.288 1.822 0.158 0.288 1.822 0 0 0 0 0 0 -.0020 + + Yr 3.728 0.798 0.667 5.442 11.317 2.080 5.442 11.317 2.080 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 189 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Cycle / Def None for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.769 0 0.334 2.239 4.699 2.098 2.239 4.699 2.098 0 0 0 0 0 0 -0.000 + 8 6.979 5.244 1.262 13.622 25.241 1.853 13.622 25.241 1.853 0 0 0 0 0 0 -0.000 + 9 4.711 0 0.891 5.738 14.030 2.445 5.738 14.030 2.445 0 0 0 0 0 0 -0.000 + 10 3.936 0 0.764 4.837 11.614 2.401 4.837 11.614 2.401 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.148 9.804 2.364 4.148 9.804 2.364 0 0 0 0 0 0 -0.000 + 12 2.898 0 0.595 3.629 8.455 2.330 3.629 8.455 2.330 0 0 0 0 0 0 -0.000 + 13 2.361 0 0.502 2.999 7.081 2.361 2.999 7.081 2.361 0 0 0 0 0 0 -0.000 + 14 1.978 0 0.400 2.378 5.690 2.392 2.378 5.690 2.392 0 0 0 0 0 0 0 + 15 1.975 0 0.400 2.375 5.699 2.400 2.375 5.699 2.400 0 0 0 0 0 0 0 + 16 1.962 0 0.397 2.359 5.690 2.412 2.359 5.690 2.412 0 0 0 0 0 0 0 + 17 1.978 0 0.400 2.378 5.774 2.428 2.378 5.774 2.428 0 0 0 0 0 0 0 + 18 1.952 0 0.394 2.346 5.704 2.431 2.346 5.704 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.382 5.444 2.285 2.382 5.444 2.285 0 0 0 0 0 0 -0.000 + 20 1.834 0 0.365 2.336 5.360 2.295 2.336 5.360 2.295 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.502 2.316 2.376 5.502 2.316 0 0 0 0 0 0 -0.000 + 22 2.068 0 0.416 2.621 6.182 2.359 2.621 6.182 2.359 0 0 0 0 0 0 -0.000 + 23 2.368 0 0.477 2.982 7.152 2.398 2.982 7.152 2.398 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Cycle / Def None for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.593 0 0.803 5.533 12.549 2.268 5.533 12.549 2.268 0 0 0 0 0 0 -0.000 + 8 8.610 6.661 1.446 16.854 30.405 1.804 16.854 30.405 1.804 0 0 0 0 0 0 -0.000 + 9 5.866 0 1.018 7.020 17.000 2.422 7.020 17.000 2.422 0 0 0 0 0 0 -0.000 + 10 4.402 0 0.802 5.341 12.951 2.425 5.341 12.951 2.425 0 0 0 0 0 0 -0.000 + 11 3.664 0 0.694 4.495 10.936 2.433 4.495 10.936 2.433 0 0 0 0 0 0 -0.000 + 12 3.169 0 0.622 3.927 9.652 2.458 3.927 9.652 2.458 0 0 0 0 0 0 -0.000 + 13 2.278 0 0.475 2.890 7.211 2.495 2.890 7.211 2.495 0 0 0 0 0 0 -0.000 + 14 2.007 0 0.408 2.552 6.188 2.425 2.552 6.188 2.425 0 0 0 0 0 0 -0.000 + 15 1.935 0 0.390 2.461 5.945 2.416 2.461 5.945 2.416 0 0 0 0 0 0 -0.000 + 16 1.338 0 0.252 1.726 3.855 2.233 1.726 3.855 2.233 0 0 0 0 0 0 -0.000 + 17 1.797 0 0.356 2.290 5.466 2.387 2.290 5.466 2.387 0 0 0 0 0 0 -0.000 + 18 1.976 0 0.399 2.511 6.174 2.458 2.511 6.174 2.458 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 190 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.114 0 0.406 2.656 6.350 2.391 2.656 6.350 2.391 0 0 0 0 0 0 -0.000 + 20 2.512 0 0.449 3.097 7.113 2.297 3.097 7.113 2.297 0 0 0 0 0 0 -0.000 + 21 2.848 0 0.497 3.482 7.968 2.288 3.482 7.968 2.288 0 0 0 0 0 0 -0.000 + 22 3.157 0 0.544 3.837 8.821 2.299 3.837 8.821 2.299 0 0 0 0 0 0 -0.000 + 23 3.641 0 0.616 4.394 10.103 2.299 4.394 10.103 2.299 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Cycle / Def None for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.651 0 0.0836 0.871 1.321 1.516 0.871 1.321 1.516 0 0 0 0 0 0 -0.000 + 6 1.884 0 0.249 2.269 3.943 1.738 2.269 3.943 1.738 0 0 0 0 0 0 -0.000 + 7 8.919 5.601 1.324 15.980 27.025 1.691 15.980 27.025 1.691 0 0 0 0 0 0 -0.000 + 8 12.811 8.658 1.895 23.501 40.767 1.735 23.501 40.767 1.735 0 0 0 0 0 0 -0.000 + 9 7.007 0 1.092 8.235 18.639 2.263 8.235 18.639 2.263 0 0 0 0 0 0 -0.000 + 10 3.556 0 0.609 4.301 9.768 2.271 4.301 9.768 2.271 0 0 0 0 0 0 -0.000 + 11 1.900 0 0.332 2.368 5.205 2.198 2.368 5.205 2.198 0 0 0 0 0 0 -0.000 + 12 1.359 0 0.244 1.739 3.753 2.158 1.739 3.753 2.158 0 0 0 0 0 0 -0.000 + 13 0.883 0 0.158 1.177 2.396 2.035 1.177 2.396 2.035 0 0 0 0 0 0 -0.000 + 14 0.416 0 0.0710 0.623 1.071 1.718 0.623 1.071 1.718 0 0 0 0 0 0 -0.000 + 15 0.0297 0 .00490 0.171 0.0733 0.428 0.171 0.0733 0.428 0 0 0 0 0 0 -0.000 + 16 0.0156 0 .00257 0.155 0.0380 0.246 0.155 0.0380 0.246 0 0 0 0 0 0 -0.000 + 17 0.602 0 0.105 0.843 1.550 1.838 0.843 1.550 1.838 0 0 0 0 0 0 -0.000 + 18 1.703 0 0.310 2.150 4.675 2.175 2.150 4.675 2.175 0 0 0 0 0 0 -0.000 + 19 2.368 0 0.405 2.910 6.279 2.158 2.910 6.279 2.158 0 0 0 0 0 0 -0.000 + 20 2.939 0 0.484 3.559 7.648 2.149 3.559 7.648 2.149 0 0 0 0 0 0 -0.000 + 21 3.252 0 0.535 3.923 8.538 2.176 3.923 8.538 2.176 0 0 0 0 0 0 -0.000 + 22 3.677 0 0.599 4.412 9.655 2.188 4.412 9.655 2.188 0 0 0 0 0 0 -0.000 + 23 4.122 0 0.671 4.930 10.928 2.217 4.930 10.928 2.217 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 44600 42500 31130 3.70 3.19 2.60 2.32 4.45 3.32 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 191 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 256 109 366 1245 874 6 0 0 0 0 0 0 0 + Dec 67.54 902 407 1309 4925 3601 16 0 0 0 0 0 0 0 + Jan 67.52 945 414 1359 5181 3807 15 0 0 0 0 0 0 0 + Feb 67.64 635 294 929 3427 2484 15 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 386 265 2 0 0 0 0 0 0 0 + Apr 69.33 81 37 119 409 288 3 0 0 0 0 0 0 0 + + Yr 68.43 2907 1293 4201 15574 11317 56 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 192 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 81 37 119 443 325 -0 0 0 0 0 0 0 0 + 1 65.00 91 43 133 501 367 -0 0 0 0 0 0 0 0 + 2 65.00 102 48 150 566 416 0 0 0 0 0 0 0 0 + 3 65.00 117 55 172 651 479 -0 0 0 0 0 0 0 0 + 4 65.00 130 61 191 719 529 -0 0 0 0 0 0 0 0 + 5 65.00 143 67 210 793 583 0 0 0 0 0 0 0 0 + 6 65.00 155 74 229 864 635 0 0 0 0 0 0 0 0 + 1 66.50 948 1245 2193 13156 10618 345 0 0 0 0 0 0 0 + 2 66.50 579 341 920 3704 2784 -0 0 0 0 0 0 0 0 + 3 66.50 494 286 780 3685 2905 -0 0 0 0 0 0 0 0 + 4 66.50 524 324 849 3785 2936 0 0 0 0 0 0 0 0 + 5 66.50 537 338 875 3842 2967 0 0 0 0 0 0 0 0 + 6 66.50 523 304 826 3555 2728 -0 0 0 0 0 0 0 0 + 1 67.92 1138 1489 2626 16020 13068 326 0 0 0 0 0 0 0 + 2 68.00 579 681 1260 7104 5827 17 0 0 0 0 0 0 0 + 3 68.00 507 521 1027 6246 5218 0 0 0 0 0 0 0 0 + 4 68.00 533 536 1069 6027 4958 0 0 0 0 0 0 0 0 + 5 68.00 546 526 1071 5784 4713 0 0 0 0 0 0 0 0 + 6 68.00 532 462 994 5213 4219 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 193 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 536 407 943 4653 3710 0 0 0 0 0 0 0 0 + 2 68.00 527 356 883 4172 3289 0 0 0 0 0 0 0 0 + 3 68.00 525 312 836 3713 2877 0 0 0 0 0 0 0 0 + 4 68.00 518 270 788 3303 2515 0 0 0 0 0 0 0 0 + 5 68.00 514 237 751 2960 2208 0 0 0 0 0 0 0 0 + 6 68.00 508 206 714 2638 1924 0 0 0 0 0 0 0 0 + 1 68.00 504 188 692 2446 1754 -0 0 0 0 0 0 0 0 + 2 68.00 466 167 633 2199 1566 0 0 0 0 0 0 0 0 + 3 68.00 420 148 568 1953 1385 0 0 0 0 0 0 0 0 + 4 68.00 384 133 517 1756 1240 0 0 0 0 0 0 0 0 + 5 68.00 349 118 467 1564 1097 0 0 0 0 0 0 0 0 + 6 68.00 315 105 420 1387 967 0 0 0 0 0 0 0 0 + 1 68.00 308 101 410 1331 921 0 0 0 0 0 0 0 0 + 2 68.00 281 91 372 1190 818 0 0 0 0 0 0 0 0 + 3 68.00 254 81 335 1060 725 0 0 0 0 0 0 0 0 + 4 68.00 228 72 300 935 635 0 0 0 0 0 0 0 0 + 5 68.00 205 63 269 825 557 0 0 0 0 0 0 0 0 + 6 68.00 178 55 233 712 479 0 0 0 0 0 0 0 0 + 1 68.00 195 60 255 776 520 0 0 0 0 0 0 0 0 + 2 68.00 174 54 228 689 461 0 0 0 0 0 0 0 0 + 3 68.00 152 47 198 599 401 0 0 0 0 0 0 0 0 + 4 68.00 131 40 171 517 346 0 0 0 0 0 0 0 0 + 5 68.00 112 34 146 438 293 0 0 0 0 0 0 0 0 + 6 68.00 92 28 120 360 240 -0 0 0 0 0 0 0 0 + 1 68.00 56 17 73 219 146 -0 0 0 0 0 0 0 0 + 2 68.00 34 10 44 131 87 0 0 0 0 0 0 0 0 + 3 68.00 12 4 15 46 30 0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 194 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.00 62 18 81 222 141 -0 0 0 0 0 0 0 0 + 2 68.00 78 23 102 278 177 0 0 0 0 0 0 0 0 + 3 68.00 95 28 123 338 215 0 0 0 0 0 0 0 0 + 4 68.00 105 31 136 372 236 0 0 0 0 0 0 0 0 + 5 68.00 115 34 149 408 259 -0 0 0 0 0 0 0 0 + 6 68.00 131 39 170 466 296 0 0 0 0 0 0 0 0 + 1 68.00 130 39 169 463 294 0 0 0 0 0 0 0 0 + 2 68.00 147 44 190 521 331 0 0 0 0 0 0 0 0 + 3 68.00 159 47 207 564 357 -0 0 0 0 0 0 0 0 + 4 68.00 176 52 229 623 395 0 0 0 0 0 0 0 0 + 5 68.00 188 56 244 664 420 -0 0 0 0 0 0 0 0 + 6 68.00 205 61 265 723 457 0 0 0 0 0 0 0 0 + 1 68.00 230 68 298 809 512 0 0 0 0 0 0 0 0 + 2 68.00 247 73 320 869 549 0 0 0 0 0 0 0 0 + 3 68.00 262 78 340 926 586 -0 0 0 0 0 0 0 0 + 4 68.00 274 81 355 969 614 0 0 0 0 0 0 0 0 + 5 68.00 288 85 373 1021 648 0 0 0 0 0 0 0 0 + 6 68.00 298 89 387 1069 681 0 0 0 0 0 0 0 0 + 1 68.00 323 98 421 1174 754 -0 0 0 0 0 0 0 0 + 2 68.00 332 103 435 1225 790 0 0 0 0 0 0 0 0 + 3 68.00 340 107 447 1272 826 0 0 0 0 0 0 0 0 + 4 68.00 349 111 460 1322 862 0 0 0 0 0 0 0 0 + 5 68.00 357 115 472 1370 898 0 0 0 0 0 0 0 0 + 6 68.00 364 119 483 1417 934 0 0 0 0 0 0 0 0 + 1 68.00 401 133 533 1576 1043 0 0 0 0 0 0 0 0 + 2 68.00 408 137 545 1625 1080 0 0 0 0 0 0 0 0 + 3 68.00 413 140 553 1668 1115 -0 0 0 0 0 0 0 0 + 4 68.00 419 144 563 1715 1152 0 0 0 0 0 0 0 0 + 5 68.00 425 148 573 1760 1187 -0 0 0 0 0 0 0 0 + 6 68.00 429 151 580 1799 1219 0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 195 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 46 21 68 226 159 -0 0 0 0 0 0 0 0 + 4 65.00 121 56 178 594 417 0 0 0 0 0 0 0 0 + 5 65.00 140 65 205 689 484 0 0 0 0 0 0 0 0 + 6 65.00 155 73 228 775 546 0 0 0 0 0 0 0 0 + 1 66.50 1026 1320 2347 13175 10483 345 0 0 0 0 0 0 0 + 2 66.50 651 368 1019 3664 2645 0 0 0 0 0 0 0 0 + 3 66.50 555 302 857 3611 2754 0 0 0 0 0 0 0 0 + 4 66.50 587 344 931 3709 2778 0 0 0 0 0 0 0 0 + 5 66.50 601 366 967 3826 2859 -0 0 0 0 0 0 0 0 + 6 66.50 586 330 916 3557 2642 0 0 0 0 0 0 0 0 + 1 67.93 1201 1549 2749 16000 12922 329 0 0 0 0 0 0 0 + 2 68.00 641 706 1347 6859 5498 14 0 0 0 0 0 0 0 + 3 68.00 565 543 1108 6045 4937 -0 0 0 0 0 0 0 0 + 4 68.00 589 553 1142 5802 4660 -0 0 0 0 0 0 0 0 + 5 68.00 601 537 1138 5540 4402 -0 0 0 0 0 0 0 0 + 6 68.00 585 468 1053 4966 3914 0 0 0 0 0 0 0 0 + 1 68.00 587 413 1000 4445 3445 -0 0 0 0 0 0 0 0 + 2 68.00 577 360 938 3976 3039 0 0 0 0 0 0 0 0 + 3 68.00 574 316 889 3546 2657 0 0 0 0 0 0 0 0 + 4 68.00 565 274 839 3156 2317 0 0 0 0 0 0 0 0 + 5 68.00 560 239 799 2825 2026 0 0 0 0 0 0 0 0 + 6 68.00 551 209 760 2535 1775 0 0 0 0 0 0 0 0 + 1 68.00 515 193 708 2349 1642 0 0 0 0 0 0 0 0 + 2 68.00 464 172 636 2102 1467 0 0 0 0 0 0 0 0 + 3 68.00 419 153 572 1877 1305 0 0 0 0 0 0 0 0 + 4 68.00 380 137 517 1678 1161 0 0 0 0 0 0 0 0 + 5 68.00 344 122 467 1496 1030 0 0 0 0 0 0 0 0 + 6 68.00 311 109 420 1331 911 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 196 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 338 116 455 1419 964 -0 0 0 0 0 0 0 0 + 2 68.00 314 105 419 1289 870 0 0 0 0 0 0 0 0 + 3 68.00 285 94 378 1155 776 0 0 0 0 0 0 0 0 + 4 68.00 260 84 344 1037 694 0 0 0 0 0 0 0 0 + 5 68.00 236 74 310 921 611 0 0 0 0 0 0 0 0 + 6 68.00 210 64 274 805 531 0 0 0 0 0 0 0 0 + 1 68.00 209 63 272 791 519 0 0 0 0 0 0 0 0 + 2 68.00 191 57 248 718 470 0 0 0 0 0 0 0 0 + 3 68.00 170 51 221 641 420 0 0 0 0 0 0 0 0 + 4 68.00 152 45 197 571 374 0 0 0 0 0 0 0 0 + 5 68.00 134 40 174 507 332 0 0 0 0 0 0 0 0 + 6 68.00 117 35 153 444 291 0 0 0 0 0 0 0 0 + 1 68.00 81 24 105 306 201 0 0 0 0 0 0 0 0 + 2 68.00 63 19 81 236 155 0 0 0 0 0 0 0 0 + 3 68.00 44 13 57 166 109 0 0 0 0 0 0 0 0 + 4 68.00 28 8 36 103 68 0 0 0 0 0 0 0 0 + 5 68.00 12 4 16 46 30 -0 0 0 0 0 0 0 0 + 6 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 54 16 70 203 133 -0 0 0 0 0 0 0 0 + 5 68.00 135 41 175 503 328 -0 0 0 0 0 0 0 0 + 6 68.00 150 45 195 565 370 0 0 0 0 0 0 0 0 + 1 68.00 148 45 193 562 369 0 0 0 0 0 0 0 0 + 2 68.00 173 52 226 659 433 0 0 0 0 0 0 0 0 + 3 68.00 193 60 253 751 499 0 0 0 0 0 0 0 0 + 4 68.00 210 67 277 841 563 0 0 0 0 0 0 0 0 + 5 68.00 227 75 302 935 633 -0 0 0 0 0 0 0 0 + 6 68.00 243 83 326 1029 703 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 197 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 243 83 326 1038 712 0 0 0 0 0 0 0 0 + 2 68.00 252 86 339 1085 746 0 0 0 0 0 0 0 0 + 3 68.00 260 90 350 1123 774 -0 0 0 0 0 0 0 0 + 4 68.00 268 93 360 1163 803 -0 0 0 0 0 0 0 0 + 5 68.00 274 95 369 1195 825 0 0 0 0 0 0 0 0 + 6 68.00 282 99 381 1238 857 0 0 0 0 0 0 0 0 + 1 68.00 293 104 397 1292 895 0 0 0 0 0 0 0 0 + 2 68.00 302 108 410 1344 934 -0 0 0 0 0 0 0 0 + 3 68.00 310 112 422 1388 966 0 0 0 0 0 0 0 0 + 4 68.00 314 114 429 1415 986 0 0 0 0 0 0 0 0 + 5 68.00 323 118 441 1464 1023 0 0 0 0 0 0 0 0 + 6 68.00 327 121 448 1488 1041 -0 0 0 0 0 0 0 0 + 1 68.00 345 127 472 1562 1090 0 0 0 0 0 0 0 0 + 2 68.00 351 128 479 1578 1099 -0 0 0 0 0 0 0 0 + 3 68.00 356 129 485 1590 1105 0 0 0 0 0 0 0 0 + 4 68.00 361 129 491 1599 1108 0 0 0 0 0 0 0 0 + 5 68.00 366 130 496 1605 1110 -0 0 0 0 0 0 0 0 + 6 68.00 369 130 500 1608 1109 0 0 0 0 0 0 0 0 + 1 68.00 399 141 539 1733 1194 0 0 0 0 0 0 0 0 + 2 68.00 404 142 546 1758 1212 -0 0 0 0 0 0 0 0 + 3 68.00 407 144 550 1780 1229 -0 0 0 0 0 0 0 0 + 4 68.00 411 145 556 1802 1245 0 0 0 0 0 0 0 0 + 5 68.00 416 147 563 1824 1262 0 0 0 0 0 0 0 0 + 6 68.00 415 147 562 1825 1263 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 198 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 14 7 21 72 52 -0 0 0 0 0 0 0 0 + 2 65.00 101 46 147 511 364 0 0 0 0 0 0 0 0 + 3 65.00 114 52 166 578 412 0 0 0 0 0 0 0 0 + 4 65.00 126 58 184 645 461 -0 0 0 0 0 0 0 0 + 5 65.00 140 64 204 715 511 -0 0 0 0 0 0 0 0 + 6 65.00 154 71 225 787 562 -0 0 0 0 0 0 0 0 + 1 66.50 993 1288 2280 13152 10527 345 0 0 0 0 0 0 0 + 2 66.50 622 354 976 3657 2682 -0 0 0 0 0 0 0 0 + 3 66.50 530 293 823 3630 2807 0 0 0 0 0 0 0 0 + 4 66.50 561 335 896 3732 2836 0 0 0 0 0 0 0 0 + 5 66.50 575 357 932 3856 2924 -0 0 0 0 0 0 0 0 + 6 66.50 560 321 881 3577 2697 0 0 0 0 0 0 0 0 + 1 67.91 1175 1524 2698 16017 12994 325 0 0 0 0 0 0 0 + 2 68.00 615 721 1337 7216 5861 19 0 0 0 0 0 0 0 + 3 68.00 540 553 1093 6345 5252 0 0 0 0 0 0 0 0 + 4 68.00 565 570 1134 6155 5021 -0 0 0 0 0 0 0 0 + 5 68.00 577 560 1137 5931 4794 -0 0 0 0 0 0 0 0 + 6 68.00 562 495 1057 5388 4331 0 0 0 0 0 0 0 0 + 1 68.00 565 437 1002 4819 3817 0 0 0 0 0 0 0 0 + 2 68.00 556 386 942 4353 3411 0 0 0 0 0 0 0 0 + 3 68.00 553 342 896 3914 3018 0 0 0 0 0 0 0 0 + 4 68.00 547 307 854 3579 2725 0 0 0 0 0 0 0 0 + 5 68.00 544 280 824 3309 2485 0 0 0 0 0 0 0 0 + 6 68.00 539 257 796 3092 2296 -0 0 0 0 0 0 0 0 + 1 68.00 538 252 790 3043 2253 0 0 0 0 0 0 0 0 + 2 68.00 533 238 772 2912 2140 0 0 0 0 0 0 0 0 + 3 68.00 531 228 758 2806 2047 0 0 0 0 0 0 0 0 + 4 68.00 528 218 746 2709 1962 -0 0 0 0 0 0 0 0 + 5 68.00 527 210 738 2625 1888 -0 0 0 0 0 0 0 0 + 6 68.00 526 203 729 2546 1817 -0 0 0 0 0 0 0 0 + 1 68.00 527 204 731 2558 1826 -0 0 0 0 0 0 0 0 + 2 68.00 523 199 722 2506 1785 0 0 0 0 0 0 0 0 + 3 68.00 520 193 714 2459 1745 0 0 0 0 0 0 0 0 + 4 68.00 518 189 707 2411 1704 0 0 0 0 0 0 0 0 + 5 68.00 516 184 700 2360 1661 0 0 0 0 0 0 0 0 + 6 68.00 513 177 690 2291 1601 -0 0 0 0 0 0 0 0 + 1 68.00 492 168 660 2191 1531 0 0 0 0 0 0 0 0 + 2 68.00 473 160 633 2095 1462 0 0 0 0 0 0 0 0 + 3 68.00 457 153 610 2019 1409 0 0 0 0 0 0 0 0 + 4 68.00 437 146 583 1920 1337 0 0 0 0 0 0 0 0 + 5 68.00 422 139 561 1844 1283 0 0 0 0 0 0 0 0 + 6 68.00 403 132 535 1749 1214 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 199 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 364 118 483 1582 1100 0 0 0 0 0 0 0 0 + 2 68.00 342 111 452 1482 1030 0 0 0 0 0 0 0 0 + 3 68.00 319 103 423 1378 955 -0 0 0 0 0 0 0 0 + 4 68.00 297 95 392 1271 879 -0 0 0 0 0 0 0 0 + 5 68.00 281 90 371 1199 828 0 0 0 0 0 0 0 0 + 6 68.00 265 85 350 1125 775 -0 0 0 0 0 0 0 0 + 1 68.00 236 75 311 992 682 -0 0 0 0 0 0 0 0 + 2 68.00 218 68 286 903 617 0 0 0 0 0 0 0 0 + 3 68.00 199 62 261 820 559 -0 0 0 0 0 0 0 0 + 4 68.00 185 57 242 759 517 0 0 0 0 0 0 0 0 + 5 68.00 177 55 232 726 494 0 0 0 0 0 0 0 0 + 6 68.00 173 54 227 708 481 0 0 0 0 0 0 0 0 + 1 68.00 175 54 230 714 485 0 0 0 0 0 0 0 0 + 2 68.00 174 54 228 708 480 -0 0 0 0 0 0 0 0 + 3 68.00 174 54 228 710 482 0 0 0 0 0 0 0 0 + 4 68.00 169 52 221 686 465 -0 0 0 0 0 0 0 0 + 5 68.00 158 49 207 645 437 -0 0 0 0 0 0 0 0 + 6 68.00 149 46 195 607 412 0 0 0 0 0 0 0 0 + 1 68.00 102 32 134 416 282 -0 0 0 0 0 0 0 0 + 2 68.00 91 28 119 370 251 0 0 0 0 0 0 0 0 + 3 68.00 82 25 107 331 224 0 0 0 0 0 0 0 0 + 4 68.00 87 27 114 351 238 0 0 0 0 0 0 0 0 + 5 68.00 108 33 141 438 297 0 0 0 0 0 0 0 0 + 6 68.00 129 40 169 525 356 0 0 0 0 0 0 0 0 + 1 68.00 181 56 236 735 498 0 0 0 0 0 0 0 0 + 2 68.00 207 64 271 843 573 0 0 0 0 0 0 0 0 + 3 68.00 229 70 299 941 642 0 0 0 0 0 0 0 0 + 4 68.00 250 77 326 1030 704 -0 0 0 0 0 0 0 0 + 5 68.00 266 82 348 1101 754 0 0 0 0 0 0 0 0 + 6 68.00 280 87 366 1165 798 0 0 0 0 0 0 0 0 + 1 68.00 291 90 381 1217 835 -0 0 0 0 0 0 0 0 + 2 68.00 298 93 391 1256 865 -0 0 0 0 0 0 0 0 + 3 68.00 303 95 399 1287 889 -0 0 0 0 0 0 0 0 + 4 68.00 310 98 408 1326 918 0 0 0 0 0 0 0 0 + 5 68.00 314 100 414 1354 940 0 0 0 0 0 0 0 0 + 6 68.00 321 102 423 1391 968 0 0 0 0 0 0 0 0 + 1 68.00 307 100 406 1351 944 0 0 0 0 0 0 0 0 + 2 68.00 311 103 414 1393 980 0 0 0 0 0 0 0 0 + 3 68.00 316 106 423 1438 1015 -0 0 0 0 0 0 0 0 + 4 68.00 321 110 430 1481 1051 0 0 0 0 0 0 0 0 + 5 68.00 324 113 437 1523 1086 0 0 0 0 0 0 0 0 + 6 68.00 329 116 445 1570 1125 0 0 0 0 0 0 0 0 + 1 68.00 323 115 438 1561 1123 0 0 0 0 0 0 0 0 + 2 68.00 325 118 443 1592 1149 0 0 0 0 0 0 0 0 + 3 68.00 328 121 449 1623 1175 0 0 0 0 0 0 0 0 + 4 68.00 331 123 454 1654 1200 0 0 0 0 0 0 0 0 + 5 68.00 332 125 457 1677 1219 -0 0 0 0 0 0 0 0 + 6 68.00 336 128 464 1715 1252 0 0 0 0 0 0 0 0 + 1 68.00 345 131 476 1750 1274 0 0 0 0 0 0 0 0 + 2 68.00 348 131 479 1748 1270 -0 0 0 0 0 0 0 0 + 3 68.00 349 131 480 1753 1273 0 0 0 0 0 0 0 0 + 4 68.00 350 130 480 1746 1266 0 0 0 0 0 0 0 0 + 5 68.00 350 129 479 1738 1259 0 0 0 0 0 0 0 0 + 6 68.00 351 129 480 1738 1257 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 200 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 363 135 498 1805 1307 -0 0 0 0 0 0 0 0 + 2 68.00 363 136 499 1828 1329 -0 0 0 0 0 0 0 0 + 3 68.00 364 138 502 1853 1351 0 0 0 0 0 0 0 0 + 4 68.00 366 140 506 1880 1374 0 0 0 0 0 0 0 0 + 5 68.00 368 143 511 1909 1398 0 0 0 0 0 0 0 0 + 6 68.00 370 145 515 1936 1421 0 0 0 0 0 0 0 0 + 1 68.00 392 154 546 2050 1504 -0 0 0 0 0 0 0 0 + 2 68.00 396 155 551 2067 1516 0 0 0 0 0 0 0 0 + 3 68.00 397 155 553 2078 1525 0 0 0 0 0 0 0 0 + 4 68.00 399 156 555 2089 1533 0 0 0 0 0 0 0 0 + 5 68.00 402 157 558 2099 1540 0 0 0 0 0 0 0 0 + 6 68.00 402 156 558 2092 1534 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 201 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.59 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.45 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.28 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.12 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.92 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.79 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.63 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.47 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.31 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.14 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.98 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.82 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.67 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.51 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.35 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.19 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 66.03 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.87 65.70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.71 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.55 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.39 65.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.23 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 65.07 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.91 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.75 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.59 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.42 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.26 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.10 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.93 65.00 64.84 95.02 89.55 0 46278 17527 2660 .0575 .0575 0.379 0.152 0.788 0 72.6 2536 0 0 124 2660 -713 1947 712 -1 982 1242 3.037 2.582 1.761 + 12 2 5 0 30.77 64.15 65.00 64.81 94.98 89.59 0 46260 17574 3005 .0650 .0650 0.380 0.171 0.793 0 82.0 2865 0 0 140 3005 -801 2204 801 -0 1105 1381 3.031 2.593 1.770 + 12 2 5 1 30.62 64.11 65.00 64.84 95.00 89.64 0 46243 17620 3396 .0734 .0734 0.381 0.193 0.798 0 92.7 3238 0 0 158 3396 -899 2497 899 0 1243 1537 3.026 2.606 1.783 + 12 2 5 2 30.47 64.03 65.00 64.83 94.98 89.63 0 46225 17666 3905 .0845 .0845 0.382 0.221 0.805 0 106.6 3723 0 0 182 3905 -1034 2871 1034 -0 1419 1737 3.021 2.624 1.793 + 12 2 5 3 30.32 64.01 65.00 64.82 94.95 89.61 0 46208 17713 4315 .0934 .0934 0.383 0.244 0.811 0 117.9 4114 0 0 201 4315 -1144 3171 1144 -0 1560 1898 3.016 2.637 1.801 + 12 2 5 4 30.17 63.96 65.00 64.81 94.94 89.60 0 46190 17759 4760 0.103 0.103 0.384 0.268 0.817 0 130.1 4538 0 0 222 4760 -1261 3499 1261 0 1711 2070 3.010 2.652 1.810 + 12 2 5 5 30.02 63.94 65.00 64.80 94.91 89.59 0 46173 17806 5186 0.112 0.112 0.386 0.291 0.823 0 141.8 4944 0 0 242 5186 -1374 3812 1374 0 1855 2233 3.005 2.665 1.818 + 12 2 6 0 29.90 63.91 66.50 64.86 116.34 112.67 0 46159 17843 81079 1.000 1.757 1.000 1.000 1.000 0.656 1262 44005 32780 0 2154 78938 -13159 63709 15229 2070 14663 49733 3.001 3.001 1.285 + 12 2 6 1 29.78 69.49 66.50 66.06 96.16 91.63 0 46145 17880 22221 0.482 0.482 0.482 1.000 1.000 0 607.9 21184 0 0 1037 22221 -5520 16701 5520 -0 6940 8114 2.997 3.052 2.094 + 12 2 6 2 29.66 66.65 66.50 66.87 96.95 92.85 0 46131 17917 22110 0.479 0.479 0.479 1.000 1.000 0 605.0 21078 0 0 1032 22110 -4683 17428 4683 -0 6914 8083 2.993 3.049 2.193 + 12 2 6 3 29.54 65.81 66.50 66.50 96.58 92.43 0 46117 17954 22710 0.492 0.492 0.492 1.000 1.000 0 621.6 21649 0 0 1061 22710 -5091 17618 5091 0 7118 8315 2.989 3.041 2.154 + 12 2 6 4 29.42 66.47 66.50 66.38 96.45 92.30 0 46103 17991 23053 0.500 0.500 0.500 1.000 1.000 0 631.2 21976 0 0 1077 23053 -5250 17803 5250 0 7239 8453 2.984 3.036 2.141 + 12 2 6 5 29.30 66.48 66.50 66.48 96.53 92.13 0 46089 18029 21329 0.463 0.463 0.463 1.000 1.000 0 584.2 20332 0 0 997 21329 -4958 16371 4958 -0 6689 7822 2.980 3.040 2.130 + 12 2 7 0 29.57 66.58 67.92 66.49 129.17 124.73 0 46120 17945 104k 1.000 2.250 1.000 1.000 1.000 1.000 1262 43966 50000 0 2154 96120 -15758 78406 17715 1957 14706 66996 2.990 2.990 1.173 + 12 2 7 1 29.84 70.85 68.00 67.73 97.83 95.43 0 46152 17861 42642 0.924 0.924 0.924 1.000 1.000 0 1166 40637 0 0 1989 42627 -7561 34961 7666 104 13532 15657 2.999 3.003 2.253 + 12 2 7 2 30.11 68.74 68.00 68.34 98.46 95.96 0 46183 17778 37475 0.811 0.811 0.811 1.000 1.000 0 1024 35728 0 0 1748 37475 -6165 31310 6165 0 11830 13714 3.008 3.020 2.306 + 12 2 7 3 30.38 67.90 68.00 68.08 98.22 95.55 0 46215 17694 36163 0.783 0.783 0.783 1.000 1.000 0 987.8 34478 0 0 1685 36163 -6413 29751 6413 0 11371 13193 3.018 3.032 2.279 + 12 2 7 4 30.65 68.41 68.00 67.97 98.14 95.31 0 46246 17611 34705 0.750 0.750 0.750 1.000 1.000 0 947.3 33089 0 0 1616 34705 -6427 28278 6427 0 10868 12621 3.027 3.044 2.265 + 12 2 7 5 30.92 68.36 68.00 68.05 98.23 95.14 0 46278 17527 31280 0.676 0.676 0.676 1.000 1.000 0 853.3 29824 0 0 1456 31280 -5963 25317 5963 -0 9740 11333 3.037 3.062 2.261 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 202 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.69 68.00 68.04 98.34 94.85 0 46463 17035 27917 0.601 0.601 0.601 1.000 1.000 0 758.5 26623 0 0 1294 27916 -5657 22259 5657 0 8501 9932 3.094 3.132 2.272 + 12 2 8 1 34.10 68.67 68.00 68.09 98.51 94.65 0 46649 16543 25031 0.537 0.537 0.537 1.000 1.000 0 677.4 23875 0 0 1156 25031 -5299 19732 5299 0 7443 8735 3.152 3.208 2.295 + 12 2 8 2 35.69 68.84 68.00 68.09 98.63 94.29 0 46834 16052 22280 0.476 0.476 0.476 1.000 1.000 0 600.5 21255 0 0 1025 22279 -5018 17261 5018 0 6452 7613 3.213 3.294 2.309 + 12 2 8 3 37.28 68.85 68.00 68.12 98.79 93.94 0 47020 15561 19819 0.422 0.422 0.422 1.000 1.000 0 532.1 18911 0 0 908 19819 -4729 15090 4729 0 5572 6616 3.275 3.394 2.329 + 12 2 8 4 38.87 68.91 68.00 68.13 98.92 93.52 0 47205 15070 17757 0.376 0.376 0.376 1.000 1.000 0 474.9 16947 0 0 810 17757 -4509 13248 4509 0 4828 5775 3.339 3.510 2.350 + 12 2 8 5 40.46 68.92 68.00 68.15 99.06 93.04 0 47391 14579 15828 0.334 0.334 0.334 1.000 1.000 0 421.6 15109 0 0 719 15828 -4286 11542 4286 0 4137 4993 3.405 3.652 2.377 + 12 2 9 0 41.12 69.02 68.00 68.16 99.12 92.67 0 47468 14375 14682 0.309 0.309 0.309 1.000 1.000 0 390.3 14010 0 0 666 14676 -4152 10525 4152 -0 3753 4555 3.433 3.733 2.382 + 12 2 9 1 41.78 68.99 68.00 68.18 99.19 92.53 0 47545 14171 13194 0.278 0.278 0.298 0.931 0.983 0 350.3 12596 0 0 598 13194 -3799 9394 3799 0 3217 3952 3.461 3.915 2.462 + 12 2 9 2 42.44 68.90 68.00 68.18 99.24 92.48 0 47622 13968 11715 0.246 0.246 0.293 0.839 0.960 0 310.5 11185 0 0 530 11715 -3406 8309 3406 0 2878 3544 3.490 3.887 2.439 + 12 2 9 3 43.10 68.73 68.00 68.17 99.28 92.40 0 47699 13764 10538 0.221 0.221 0.289 0.766 0.941 0 278.9 10062 0 0 476 10538 -3100 7438 3100 0 2593 3206 3.519 3.880 2.424 + 12 2 9 4 43.76 68.57 68.00 68.14 99.30 92.28 0 47776 13561 9387 0.196 0.196 0.284 0.692 0.923 0 248.0 8964 0 0 423 9387 -2802 6584 2802 0 2314 2873 3.549 3.874 2.406 + 12 2 9 5 44.42 68.24 68.00 68.11 99.32 92.17 0 47853 13357 8323 0.174 0.174 0.279 0.623 0.906 0 219.6 7949 0 0 375 8323 -2521 5803 2521 0 2051 2562 3.579 3.875 2.392 + 12 2 10 0 44.93 67.96 68.00 68.06 99.30 92.03 0 47912 13200 7986 0.167 0.167 0.276 0.605 0.901 0 210.4 7627 0 0 359 7986 -2458 5528 2458 0 1948 2443 3.602 3.916 2.397 + 12 2 10 1 45.44 67.87 68.00 68.01 99.29 91.89 0 47972 13043 7137 0.149 0.149 0.272 0.547 0.887 0 187.8 6817 0 0 320 7137 -2231 4906 2231 0 1741 2198 3.626 3.916 2.380 + 12 2 10 2 45.95 67.59 68.00 67.99 99.31 91.81 0 48031 12885 6362 0.132 0.132 0.268 0.494 0.873 0 167.2 6077 0 0 285 6362 -2011 4351 2011 0 1549 1971 3.650 3.922 2.372 + 12 2 10 3 46.46 67.44 68.00 67.94 99.30 91.66 0 48091 12728 5608 0.117 0.117 0.265 0.441 0.860 0 147.2 5357 0 0 251 5608 -1801 3807 1801 0 1363 1751 3.674 3.930 2.359 + 12 2 10 4 46.97 67.19 68.00 67.91 99.31 91.54 0 48150 12571 4952 0.103 0.103 0.261 0.394 0.848 0 129.8 4731 0 0 222 4952 -1611 3341 1611 0 1198 1556 3.699 3.948 2.353 + 12 2 10 5 47.48 67.02 68.00 67.86 99.26 91.45 0 48154 12562 4273 .0887 .0887 0.261 0.340 0.835 0 112.0 4082 0 0 191 4273 -1401 2872 1401 0 1049 1377 3.700 3.890 2.315 + 12 2 11 0 48.20 66.90 68.00 67.82 99.23 91.40 0 48154 12562 4654 .0966 .0966 0.261 0.370 0.843 0 122.0 4446 0 0 208 4654 -1533 3121 1533 0 1133 1477 3.700 3.925 2.328 + 12 2 11 1 48.92 66.93 68.00 67.80 99.20 91.35 0 48154 12562 4134 .0858 .0858 0.261 0.329 0.832 0 108.4 3949 0 0 185 4134 -1367 2767 1367 0 1019 1340 3.700 3.877 2.299 + 12 2 11 2 49.64 66.90 68.00 67.80 99.20 91.35 0 48154 12562 3597 .0747 .0747 0.261 0.286 0.822 0 94.3 3436 0 0 161 3597 -1190 2407 1190 0 898 1195 3.700 3.827 2.274 + 12 2 11 3 50.36 66.81 68.00 67.79 99.19 91.33 0 48154 12562 3101 .0644 .0644 0.261 0.247 0.812 0 81.3 2962 0 0 139 3101 -1027 2073 1027 0 783 1058 3.700 3.781 2.249 + 12 2 11 4 51.08 66.75 68.00 67.77 99.17 91.30 0 48154 12562 2630 .0546 .0546 0.261 0.209 0.802 0 69.0 2513 0 0 118 2630 -874 1756 874 0 672 926 3.700 3.738 2.223 + 12 2 11 5 51.80 66.66 68.00 67.75 99.16 91.27 0 48154 12562 2159 .0448 .0448 0.261 0.172 0.793 0 56.6 2062 0 0 97 2159 -719 1439 719 -0 558 791 3.700 3.694 2.198 + 12 2 12 0 52.70 66.55 68.00 67.73 99.14 91.24 0 48154 12562 1311 .0272 .0272 0.261 0.104 0.776 0 34.4 1253 0 0 59 1311 -438 873 438 -0 347 405 3.700 3.615 2.156 + 12 2 12 1 53.60 66.36 68.00 67.71 99.12 91.20 0 48154 12562 784 .0163 .0163 0.261 .0624 0.766 0 20.6 749 0 0 35 784 -263 521 263 0 210 245 3.700 3.566 2.127 + 12 2 12 2 54.50 66.20 68.00 67.67 99.08 91.13 0 48154 12562 274 .0057 .0057 0.261 .0218 0.755 0 7.2 262 0 0 12 274 -92 182 92 0 74 87 3.700 3.519 2.096 + 12 2 12 3 55.40 66.02 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.94 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.88 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.85 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.80 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.75 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.73 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.68 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.64 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.60 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.55 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.50 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.46 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.41 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.36 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.30 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.26 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.20 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 65.14 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 65.11 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 65.05 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.99 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.93 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.86 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.81 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.76 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.63 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 203 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.55 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.49 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.39 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.32 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.26 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 64.09 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 18 0 53.00 63.98 68.00 67.18 98.58 90.21 0 48154 12562 1334 .0277 .0277 0.261 0.106 0.777 0 35.0 1274 0 0 60 1334 -485 849 485 -0 352 412 3.700 3.617 2.061 + 12 2 18 1 52.94 64.10 68.00 67.15 98.56 90.16 0 48154 12562 1670 .0347 .0347 0.261 0.133 0.783 0 43.8 1595 0 0 75 1670 -609 1061 609 0 437 512 3.700 3.649 2.072 + 12 2 18 2 52.88 64.00 68.00 67.17 98.58 90.20 0 48154 12562 2029 .0421 .0421 0.261 0.162 0.790 0 53.2 1938 0 0 91 2029 -738 1291 738 0 526 617 3.700 3.682 2.092 + 12 2 18 3 52.82 63.99 68.00 67.16 98.56 90.17 0 48154 12562 2230 .0463 .0463 0.261 0.178 0.794 0 58.5 2130 0 0 100 2230 -813 1417 813 0 576 675 3.700 3.701 2.098 + 12 2 18 4 52.76 64.01 68.00 67.15 98.55 90.16 0 48154 12562 2451 .0509 .0509 0.261 0.195 0.799 0 64.2 2341 0 0 110 2451 -895 1556 895 -0 629 739 3.700 3.721 2.106 + 12 2 18 5 52.70 63.86 68.00 67.15 98.56 90.16 0 48154 12562 2795 .0580 .0580 0.261 0.223 0.806 0 73.3 2670 0 0 125 2795 -1020 1775 1020 0 711 836 3.700 3.753 2.122 + 12 2 19 0 52.19 63.86 68.00 67.13 98.53 90.15 0 48154 12562 2775 .0576 .0576 0.261 0.221 0.805 0 72.8 2651 0 0 124 2775 -1014 1761 1014 0 707 831 3.700 3.751 2.120 + 12 2 19 1 51.68 63.76 68.00 67.12 98.53 90.14 0 48154 12562 3126 .0649 .0649 0.261 0.249 0.812 0 81.9 2986 0 0 140 3126 -1142 1983 1142 0 789 929 3.700 3.784 2.135 + 12 2 19 2 51.17 63.76 68.00 67.10 98.51 90.11 0 48154 12562 3381 .0702 .0702 0.261 0.269 0.817 0 88.6 3230 0 0 151 3381 -1239 2142 1239 -0 848 1000 3.700 3.807 2.143 + 12 2 19 3 50.66 63.69 68.00 67.10 98.51 90.10 0 48154 12562 3740 .0777 .0777 0.261 0.298 0.824 0 98.1 3573 0 0 167 3740 -1371 2369 1371 0 930 1098 3.700 3.841 2.158 + 12 2 19 4 50.15 63.71 68.00 67.09 98.49 90.08 0 48154 12562 3983 .0827 .0827 0.261 0.317 0.829 0 104.4 3805 0 0 178 3983 -1463 2520 1463 -0 985 1163 3.700 3.863 2.167 + 12 2 19 5 49.64 63.63 68.00 67.09 98.49 90.08 0 48154 12562 4336 .0900 .0900 0.261 0.345 0.836 0 113.7 4142 0 0 194 4336 -1592 2743 1592 0 1063 1257 3.700 3.896 2.182 + 12 2 20 0 49.13 63.63 68.00 67.08 98.48 90.06 0 48154 12562 4855 0.101 0.101 0.261 0.387 0.847 0 127.3 4638 0 0 217 4855 -1786 3069 1786 0 1176 1530 3.700 3.944 2.203 + 12 2 20 1 48.62 63.71 68.00 67.07 98.48 90.06 0 48154 12562 5213 0.108 0.108 0.261 0.415 0.854 0 136.7 4980 0 0 233 5213 -1918 3295 1918 0 1252 1622 3.700 3.977 2.218 + 12 2 20 2 48.11 63.79 68.00 67.09 98.49 90.08 0 48154 12562 5558 0.115 0.115 0.261 0.442 0.861 0 145.7 5310 0 0 249 5558 -2041 3517 2041 -0 1324 1710 3.700 4.009 2.236 + 12 2 20 3 47.60 63.90 68.00 67.10 98.51 90.10 0 48154 12562 5816 0.121 0.121 0.261 0.463 0.866 0 152.5 5556 0 0 260 5816 -2132 3684 2132 0 1378 1774 3.700 4.033 2.249 + 12 2 20 4 47.09 63.99 68.00 67.12 98.53 90.14 0 48154 12562 6126 0.127 0.127 0.261 0.488 0.872 0 160.6 5852 0 0 274 6126 -2240 3886 2240 0 1441 1851 3.700 4.062 2.266 + 12 2 20 5 46.58 64.15 68.00 67.14 98.52 90.23 0 48105 12691 6413 0.133 0.133 0.264 0.505 0.876 0 168.3 6126 0 0 287 6413 -2324 4089 2324 0 1523 1947 3.680 4.021 2.258 + 12 2 21 0 46.10 64.23 68.00 67.18 98.52 90.34 0 48049 12839 7046 0.147 0.147 0.267 0.549 0.887 0 185.1 6730 0 0 316 7046 -2525 4521 2525 -0 1681 2133 3.657 4.004 2.264 + 12 2 21 1 45.62 64.35 68.00 67.20 98.50 90.43 0 47993 12987 7349 0.153 0.153 0.271 0.566 0.891 0 193.3 7019 0 0 330 7349 -2608 4740 2608 0 1773 2239 3.634 3.959 2.255 + 12 2 21 2 45.14 64.44 68.00 67.23 98.49 90.54 0 47937 13135 7634 0.159 0.159 0.274 0.581 0.895 0 201.0 7291 0 0 343 7634 -2681 4953 2681 0 1862 2342 3.612 3.916 2.246 + 12 2 21 3 44.66 64.52 68.00 67.25 98.48 90.63 0 47881 13283 7931 0.166 0.166 0.277 0.597 0.899 0 209.1 7574 0 0 357 7931 -2757 5173 2757 0 1955 2448 3.590 3.875 2.238 + 12 2 21 4 44.18 64.61 68.00 67.27 98.46 90.72 0 47825 13431 8222 0.172 0.172 0.281 0.612 0.903 0 217.0 7852 0 0 370 8222 -2832 5390 2832 0 2047 2553 3.568 3.836 2.230 + 12 2 21 5 43.70 64.70 68.00 67.29 98.45 90.81 0 47769 13579 8501 0.178 0.178 0.284 0.626 0.907 0 224.7 8118 0 0 383 8501 -2900 5601 2900 0 2137 2657 3.546 3.798 2.222 + 12 2 22 0 43.28 64.78 68.00 67.31 98.44 90.88 0 47720 13709 9456 0.198 0.198 0.287 0.690 0.922 0 250.1 9029 0 0 427 9456 -3199 6256 3199 0 2363 2927 3.527 3.820 2.242 + 12 2 22 1 42.86 64.97 68.00 67.33 98.42 90.96 0 47671 13838 9750 0.205 0.205 0.290 0.705 0.926 0 258.2 9310 0 0 440 9750 -3271 6480 3271 0 2455 3032 3.509 3.793 2.238 + 12 2 22 2 42.44 65.09 68.00 67.37 98.43 91.07 0 47622 13968 10011 0.210 0.210 0.293 0.717 0.929 0 265.4 9558 0 0 453 10011 -3320 6691 3320 -0 2540 3129 3.490 3.763 2.236 + 12 2 22 3 42.02 65.17 68.00 67.40 98.43 91.15 0 47573 14097 10291 0.216 0.216 0.296 0.730 0.932 0 273.1 9825 0 0 466 10291 -3380 6911 3380 0 2629 3232 3.472 3.737 2.233 + 12 2 22 4 41.60 65.28 68.00 67.42 98.41 91.23 0 47524 14227 10561 0.222 0.222 0.299 0.742 0.936 0 280.5 10082 0 0 479 10561 -3438 7122 3438 -0 2717 3332 3.454 3.711 2.229 + 12 2 22 5 41.18 65.38 68.00 67.44 98.41 91.30 0 47475 14357 10796 0.227 0.227 0.302 0.752 0.938 0 287.1 10307 0 0 490 10796 -3483 7314 3483 0 2798 3425 3.436 3.683 2.224 + 12 2 23 0 41.27 65.46 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 64.00 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.66 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.45 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.32 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.16 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.06 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 63.00 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.82 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.74 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.57 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.49 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 204 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.44 66.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.30 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.26 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.16 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.16 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 62.05 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.97 66.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.93 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.92 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.84 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.74 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.64 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.54 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.44 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.34 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.24 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.13 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 61.03 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.92 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.81 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.70 65.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.59 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.47 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.36 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.24 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.13 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 60.01 65.00 64.15 94.18 88.42 0 46047 18140 1357 .0295 .0295 0.394 .0748 0.769 0 37.2 1294 0 0 63 1357 -406 953 405 -2 527 727 2.968 2.457 1.615 + 12 3 5 3 28.64 60.11 65.00 64.10 94.11 88.38 0 46012 18233 3565 .0775 .0775 0.396 0.196 0.799 0 97.8 3398 0 0 167 3565 -1065 2500 1065 0 1335 1639 2.958 2.545 1.664 + 12 3 5 4 28.34 60.38 65.00 64.12 94.10 88.41 0 45977 18326 4132 .0899 .0899 0.399 0.225 0.806 0 113.5 3939 0 0 194 4132 -1229 2904 1229 0 1539 1869 2.948 2.560 1.676 + 12 3 5 5 28.04 60.42 65.00 64.16 94.12 88.49 0 45942 18419 4647 0.101 0.101 0.401 0.252 0.813 0 127.7 4429 0 0 218 4647 -1368 3279 1368 0 1722 2077 2.938 2.572 1.690 + 12 3 6 0 28.07 60.44 66.50 64.39 115.94 112.08 0 45945 18409 82162 1.000 1.788 1.000 1.000 1.000 0.662 1262 43792 33102 0 2154 79047 -14079 62898 16149 2070 14902 50294 2.939 2.939 1.254 + 12 3 6 1 28.10 66.79 66.50 65.48 95.45 90.54 0 45949 18400 21985 0.478 0.478 0.478 1.000 1.000 0 604.0 20954 0 0 1030 21985 -6113 15872 6113 0 6995 8162 2.940 2.996 1.978 + 12 3 6 2 28.13 63.63 66.50 66.40 96.37 91.89 0 45952 18391 21666 0.471 0.471 0.471 1.000 1.000 0 595.2 20650 0 0 1015 21666 -5145 16521 5145 0 6888 8040 2.941 2.998 2.090 + 12 3 6 3 28.16 62.70 66.50 66.00 95.97 91.44 0 45956 18382 22257 0.484 0.484 0.484 1.000 1.000 0 611.4 21213 0 0 1043 22257 -5589 16668 5589 0 7080 8260 2.942 2.996 2.052 + 12 3 6 4 28.19 63.44 66.50 65.87 95.85 91.39 0 45959 18372 22954 0.499 0.499 0.499 1.000 1.000 0 630.5 21878 0 0 1076 22954 -5802 17152 5802 -0 7308 8520 2.943 2.994 2.046 + 12 3 6 5 28.22 63.51 66.50 65.97 95.94 91.23 0 45963 18363 21345 0.464 0.464 0.464 1.000 1.000 0 586.2 20345 0 0 1000 21345 -5494 15851 5494 0 6775 7912 2.944 3.003 2.039 + 12 3 7 0 28.52 63.83 67.93 66.09 128.70 124.11 0 45998 18270 104k 1.000 2.266 1.000 1.000 1.000 1.000 1262 43844 50000 0 2154 95998 -16495 77529 18469 1973 14843 67133 2.954 2.954 1.157 + 12 3 7 1 28.82 68.27 68.00 67.36 97.38 94.74 0 46033 18177 41156 0.894 0.894 0.894 1.000 1.000 0 1129 39230 0 0 1926 41156 -8083 32986 8170 87 13209 15271 2.964 2.970 2.180 + 12 3 7 2 29.12 66.18 68.00 67.97 98.02 95.26 0 46068 18084 36269 0.787 0.787 0.787 1.000 1.000 0 993.8 34573 0 0 1696 36269 -6649 29619 6649 -0 11571 13403 2.974 2.988 2.233 + 12 3 7 3 29.42 65.38 68.00 67.71 97.78 94.83 0 46103 17991 34811 0.755 0.755 0.755 1.000 1.000 0 953.2 33185 0 0 1626 34811 -6852 27959 6852 -0 11058 12821 2.984 3.001 2.204 + 12 3 7 4 29.72 65.99 68.00 67.61 97.70 94.57 0 46138 17899 33241 0.720 0.720 0.720 1.000 1.000 0 909.5 31689 0 0 1552 33241 -6827 26414 6827 -0 10512 12200 2.995 3.015 2.189 + 12 3 7 5 30.02 65.98 68.00 67.68 97.79 94.37 0 46173 17806 29799 0.645 0.645 0.645 1.000 1.000 0 814.7 28409 0 0 1390 29799 -6316 23483 6316 0 9365 10892 3.005 3.033 2.183 + 12 3 8 0 31.40 66.28 68.00 67.66 97.88 94.02 0 46334 17379 26672 0.576 0.576 0.576 1.000 1.000 0 726.7 25433 0 0 1240 26672 -6000 20672 6000 -0 8221 9598 3.054 3.093 2.185 + 12 3 8 1 32.78 66.25 68.00 67.70 98.02 93.75 0 46495 16952 23858 0.513 0.513 0.513 1.000 1.000 0 647.7 22753 0 0 1105 23858 -5625 18233 5625 0 7203 8444 3.103 3.159 2.195 + 12 3 8 2 34.16 66.42 68.00 67.68 98.10 93.33 0 46656 16525 21279 0.456 0.456 0.456 1.000 1.000 0 575.7 20296 0 0 982 21279 -5336 15943 5336 0 6280 7399 3.154 3.232 2.195 + 12 3 8 3 35.54 66.45 68.00 67.69 98.22 92.91 0 46817 16098 18934 0.404 0.404 0.404 1.000 1.000 0 510.5 18063 0 0 871 18934 -5033 13901 5033 0 5449 6456 3.207 3.315 2.200 + 12 3 8 4 36.92 66.57 68.00 67.68 98.32 92.41 0 46978 15672 16951 0.361 0.361 0.361 1.000 1.000 0 455.5 16174 0 0 777 16951 -4796 12155 4796 0 4742 5656 3.261 3.411 2.202 + 12 3 8 5 38.30 66.61 68.00 67.69 98.43 91.92 0 47139 15246 15209 0.323 0.323 0.323 0.998 0.999 0 407.3 14514 0 0 695 15209 -4560 10649 4560 0 3935 4767 3.316 3.688 2.300 + 12 3 9 0 38.84 66.70 68.00 67.70 98.48 91.90 0 47202 15079 14095 0.299 0.299 0.319 0.935 0.984 0 377.0 13452 0 0 643 14095 -4246 9849 4246 0 3666 4446 3.338 3.670 2.286 + 12 3 9 1 39.38 66.65 68.00 67.71 98.54 91.89 0 47265 14912 12614 0.267 0.267 0.316 0.846 0.961 0 336.9 12040 0 0 575 12614 -3814 8800 3814 0 3320 4031 3.360 3.627 2.260 + 12 3 9 2 39.92 66.51 68.00 67.70 98.57 91.84 0 47328 14745 11264 0.238 0.238 0.312 0.764 0.941 0 300.4 10752 0 0 513 11264 -3435 7830 3435 0 2994 3643 3.382 3.591 2.233 + 12 3 9 3 40.46 66.33 68.00 67.68 98.59 91.76 0 47391 14579 10069 0.212 0.212 0.308 0.691 0.923 0 268.2 9612 0 0 458 10069 -3103 6966 3103 0 2697 3291 3.405 3.563 2.208 + 12 3 9 4 41.00 66.20 68.00 67.65 98.60 91.66 0 47454 14412 8977 0.189 0.189 0.304 0.623 0.906 0 238.8 8570 0 0 407 8977 -2800 6177 2800 0 2420 2964 3.428 3.541 2.185 + 12 3 9 5 41.54 66.00 68.00 67.62 98.61 91.57 0 47517 14245 7987 0.168 0.168 0.300 0.561 0.890 0 212.2 7625 0 0 362 7987 -2519 5468 2519 0 2163 2661 3.451 3.525 2.166 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 205 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.86 68.00 67.58 98.63 91.45 0 47608 14005 8515 0.179 0.179 0.294 0.608 0.902 0 225.8 8130 0 0 385 8515 -2728 5787 2728 -0 2232 2754 3.485 3.642 2.211 + 12 3 10 1 43.10 66.01 68.00 67.56 98.66 91.32 0 47699 13764 7733 0.162 0.162 0.289 0.562 0.890 0 204.7 7384 0 0 349 7733 -2515 5218 2515 0 2012 2498 3.519 3.670 2.210 + 12 3 10 2 43.88 66.01 68.00 67.58 98.75 91.28 0 47790 13524 6929 0.145 0.145 0.283 0.512 0.878 0 183.0 6617 0 0 312 6929 -2270 4658 2270 0 1789 2238 3.554 3.698 2.217 + 12 3 10 3 44.66 65.84 68.00 67.57 98.80 91.19 0 47881 13283 6225 0.130 0.130 0.277 0.469 0.867 0 164.1 5945 0 0 280 6225 -2063 4161 2063 0 1591 2007 3.590 3.737 2.224 + 12 3 10 4 45.44 65.88 68.00 67.54 98.83 91.05 0 47972 13043 5527 0.115 0.115 0.272 0.424 0.856 0 145.5 5279 0 0 248 5527 -1862 3666 1862 0 1397 1781 3.626 3.779 2.228 + 12 3 10 5 46.22 65.73 68.00 67.54 98.89 90.96 0 48063 12802 4832 0.101 0.101 0.266 0.377 0.844 0 126.9 4615 0 0 216 4832 -1646 3185 1646 0 1206 1559 3.663 3.826 2.239 + 12 3 11 0 46.58 65.81 68.00 67.51 98.89 90.88 0 48105 12691 4747 .0987 .0987 0.264 0.374 0.844 0 124.6 4535 0 0 213 4747 -1632 3115 1632 0 1172 1521 3.680 3.870 2.251 + 12 3 11 1 46.94 65.87 68.00 67.52 98.92 90.84 0 48147 12580 4306 .0894 .0894 0.261 0.342 0.836 0 112.9 4114 0 0 193 4306 -1487 2819 1487 0 1059 1388 3.697 3.884 2.252 + 12 3 11 2 47.30 65.95 68.00 67.53 98.93 90.85 0 48154 12562 3848 .0799 .0799 0.261 0.306 0.827 0 100.9 3676 0 0 172 3848 -1328 2520 1328 0 955 1263 3.700 3.851 2.236 + 12 3 11 3 47.66 65.98 68.00 67.54 98.95 90.87 0 48154 12562 3428 .0712 .0712 0.261 0.273 0.818 0 89.9 3274 0 0 153 3428 -1181 2247 1181 0 859 1149 3.700 3.812 2.219 + 12 3 11 4 48.02 66.01 68.00 67.55 98.95 90.88 0 48154 12562 3040 .0631 .0631 0.261 0.242 0.811 0 79.7 2904 0 0 136 3040 -1047 1994 1047 0 769 1042 3.700 3.776 2.202 + 12 3 11 5 48.38 65.99 68.00 67.55 98.96 90.89 0 48154 12562 2662 .0553 .0553 0.261 0.212 0.803 0 69.8 2543 0 0 119 2662 -916 1746 916 0 680 935 3.700 3.741 2.186 + 12 3 12 0 48.86 65.97 68.00 67.55 98.95 90.88 0 48154 12562 1835 .0381 .0381 0.261 0.146 0.787 0 48.1 1753 0 0 82 1835 -632 1203 632 0 478 697 3.700 3.664 2.147 + 12 3 12 1 49.34 65.79 68.00 67.55 98.95 90.88 0 48154 12562 1417 .0294 .0294 0.261 0.113 0.778 0 37.1 1354 0 0 63 1417 -488 929 488 0 373 573 3.700 3.625 2.127 + 12 3 12 2 49.82 65.66 68.00 67.52 98.92 90.83 0 48154 12562 997 .0207 .0207 0.261 .0793 0.770 0 26.1 952 0 0 45 997 -345 652 345 0 265 447 3.700 3.586 2.103 + 12 3 12 3 50.30 65.55 68.00 67.50 98.90 90.80 0 48154 12562 620 .0129 .0129 0.261 .0494 0.762 0 16.3 593 0 0 28 620 -215 405 215 0 167 331 3.700 3.551 2.082 + 12 3 12 4 50.78 65.44 68.00 67.48 98.88 90.77 0 48154 12562 275 .0057 .0057 0.261 .0219 0.755 0 7.2 262 0 0 12 275 -95 179 95 -0 75 223 3.700 3.519 2.064 + 12 3 12 5 51.26 65.35 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 13 0 51.59 65.31 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.33 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.33 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.35 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.34 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.38 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.47 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.55 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.62 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.41 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.60 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.56 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.65 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.70 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.71 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.69 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.75 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.59 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.67 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.67 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.69 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.73 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.73 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.76 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.79 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.61 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.80 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.42 68.00 67.55 98.95 90.86 0 48154 12562 1217 .0253 .0253 0.261 .0969 0.774 0 31.9 1163 0 0 54 1217 -421 797 420 -1 322 377 3.700 3.607 2.116 + 12 3 17 4 49.49 65.89 68.00 67.46 98.87 90.75 0 48154 12562 3018 .0627 .0627 0.261 0.240 0.810 0 79.1 2883 0 0 135 3018 -1051 1968 1051 -0 764 899 3.700 3.774 2.189 + 12 3 17 5 49.10 66.04 68.00 67.54 98.94 90.87 0 48154 12562 3390 .0704 .0704 0.261 0.270 0.817 0 88.9 3238 0 0 152 3390 -1168 2221 1168 0 850 1002 3.700 3.808 2.217 + 12 3 18 0 48.05 66.08 68.00 67.57 98.98 90.93 0 48154 12562 3370 .0700 .0700 0.261 0.268 0.817 0 88.4 3220 0 0 151 3370 -1156 2215 1156 0 846 1133 3.700 3.806 2.222 + 12 3 18 1 47.00 66.15 68.00 67.58 98.98 90.94 0 48154 12562 3952 .0821 .0821 0.261 0.315 0.829 0 103.6 3775 0 0 177 3952 -1353 2598 1353 0 978 1291 3.700 3.860 2.250 + 12 3 18 2 45.95 66.29 68.00 67.60 98.92 91.10 0 48031 12885 4509 .0939 .0939 0.268 0.350 0.837 0 118.5 4307 0 0 202 4509 -1516 2993 1516 0 1145 1484 3.650 3.760 2.221 + 12 3 18 3 44.90 66.45 68.00 67.63 98.87 91.27 0 47909 13209 5043 0.105 0.105 0.276 0.382 0.845 0 132.9 4816 0 0 227 5043 -1663 3381 1663 0 1312 1676 3.601 3.670 2.197 + 12 3 18 4 43.85 66.66 68.00 67.66 98.83 91.44 0 47786 13533 5610 0.117 0.117 0.283 0.415 0.854 0 148.2 5357 0 0 253 5610 -1813 3798 1813 -0 1491 1881 3.553 3.592 2.177 + 12 3 18 5 42.80 66.89 68.00 67.70 98.79 91.61 0 47664 13857 6173 0.130 0.130 0.291 0.445 0.861 0 163.5 5894 0 0 279 6173 -1954 4219 1954 0 1674 2089 3.506 3.522 2.161 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 206 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.99 68.00 67.74 98.82 91.68 0 47646 13903 6225 0.131 0.131 0.292 0.448 0.862 0 164.9 5944 0 0 281 6225 -1955 4270 1955 0 1693 2111 3.499 3.510 2.162 + 12 3 19 1 42.50 66.99 68.00 67.76 98.83 91.73 0 47629 13949 6509 0.137 0.137 0.293 0.467 0.867 0 172.5 6215 0 0 294 6509 -2033 4476 2033 0 1768 2199 3.493 3.516 2.171 + 12 3 19 2 42.35 67.10 68.00 67.77 98.82 91.76 0 47611 13996 6740 0.142 0.142 0.294 0.482 0.870 0 178.7 6435 0 0 305 6740 -2099 4641 2099 -0 1830 2271 3.486 3.517 2.174 + 12 3 19 3 42.20 67.06 68.00 67.79 98.83 91.81 0 47594 14042 6979 0.147 0.147 0.295 0.497 0.874 0 185.1 6663 0 0 316 6979 -2161 4818 2161 -0 1893 2345 3.480 3.519 2.181 + 12 3 19 4 42.05 67.10 68.00 67.79 98.82 91.82 0 47576 14088 7167 0.151 0.151 0.296 0.509 0.877 0 190.2 6843 0 0 324 7167 -2215 4953 2215 0 1945 2406 3.473 3.518 2.182 + 12 3 19 5 41.90 67.03 68.00 67.80 98.81 91.85 0 47559 14134 7429 0.156 0.156 0.297 0.526 0.881 0 197.2 7092 0 0 336 7429 -2287 5141 2287 0 2014 2487 3.467 3.522 2.188 + 12 3 20 0 41.60 67.08 68.00 67.79 98.78 91.87 0 47524 14227 7751 0.163 0.163 0.299 0.545 0.886 0 205.9 7400 0 0 351 7751 -2379 5372 2379 0 2105 2593 3.454 3.515 2.187 + 12 3 20 1 41.30 67.02 68.00 67.80 98.77 91.91 0 47489 14320 8063 0.170 0.170 0.302 0.563 0.891 0 214.3 7697 0 0 366 8063 -2461 5602 2461 -0 2194 2697 3.441 3.508 2.188 + 12 3 20 2 41.00 66.98 68.00 67.80 98.74 91.93 0 47454 14412 8328 0.175 0.175 0.304 0.578 0.894 0 221.5 7950 0 0 378 8328 -2532 5796 2532 0 2273 2788 3.428 3.497 2.186 + 12 3 20 3 40.70 67.02 68.00 67.79 98.72 91.95 0 47419 14505 8490 0.179 0.179 0.306 0.585 0.896 0 226.0 8104 0 0 386 8490 -2572 5917 2572 0 2329 2851 3.415 3.480 2.180 + 12 3 20 4 40.40 66.93 68.00 67.80 98.70 91.99 0 47384 14597 8786 0.185 0.185 0.308 0.602 0.900 0 234.1 8387 0 0 399 8786 -2647 6139 2647 0 2415 2951 3.402 3.473 2.181 + 12 3 20 5 40.10 66.94 68.00 67.79 98.67 91.99 0 47349 14690 8930 0.189 0.189 0.310 0.608 0.902 0 238.1 8524 0 0 406 8930 -2685 6245 2685 -0 2467 3009 3.390 3.456 2.174 + 12 3 21 0 40.43 66.88 68.00 67.79 98.69 91.97 0 47387 14588 9372 0.198 0.198 0.308 0.642 0.911 0 249.7 8946 0 0 426 9372 -2829 6543 2829 0 2546 3108 3.404 3.514 2.202 + 12 3 21 1 40.76 66.85 68.00 67.78 98.71 91.93 0 47426 14486 9465 0.200 0.200 0.305 0.653 0.913 0 251.9 9035 0 0 430 9465 -2873 6592 2873 -0 2544 3110 3.418 3.551 2.216 + 12 3 21 2 41.09 66.80 68.00 67.78 98.73 91.90 0 47464 14384 9538 0.201 0.201 0.303 0.663 0.916 0 253.7 9105 0 0 433 9538 -2910 6628 2910 0 2538 3107 3.432 3.588 2.231 + 12 3 21 3 41.42 66.73 68.00 67.77 98.75 91.86 0 47503 14282 9593 0.202 0.202 0.301 0.672 0.918 0 254.9 9158 0 0 435 9593 -2943 6650 2943 0 2526 3098 3.446 3.625 2.245 + 12 3 21 4 41.75 66.68 68.00 67.75 98.76 91.81 0 47541 14181 9632 0.203 0.203 0.298 0.679 0.920 0 255.8 9196 0 0 436 9632 -2974 6658 2974 -0 2512 3084 3.460 3.662 2.259 + 12 3 21 5 42.08 66.58 68.00 67.75 98.78 91.77 0 47580 14079 9651 0.203 0.203 0.296 0.685 0.921 0 256.0 9214 0 0 437 9651 -2997 6654 2997 0 2492 3065 3.474 3.698 2.272 + 12 3 22 0 42.05 66.66 68.00 67.73 98.76 91.75 0 47576 14088 10398 0.219 0.219 0.296 0.738 0.935 0 275.9 9927 0 0 471 10398 -3236 7162 3236 0 2649 3256 3.473 3.748 2.296 + 12 3 22 1 42.02 66.78 68.00 67.74 98.77 91.77 0 47573 14097 10549 0.222 0.222 0.296 0.748 0.937 0 279.9 10072 0 0 478 10549 -3276 7273 3276 -0 2682 3296 3.472 3.755 2.302 + 12 3 22 2 41.99 66.83 68.00 67.76 98.79 91.81 0 47569 14107 10677 0.224 0.224 0.297 0.757 0.939 0 283.4 10194 0 0 483 10677 -3303 7375 3303 -0 2710 3330 3.471 3.761 2.309 + 12 3 22 3 41.96 66.84 68.00 67.77 98.79 91.82 0 47566 14116 10811 0.227 0.227 0.297 0.766 0.941 0 286.9 10322 0 0 489 10811 -3338 7473 3338 0 2740 3366 3.469 3.767 2.314 + 12 3 22 4 41.93 66.86 68.00 67.77 98.79 91.83 0 47562 14125 10946 0.230 0.230 0.297 0.775 0.944 0 290.5 10450 0 0 496 10946 -3377 7569 3377 0 2769 3402 3.468 3.773 2.318 + 12 3 22 5 41.90 67.09 68.00 67.78 98.80 91.84 0 47559 14134 10951 0.230 0.230 0.297 0.775 0.944 0 290.7 10455 0 0 496 10951 -3374 7577 3374 0 2773 3405 3.467 3.771 2.318 + 12 3 23 0 41.51 67.20 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.78 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.42 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.44 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.33 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.32 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.12 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 65.06 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.90 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.88 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.70 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.71 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.53 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.49 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.46 66.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.33 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.22 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.09 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.98 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.87 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.75 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.63 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.52 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.40 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 207 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.28 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.15 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 63.03 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.90 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.78 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.65 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.52 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.40 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.27 65.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.14 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.99 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.85 65.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.72 65.00 64.46 94.58 88.92 0 46169 17815 434 .0094 .0094 0.386 .0244 0.756 0 11.9 414 0 0 20 434 -124 310 124 -1 169 326 3.004 2.448 1.640 + 12 4 5 1 29.96 61.65 65.00 64.40 94.51 88.85 0 46166 17824 3065 .0664 .0664 0.386 0.172 0.793 0 83.8 2922 0 0 143 3065 -880 2185 880 0 1138 1418 3.003 2.567 1.706 + 12 4 5 2 29.93 61.92 65.00 64.39 94.49 88.83 0 46162 17834 3470 .0752 .0752 0.386 0.195 0.799 0 94.9 3308 0 0 162 3470 -998 2471 998 0 1280 1578 3.002 2.584 1.714 + 12 4 5 3 29.90 61.92 65.00 64.43 94.53 88.89 0 46159 17843 3871 .0839 .0839 0.387 0.217 0.804 0 105.9 3690 0 0 181 3871 -1106 2765 1106 -0 1419 1736 3.001 2.601 1.729 + 12 4 5 4 29.87 61.88 65.00 64.43 94.53 88.89 0 46155 17852 4289 .0929 .0929 0.387 0.240 0.810 0 117.3 4089 0 0 200 4289 -1225 3064 1225 -0 1561 1898 3.000 2.619 1.740 + 12 4 5 5 29.84 61.89 65.00 64.42 94.52 88.88 0 46152 17861 4720 0.102 0.102 0.387 0.264 0.816 0 129.1 4500 0 0 220 4720 -1350 3370 1350 -0 1706 2063 2.999 2.638 1.750 + 12 4 6 0 29.72 61.88 66.50 64.58 116.05 112.27 0 46138 17899 81586 1.000 1.768 1.000 1.000 1.000 0.655 1262 43984 32772 0 2154 78910 -13681 63160 15751 2070 14687 49749 2.995 2.995 1.273 + 12 4 6 1 29.60 68.03 66.50 65.72 95.80 91.01 0 46124 17936 21944 0.476 0.476 0.476 1.000 1.000 0 600.6 20920 0 0 1025 21944 -5854 16091 5854 -0 6865 8026 2.991 3.047 2.039 + 12 4 6 2 29.48 64.92 66.50 66.61 96.68 92.34 0 46110 17973 21780 0.472 0.472 0.472 1.000 1.000 0 596.3 20762 0 0 1017 21780 -4938 16841 4938 0 6821 7975 2.987 3.044 2.149 + 12 4 6 3 29.36 64.01 66.50 66.21 96.27 91.88 0 46096 18010 22391 0.486 0.486 0.486 1.000 1.000 0 613.2 21345 0 0 1046 22391 -5377 17014 5377 0 7029 8212 2.982 3.037 2.107 + 12 4 6 4 29.24 64.73 66.50 66.09 96.14 91.82 0 46082 18047 23135 0.502 0.502 0.502 1.000 1.000 0 633.7 22053 0 0 1081 23135 -5590 17545 5590 -0 7281 8499 2.978 3.029 2.098 + 12 4 6 5 29.12 64.78 66.50 66.18 96.23 91.66 0 46068 18084 21465 0.466 0.466 0.466 1.000 1.000 0 588.2 20461 0 0 1003 21465 -5284 16181 5284 0 6747 7887 2.974 3.033 2.088 + 12 4 7 0 29.42 65.07 67.91 66.26 128.94 124.41 0 46103 17991 105k 1.000 2.273 1.000 1.000 1.000 1.000 1262 43949 50000 0 2154 96103 -16191 77963 18140 1949 14726 67016 2.984 2.984 1.166 + 12 4 7 1 29.72 69.46 68.00 67.52 97.61 95.15 0 46138 17899 43312 0.938 0.939 0.938 1.000 1.000 0 1185 41278 0 0 2021 43299 -8020 35165 8134 113 13768 15925 2.995 2.998 2.227 + 12 4 7 2 30.02 67.43 68.00 68.14 98.25 95.69 0 46173 17806 38073 0.825 0.825 0.825 1.000 1.000 0 1041 36297 0 0 1776 38073 -6560 31513 6560 0 12035 13947 3.005 3.016 2.282 + 12 4 7 3 30.32 66.61 68.00 67.89 98.03 95.31 0 46208 17713 36929 0.799 0.799 0.799 1.000 1.000 0 1009 35207 0 0 1721 36929 -6805 30123 6805 -0 11625 13483 3.016 3.029 2.257 + 12 4 7 4 30.62 67.20 68.00 67.79 97.95 95.09 0 46243 17620 35584 0.769 0.769 0.769 1.000 1.000 0 971.4 33926 0 0 1657 35584 -6820 28764 6820 -0 11154 12948 3.026 3.042 2.245 + 12 4 7 5 30.92 67.20 68.00 67.86 98.05 94.95 0 46278 17527 32328 0.699 0.699 0.699 1.000 1.000 0 881.8 30824 0 0 1504 32328 -6343 25985 6343 0 10075 11716 3.037 3.059 2.244 + 12 4 8 0 32.18 67.49 68.00 67.86 98.13 94.65 0 46425 17137 28912 0.623 0.623 0.623 1.000 1.000 0 786.2 27571 0 0 1341 28912 -6010 22902 6010 0 8849 10327 3.082 3.116 2.247 + 12 4 8 1 33.44 67.45 68.00 67.90 98.27 94.45 0 46572 16748 26120 0.561 0.561 0.561 1.000 1.000 0 708.0 24912 0 0 1208 26120 -5652 20468 5652 0 7845 9190 3.128 3.175 2.261 + 12 4 8 2 34.70 67.61 68.00 67.89 98.35 94.11 0 46719 16358 23484 0.503 0.503 0.503 1.000 1.000 0 634.5 22401 0 0 1083 23484 -5373 18111 5373 0 6911 8130 3.175 3.242 2.266 + 12 4 8 3 35.96 67.64 68.00 67.91 98.47 93.86 0 46866 15969 21475 0.458 0.458 0.458 1.000 1.000 0 578.4 20488 0 0 987 21474 -5124 16351 5124 0 6184 7308 3.223 3.313 2.280 + 12 4 8 4 37.22 67.77 68.00 67.91 98.57 93.59 0 47013 15579 19857 0.422 0.422 0.422 1.000 1.000 0 533.2 18947 0 0 910 19857 -4944 14913 4944 0 5588 6634 3.272 3.390 2.295 + 12 4 8 5 38.48 67.83 68.00 67.93 98.69 93.37 0 47160 15190 18552 0.393 0.393 0.393 1.000 1.000 0 496.6 17705 0 0 847 18552 -4779 13773 4779 -0 5094 6078 3.323 3.475 2.318 + 12 4 9 0 39.11 67.95 68.00 67.94 98.75 93.35 0 47233 14996 18259 0.387 0.387 0.387 1.000 1.000 0 488.0 17426 0 0 833 18258 -4737 13521 4737 0 4956 5925 3.349 3.516 2.336 + 12 4 9 1 39.74 67.99 68.00 67.96 98.82 93.19 0 47307 14801 17469 0.369 0.369 0.369 1.000 1.000 0 466.2 16674 0 0 795 17469 -4630 12839 4630 0 4672 5604 3.375 3.569 2.348 + 12 4 9 2 40.37 67.99 68.00 67.97 98.87 93.05 0 47380 14607 16834 0.355 0.355 0.355 1.000 1.000 0 448.5 16068 0 0 765 16834 -4550 12283 4550 0 4436 5338 3.401 3.622 2.362 + 12 4 9 3 41.00 67.93 68.00 67.98 98.92 92.91 0 47454 14412 16252 0.342 0.342 0.342 1.000 1.000 0 432.3 15514 0 0 738 16251 -4479 11773 4479 -0 4216 5090 3.428 3.679 2.376 + 12 4 9 4 41.63 67.86 68.00 67.97 98.97 92.76 0 47527 14218 15753 0.331 0.331 0.331 1.000 1.000 0 418.4 15039 0 0 714 15753 -4425 11327 4425 -0 4022 4872 3.455 3.739 2.392 + 12 4 9 5 42.26 67.81 68.00 67.96 99.01 92.61 0 47601 14023 15274 0.321 0.321 0.321 1.000 1.000 0 405.1 14583 0 0 691 15274 -4375 10900 4375 -0 3835 4662 3.482 3.803 2.408 + 12 4 10 0 42.41 67.97 68.00 67.96 99.01 92.64 0 47618 13977 15345 0.322 0.322 0.322 1.000 1.000 0 406.8 14651 0 0 694 15345 -4386 10959 4386 -0 3843 4673 3.489 3.812 2.415 + 12 4 10 1 42.56 68.06 68.00 67.98 99.05 92.58 0 47636 13931 15038 0.316 0.316 0.316 1.000 1.000 0 398.5 14358 0 0 680 15038 -4330 10709 4330 0 3744 4560 3.495 3.835 2.421 + 12 4 10 2 42.71 68.09 68.00 68.00 99.08 92.51 0 47653 13884 14753 0.310 0.310 0.310 1.000 1.000 0 390.8 14086 0 0 667 14753 -4281 10471 4281 0 3651 4454 3.502 3.859 2.425 + 12 4 10 3 42.86 68.10 68.00 68.01 99.10 92.42 0 47671 13838 14466 0.303 0.303 0.303 1.000 1.000 0 383.1 13812 0 0 654 14466 -4240 10226 4240 0 3557 4347 3.509 3.883 2.429 + 12 4 10 4 43.01 68.12 68.00 68.02 99.12 92.31 0 47688 13792 14161 0.297 0.297 0.297 1.000 1.000 0 374.9 13521 0 0 640 14161 -4197 9963 4197 0 3459 4235 3.515 3.909 2.431 + 12 4 10 5 43.16 68.30 68.00 68.02 99.14 92.15 0 47706 13746 13745 0.288 0.288 0.288 1.000 1.000 0 363.7 13125 0 0 621 13745 -4141 9604 4141 -0 3179 3936 3.522 4.128 2.527 + 12 4 11 0 43.49 68.31 68.00 68.06 99.19 92.18 0 47744 13644 13146 0.275 0.275 0.286 0.964 0.991 0 347.6 12553 0 0 593 13146 -3960 9187 3960 0 3041 3771 3.537 4.128 2.528 + 12 4 11 1 43.82 68.48 68.00 68.06 99.22 92.16 0 47783 13542 12570 0.263 0.263 0.283 0.928 0.982 0 332.1 12003 0 0 567 12570 -3800 8770 3800 0 2907 3610 3.552 4.129 2.525 + 12 4 11 2 44.15 68.46 68.00 68.09 99.28 92.18 0 47821 13440 12113 0.253 0.253 0.281 0.901 0.975 0 319.7 11567 0 0 546 12113 -3662 8451 3662 0 2794 3476 3.567 4.140 2.530 + 12 4 11 3 44.48 68.58 68.00 68.09 99.31 92.15 0 47860 13339 11518 0.241 0.241 0.279 0.863 0.966 0 303.8 10999 0 0 518 11518 -3498 8019 3498 0 2657 3312 3.582 4.140 2.525 + 12 4 11 4 44.81 68.53 68.00 68.11 99.35 92.15 0 47898 13237 11062 0.231 0.231 0.276 0.836 0.959 0 291.5 10565 0 0 497 11062 -3365 7697 3365 0 2545 3179 3.597 4.151 2.530 + 12 4 11 5 45.14 68.74 68.00 68.11 99.37 92.11 0 47937 13135 10493 0.219 0.219 0.274 0.799 0.950 0 276.3 10022 0 0 471 10493 -3210 7283 3210 0 2413 3021 3.612 4.154 2.525 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 208 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.80 68.00 68.14 99.42 92.15 0 47954 13089 9494 0.198 0.198 0.273 0.725 0.931 0 249.9 9068 0 0 426 9494 -2897 6597 2897 0 2216 2779 3.619 4.093 2.497 + 12 4 12 1 45.44 68.70 68.00 68.16 99.44 92.15 0 47972 13043 8892 0.185 0.185 0.272 0.682 0.920 0 234.0 8492 0 0 399 8892 -2714 6178 2714 0 2090 2625 3.626 4.064 2.482 + 12 4 12 2 45.59 68.55 68.00 68.14 99.44 92.11 0 47989 12996 8267 0.172 0.172 0.271 0.636 0.909 0 217.5 7896 0 0 371 8267 -2535 5731 2535 -0 1958 2465 3.633 4.033 2.461 + 12 4 12 3 45.74 68.51 68.00 68.12 99.43 92.06 0 48007 12950 7626 0.159 0.159 0.270 0.589 0.897 0 200.5 7284 0 0 342 7626 -2352 5274 2352 -0 1821 2299 3.640 4.001 2.438 + 12 4 12 4 45.89 68.39 68.00 68.11 99.43 92.03 0 48024 12904 7196 0.150 0.150 0.269 0.558 0.889 0 189.1 6873 0 0 323 7196 -2228 4968 2228 0 1724 2184 3.647 3.985 2.427 + 12 4 12 5 46.04 68.38 68.00 68.09 99.42 91.98 0 48042 12858 6748 0.140 0.140 0.268 0.525 0.881 0 177.3 6446 0 0 303 6748 -2101 4647 2101 -0 1624 2063 3.654 3.969 2.412 + 12 4 13 0 46.40 68.20 68.00 68.09 99.45 91.93 0 48084 12747 5954 0.124 0.124 0.265 0.467 0.867 0 156.3 5687 0 0 267 5954 -1865 4089 1865 -0 1439 1842 3.671 3.952 2.397 + 12 4 13 1 46.76 68.14 68.00 68.06 99.44 91.84 0 48126 12636 5416 0.113 0.113 0.263 0.429 0.857 0 142.1 5174 0 0 242 5416 -1714 3703 1714 0 1307 1686 3.688 3.958 2.390 + 12 4 13 2 47.12 68.10 68.00 68.04 99.45 91.79 0 48154 12562 4920 0.102 0.102 0.261 0.392 0.848 0 129.0 4700 0 0 220 4920 -1566 3354 1566 -0 1190 1546 3.700 3.950 2.379 + 12 4 13 3 47.48 68.02 68.00 68.04 99.44 91.77 0 48154 12562 4551 .0945 .0945 0.261 0.362 0.841 0 119.3 4348 0 0 204 4551 -1451 3100 1451 0 1110 1450 3.700 3.916 2.360 + 12 4 13 4 47.84 67.95 68.00 68.02 99.42 91.74 0 48154 12562 4355 .0904 .0904 0.261 0.347 0.837 0 114.2 4160 0 0 195 4355 -1392 2963 1392 0 1067 1399 3.700 3.898 2.348 + 12 4 13 5 48.20 67.78 68.00 68.01 99.41 91.72 0 48154 12562 4248 .0882 .0882 0.261 0.338 0.835 0 111.4 4058 0 0 190 4248 -1360 2887 1360 0 1044 1370 3.700 3.888 2.340 + 12 4 14 0 48.47 67.79 68.00 67.98 99.38 91.68 0 48154 12562 4286 .0890 .0890 0.261 0.341 0.835 0 112.4 4094 0 0 192 4286 -1378 2908 1378 0 1052 1380 3.700 3.891 2.338 + 12 4 14 1 48.74 67.86 68.00 67.98 99.38 91.67 0 48154 12562 4245 .0882 .0882 0.261 0.338 0.834 0 111.3 4056 0 0 190 4245 -1366 2880 1366 -0 1043 1370 3.700 3.887 2.335 + 12 4 14 2 49.01 67.80 68.00 67.99 99.39 91.69 0 48154 12562 4258 .0884 .0884 0.261 0.339 0.835 0 111.6 4067 0 0 190 4258 -1368 2890 1368 0 1046 1373 3.700 3.888 2.338 + 12 4 14 3 49.28 67.82 68.00 67.98 99.38 91.67 0 48154 12562 4116 .0855 .0855 0.261 0.328 0.832 0 107.9 3932 0 0 184 4116 -1324 2792 1324 -0 1015 1335 3.700 3.875 2.329 + 12 4 14 4 49.55 67.84 68.00 67.98 99.38 91.67 0 48154 12562 3867 .0803 .0803 0.261 0.308 0.827 0 101.4 3694 0 0 173 3867 -1244 2624 1244 -0 959 1268 3.700 3.852 2.318 + 12 4 14 5 49.82 67.84 68.00 67.98 99.39 91.68 0 48154 12562 3640 .0756 .0756 0.261 0.290 0.822 0 95.4 3478 0 0 163 3640 -1170 2470 1170 0 908 1207 3.700 3.831 2.308 + 12 4 15 0 49.67 67.84 68.00 67.98 99.38 91.67 0 48154 12562 2496 .0518 .0518 0.261 0.199 0.800 0 65.4 2385 0 0 112 2496 -803 1694 803 -0 640 888 3.700 3.725 2.253 + 12 4 15 1 49.52 67.77 68.00 67.98 99.38 91.67 0 48154 12562 2218 .0461 .0461 0.261 0.177 0.794 0 58.1 2119 0 0 99 2218 -713 1505 713 0 573 808 3.700 3.699 2.239 + 12 4 15 2 49.37 67.66 68.00 67.96 99.37 91.64 0 48154 12562 1986 .0412 .0412 0.261 0.158 0.790 0 52.1 1897 0 0 89 1986 -641 1345 641 0 516 741 3.700 3.678 2.225 + 12 4 15 3 49.22 67.84 68.00 67.94 99.35 91.60 0 48154 12562 2108 .0438 .0438 0.261 0.168 0.792 0 55.3 2013 0 0 94 2108 -682 1426 682 0 546 777 3.700 3.689 2.227 + 12 4 15 4 49.07 67.93 68.00 67.97 99.37 91.64 0 48154 12562 2627 .0546 .0546 0.261 0.209 0.802 0 68.9 2509 0 0 117 2627 -847 1780 847 0 671 925 3.700 3.737 2.256 + 12 4 15 5 48.92 67.92 68.00 67.98 99.39 91.67 0 48154 12562 3149 .0654 .0654 0.261 0.251 0.813 0 82.6 3008 0 0 141 3149 -1013 2136 1013 0 795 1072 3.700 3.786 2.283 + 12 4 16 0 48.59 68.01 68.00 67.98 99.39 91.67 0 48154 12562 4408 .0915 .0915 0.261 0.351 0.838 0 115.6 4211 0 0 197 4408 -1418 2990 1418 0 1079 1413 3.700 3.902 2.343 + 12 4 16 1 48.26 68.35 68.00 68.00 99.40 91.70 0 48154 12562 5059 0.105 0.105 0.261 0.403 0.851 0 132.6 4833 0 0 226 5059 -1624 3436 1624 0 1220 1582 3.700 3.963 2.376 + 12 4 16 2 47.93 68.44 68.00 68.06 99.46 91.80 0 48154 12562 5649 0.117 0.117 0.261 0.450 0.862 0 148.1 5396 0 0 253 5649 -1796 3853 1796 0 1343 1732 3.700 4.017 2.414 + 12 4 16 3 47.60 68.53 68.00 68.08 99.49 91.84 0 48154 12562 6180 0.128 0.128 0.261 0.492 0.873 0 162.0 5904 0 0 276 6180 -1958 4222 1958 -0 1452 1865 3.700 4.067 2.443 + 12 4 16 4 47.27 68.59 68.00 68.10 99.51 91.88 0 48154 12562 6608 0.137 0.137 0.261 0.526 0.882 0 173.2 6313 0 0 296 6608 -2086 4522 2086 0 1537 1969 3.700 4.106 2.467 + 12 4 16 5 46.94 68.61 68.00 68.12 99.52 91.92 0 48147 12580 6988 0.145 0.145 0.261 0.555 0.889 0 183.2 6676 0 0 313 6988 -2198 4790 2198 0 1616 2065 3.697 4.132 2.484 + 12 4 17 0 46.79 68.75 68.00 68.12 99.51 91.94 0 48129 12627 7300 0.152 0.152 0.262 0.578 0.895 0 191.5 6973 0 0 327 7300 -2288 5011 2288 -0 1686 2149 3.690 4.135 2.490 + 12 4 17 1 46.64 68.83 68.00 68.15 99.53 92.01 0 48112 12673 7539 0.157 0.157 0.263 0.595 0.899 0 197.8 7201 0 0 337 7539 -2347 5192 2347 -0 1743 2217 3.683 4.133 2.496 + 12 4 17 2 46.49 68.97 68.00 68.17 99.54 92.06 0 48094 12719 7723 0.161 0.161 0.264 0.607 0.902 0 202.7 7377 0 0 346 7723 -2391 5332 2391 -0 1788 2271 3.676 4.125 2.498 + 12 4 17 3 46.34 69.03 68.00 68.19 99.55 92.12 0 48077 12765 7954 0.165 0.165 0.266 0.623 0.906 0 208.9 7598 0 0 356 7954 -2447 5508 2447 0 1844 2336 3.668 4.121 2.504 + 12 4 17 4 46.19 69.16 68.00 68.21 99.55 92.17 0 48059 12811 8124 0.169 0.169 0.267 0.634 0.909 0 213.4 7760 0 0 364 8124 -2487 5637 2487 0 1887 2387 3.661 4.113 2.504 + 12 4 17 5 46.04 69.23 68.00 68.23 99.57 92.23 0 48042 12858 8345 0.174 0.174 0.268 0.649 0.912 0 219.3 7970 0 0 374 8345 -2538 5807 2538 0 1940 2451 3.654 4.108 2.509 + 12 4 18 0 45.47 69.35 68.00 68.25 99.54 92.31 0 47975 13033 8104 0.169 0.169 0.272 0.622 0.905 0 213.2 7740 0 0 364 8104 -2438 5666 2438 0 1934 2434 3.627 4.002 2.466 + 12 4 18 1 44.90 69.38 68.00 68.27 99.51 92.41 0 47909 13209 8360 0.175 0.175 0.276 0.633 0.908 0 220.3 7984 0 0 376 8360 -2483 5877 2483 0 2025 2537 3.601 3.943 2.448 + 12 4 18 2 44.33 69.49 68.00 68.27 99.47 92.47 0 47842 13385 8626 0.180 0.180 0.280 0.644 0.911 0 227.6 8238 0 0 388 8626 -2537 6090 2537 -0 2119 2644 3.575 3.888 2.429 + 12 4 18 3 43.76 69.62 68.00 68.29 99.45 92.56 0 47776 13561 8887 0.186 0.186 0.284 0.655 0.914 0 234.8 8486 0 0 401 8887 -2582 6305 2582 0 2213 2750 3.549 3.836 2.413 + 12 4 18 4 43.19 69.73 68.00 68.31 99.43 92.65 0 47709 13736 9139 0.192 0.192 0.288 0.665 0.916 0 241.8 8726 0 0 413 9139 -2622 6517 2622 0 2305 2854 3.523 3.786 2.398 + 12 4 18 5 42.62 69.87 68.00 68.33 99.40 92.74 0 47643 13912 9422 0.198 0.198 0.292 0.677 0.919 0 249.7 8996 0 0 426 9422 -2670 6752 2670 0 2405 2967 3.498 3.741 2.385 + 12 4 19 0 42.20 69.92 68.00 68.36 99.40 92.81 0 47594 14042 9365 0.197 0.197 0.295 0.667 0.917 0 248.4 8941 0 0 424 9365 -2627 6738 2627 0 2423 2983 3.480 3.690 2.367 + 12 4 19 1 41.78 69.90 68.00 68.37 99.37 92.87 0 47545 14171 9551 0.201 0.201 0.298 0.674 0.918 0 253.6 9118 0 0 433 9551 -2657 6893 2657 0 2492 3061 3.461 3.659 2.357 + 12 4 19 2 41.36 69.90 68.00 68.37 99.34 92.90 0 47496 14301 9741 0.205 0.205 0.301 0.681 0.920 0 258.9 9299 0 0 442 9741 -2693 7048 2693 0 2562 3141 3.443 3.629 2.346 + 12 4 19 3 40.94 69.91 68.00 68.37 99.31 92.94 0 47447 14431 9927 0.209 0.209 0.304 0.688 0.922 0 264.1 9476 0 0 451 9927 -2726 7201 2726 0 2632 3219 3.425 3.600 2.336 + 12 4 19 4 40.52 69.99 68.00 68.37 99.28 92.98 0 47398 14560 10061 0.212 0.212 0.307 0.691 0.923 0 268.0 9604 0 0 457 10061 -2744 7317 2744 -0 2691 3285 3.407 3.568 2.324 + 12 4 19 5 40.10 69.89 68.00 68.38 99.26 93.03 0 47349 14690 10292 0.217 0.217 0.310 0.701 0.925 0 274.4 9824 0 0 468 10292 -2783 7509 2783 0 2772 3376 3.390 3.544 2.318 + 12 4 20 0 40.37 69.78 68.00 68.37 99.27 92.99 0 47380 14607 10500 0.222 0.222 0.308 0.719 0.930 0 279.7 10022 0 0 477 10500 -2857 7643 2857 0 2797 3411 3.401 3.583 2.334 + 12 4 20 1 40.64 69.91 68.00 68.35 99.28 92.95 0 47412 14523 10489 0.221 0.221 0.306 0.722 0.931 0 279.3 10012 0 0 476 10489 -2871 7617 2871 -0 2775 3388 3.413 3.608 2.343 + 12 4 20 2 40.91 69.91 68.00 68.38 99.32 92.97 0 47443 14440 10516 0.222 0.222 0.304 0.728 0.932 0 279.8 10039 0 0 477 10516 -2879 7637 2879 0 2760 3374 3.424 3.637 2.359 + 12 4 20 3 41.18 69.92 68.00 68.38 99.34 92.95 0 47475 14357 10475 0.221 0.221 0.302 0.730 0.932 0 278.5 9999 0 0 475 10475 -2877 7597 2877 0 2731 3343 3.436 3.661 2.369 + 12 4 20 4 41.45 69.94 68.00 68.38 99.37 92.94 0 47506 14273 10429 0.220 0.220 0.300 0.731 0.933 0 277.1 9956 0 0 473 10429 -2874 7555 2874 0 2701 3311 3.447 3.686 2.380 + 12 4 20 5 41.72 69.78 68.00 68.39 99.39 92.93 0 47538 14190 10426 0.219 0.219 0.298 0.735 0.934 0 276.9 9953 0 0 472 10426 -2882 7544 2882 0 2680 3289 3.459 3.714 2.393 + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 209 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.93 68.00 68.36 99.33 92.92 0 47489 14320 10830 0.228 0.228 0.302 0.756 0.939 0 287.9 10339 0 0 491 10830 -2987 7843 2987 -0 2796 3424 3.441 3.698 2.386 + 12 4 21 1 40.88 70.01 68.00 68.38 99.32 92.98 0 47440 14449 10969 0.231 0.231 0.305 0.759 0.940 0 291.9 10471 0 0 498 10969 -2997 7972 2997 -0 2858 3492 3.423 3.664 2.376 + 12 4 21 2 40.46 70.00 68.00 68.40 99.31 93.04 0 47391 14579 11118 0.235 0.235 0.308 0.763 0.941 0 296.1 10613 0 0 505 11118 -3011 8107 3011 0 2921 3563 3.405 3.633 2.366 + 12 4 21 3 40.04 70.00 68.00 68.40 99.27 93.07 0 47342 14708 11283 0.238 0.238 0.311 0.767 0.942 0 300.8 10769 0 0 513 11283 -3037 8245 3037 0 2989 3639 3.387 3.603 2.354 + 12 4 21 4 39.62 69.99 68.00 68.39 99.24 93.10 0 47293 14838 11451 0.242 0.242 0.314 0.772 0.943 0 305.7 10930 0 0 521 11451 -3065 8387 3065 0 3057 3715 3.370 3.575 2.344 + 12 4 21 5 39.20 69.99 68.00 68.39 99.20 93.13 0 47244 14968 11615 0.246 0.246 0.317 0.776 0.944 0 310.3 11085 0 0 529 11615 -3090 8524 3090 0 3125 3791 3.352 3.548 2.333 + 12 4 22 0 39.29 70.01 68.00 68.39 99.21 93.12 0 47254 14940 12301 0.260 0.260 0.316 0.823 0.956 0 328.6 11740 0 0 561 12301 -3276 9024 3276 -0 3262 3959 3.356 3.599 2.361 + 12 4 22 1 39.38 70.09 68.00 68.40 99.22 93.12 0 47265 14912 12399 0.262 0.262 0.316 0.831 0.958 0 331.2 11834 0 0 565 12399 -3305 9094 3305 0 3275 3977 3.360 3.613 2.368 + 12 4 22 2 39.47 70.14 68.00 68.41 99.25 93.14 0 47275 14884 12467 0.264 0.264 0.315 0.838 0.959 0 332.9 11899 0 0 568 12467 -3317 9150 3317 0 3282 3986 3.364 3.626 2.377 + 12 4 22 3 39.56 70.14 68.00 68.42 99.26 93.15 0 47286 14857 12532 0.265 0.265 0.314 0.844 0.961 0 334.5 11961 0 0 571 12532 -3332 9199 3332 0 3287 3995 3.367 3.638 2.384 + 12 4 22 4 39.65 70.09 68.00 68.43 99.27 93.15 0 47296 14829 12593 0.266 0.266 0.314 0.849 0.962 0 336.1 12019 0 0 573 12593 -3351 9242 3351 0 3292 4002 3.371 3.651 2.391 + 12 4 22 5 39.74 70.25 68.00 68.42 99.27 93.14 0 47307 14801 12549 0.265 0.265 0.313 0.848 0.962 0 334.9 11978 0 0 571 12549 -3347 9202 3347 0 3276 3983 3.375 3.657 2.392 + 12 4 23 0 39.59 70.35 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.79 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.36 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.22 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.95 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.79 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 007: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 007: + + + ALTER RSYS "rsys1" + rsDefrostModel = "None" + rsCtrlAuxH = CYCLE + FIXRPTITLES("RSYS -- Aux Cycle / Def None") + + RUN + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 007 Sat 01-Jan-22 2:52:50 pm Page 210 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 008: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 55 subhours of run. + Total condensation heat = 0.0547168 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.754 0 0.271 0.145 0 0 0 0 0.0555 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.271 0 1.113 0.575 0 0 0 0 0.221 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.243 0 1.142 0.503 0 0 0 0 0.231 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.541 0 0.716 0.526 0 0 0 0 0.152 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.327 0 0.0841 0.0311 0 0 0 0 0.0172 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.305 0 0.0832 0.0706 0 0 0 0 0.0182 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Alt / Def None + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 70.029 2.897 1.045 0 0.145 0.0555 1.245 0 0 0 0 0 0 0 0 0 0 0.271 0 0.145 0.0555 0.0359 0.507 0 0 0 0 0 0 0 0.875 -.0073 0 0 0 0 + Dec 269.04 11.508 4.131 0 0.575 0.221 4.927 0 0 0 0 0 0 0 0 0 0 1.113 0 0.575 0.221 0.0605 1.969 0 0 0 0 0 0 0 3.607 -.0273 0 0 0 0 + Jan 297.92 10.066 4.447 0 0.503 0.231 5.182 0 0 0 0 0 0 0 0 0 0 1.142 0 0.503 0.231 0.0760 1.953 0 0 0 0 0 0 0 3.813 -.0311 0 0 0 0 + Feb 176.79 10.527 2.749 0 0.526 0.152 3.427 0 0 0 0 0 0 0 0 0 0 0.716 0 0.526 0.152 0.0498 1.445 0 0 0 0 0 0 0 2.488 -.0181 0 0 0 0 + Mar 24.463 0.622 0.338 0 0.0311 0.0172 0.387 0 0 0 0 0 0 0 0 0 0 0.0841 0 0.0311 0.0172 .00887 0.141 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 20.606 1.412 0.321 0 0.0706 0.0182 0.410 0 0 0 0 0 0 0 0 0 0 0.0832 0 0.0706 0.0182 0.0180 0.190 0 0 0 0 0 0 0 0.289 -.0015 0 0 0 0 + + Yr 858.84 37.032 13.031 0 1.852 0.695 15.578 0 0 0 0 0 0 0 0 0 0 3.410 0 1.852 0.695 0.249 6.205 0 0 0 0 0 0 0 11.337 -.0892 0 0 0 0 + + + +RSYS -- Aux Alt / Def None + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.271 0.145 0.0555 0.507 0.875 1.726 0.507 0.875 1.726 0 0 0 0 0 0 0 + Dec 1.113 0.575 0.221 1.969 3.607 1.831 1.969 3.607 1.831 0 0 0 0 0 0 -.0078 + Jan 1.142 0.503 0.231 1.953 3.813 1.952 1.953 3.813 1.952 0 0 0 0 0 0 0 + Feb 0.716 0.526 0.152 1.445 2.488 1.722 1.445 2.488 1.722 0 0 0 0 0 0 -.0039 + Mar 0.0841 0.0311 0.0172 0.141 0.265 1.877 0.141 0.265 1.877 0 0 0 0 0 0 -.0020 + Apr 0.0832 0.0706 0.0182 0.190 0.289 1.520 0.190 0.289 1.520 0 0 0 0 0 0 -.0020 + + Yr 3.410 1.852 0.695 6.205 11.337 1.827 6.205 11.337 1.827 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 211 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Alt / Def None for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.771 0 0.335 2.242 4.704 2.098 2.242 4.704 2.098 0 0 0 0 0 0 -0.000 + 8 6.158 8.333 1.467 16.094 25.381 1.577 16.094 25.381 1.577 0 0 0 0 0 0 -0.000 + 9 4.708 0 0.891 5.735 14.017 2.444 5.735 14.017 2.444 0 0 0 0 0 0 -0.000 + 10 3.934 0 0.764 4.835 11.601 2.399 4.835 11.601 2.399 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.149 9.801 2.362 4.149 9.801 2.362 0 0 0 0 0 0 -0.000 + 12 2.899 0 0.595 3.631 8.454 2.329 3.631 8.454 2.329 0 0 0 0 0 0 -0.000 + 13 2.362 0 0.502 3.001 7.081 2.360 3.001 7.081 2.360 0 0 0 0 0 0 -0.000 + 14 1.979 0 0.401 2.379 5.690 2.391 2.379 5.690 2.391 0 0 0 0 0 0 0 + 15 1.976 0 0.400 2.375 5.699 2.399 2.375 5.699 2.399 0 0 0 0 0 0 0 + 16 1.963 0 0.397 2.360 5.691 2.412 2.360 5.691 2.412 0 0 0 0 0 0 0 + 17 1.979 0 0.401 2.379 5.775 2.427 2.379 5.775 2.427 0 0 0 0 0 0 0 + 18 1.953 0 0.394 2.347 5.705 2.431 2.347 5.705 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.383 5.445 2.285 2.383 5.445 2.285 0 0 0 0 0 0 -0.000 + 20 1.835 0 0.365 2.336 5.361 2.295 2.336 5.361 2.295 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.503 2.315 2.376 5.503 2.315 0 0 0 0 0 0 -0.000 + 22 2.069 0 0.416 2.622 6.183 2.358 2.622 6.183 2.358 0 0 0 0 0 0 -0.000 + 23 2.369 0 0.477 2.982 7.152 2.398 2.982 7.152 2.398 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def None for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.594 0 0.803 5.533 12.550 2.268 5.533 12.550 2.268 0 0 0 0 0 0 -0.000 + 8 5.603 16.667 1.660 24.067 30.268 1.258 24.067 30.268 1.258 0 0 0 0 0 0 -0.000 + 9 5.929 0 1.028 7.093 17.178 2.422 7.093 17.178 2.422 0 0 0 0 0 0 -0.000 + 10 4.413 0 0.804 5.353 12.968 2.422 5.353 12.968 2.422 0 0 0 0 0 0 -0.000 + 11 3.665 0 0.694 4.496 10.933 2.432 4.496 10.933 2.432 0 0 0 0 0 0 -0.000 + 12 3.174 0 0.623 3.933 9.662 2.457 3.933 9.662 2.457 0 0 0 0 0 0 -0.000 + 13 2.282 0 0.476 2.895 7.223 2.495 2.895 7.223 2.495 0 0 0 0 0 0 -0.000 + 14 2.010 0 0.409 2.555 6.196 2.425 2.555 6.196 2.425 0 0 0 0 0 0 -0.000 + 15 1.937 0 0.390 2.464 5.952 2.416 2.464 5.952 2.416 0 0 0 0 0 0 -0.000 + 16 1.340 0 0.252 1.728 3.860 2.233 1.728 3.860 2.233 0 0 0 0 0 0 -0.000 + 17 1.800 0 0.357 2.293 5.471 2.386 2.293 5.471 2.386 0 0 0 0 0 0 -0.000 + 18 1.977 0 0.399 2.513 6.177 2.458 2.513 6.177 2.458 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 212 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.115 0 0.406 2.657 6.352 2.390 2.657 6.352 2.390 0 0 0 0 0 0 -0.000 + 20 2.513 0 0.449 3.099 7.116 2.296 3.099 7.116 2.296 0 0 0 0 0 0 -0.000 + 21 2.849 0 0.498 3.484 7.970 2.288 3.484 7.970 2.288 0 0 0 0 0 0 -0.000 + 22 3.158 0 0.544 3.839 8.823 2.298 3.839 8.823 2.298 0 0 0 0 0 0 -0.000 + 23 3.642 0 0.617 4.395 10.105 2.299 4.395 10.105 2.299 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def None for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.651 0 0.0835 0.871 1.319 1.515 0.871 1.319 1.515 0 0 0 0 0 0 -0.000 + 6 1.884 0 0.249 2.270 3.944 1.738 2.270 3.944 1.738 0 0 0 0 0 0 -0.000 + 7 7.937 8.333 1.533 17.941 27.146 1.513 17.941 27.146 1.513 0 0 0 0 0 0 -0.000 + 8 4.826 30.905 2.028 37.895 39.126 1.032 37.895 39.126 1.032 0 0 0 0 0 0 -0.000 + 9 7.327 0 1.139 8.603 19.526 2.270 8.603 19.526 2.270 0 0 0 0 0 0 -0.000 + 10 3.646 0 0.626 4.408 10.042 2.278 4.408 10.042 2.278 0 0 0 0 0 0 -0.000 + 11 1.949 0 0.343 2.428 5.357 2.206 2.428 5.357 2.206 0 0 0 0 0 0 -0.000 + 12 1.392 0 0.250 1.778 3.851 2.166 1.778 3.851 2.166 0 0 0 0 0 0 -0.000 + 13 0.907 0 0.162 1.206 2.464 2.043 1.206 2.464 2.043 0 0 0 0 0 0 -0.000 + 14 0.433 0 0.0741 0.644 1.116 1.734 0.644 1.116 1.734 0 0 0 0 0 0 -0.000 + 15 0.0367 0 .00605 0.179 0.0904 0.505 0.179 0.0904 0.505 0 0 0 0 0 0 -0.000 + 16 0.0246 0 .00408 0.165 0.0602 0.365 0.165 0.0602 0.365 0 0 0 0 0 0 -0.000 + 17 0.612 0 0.107 0.855 1.577 1.844 0.855 1.577 1.844 0 0 0 0 0 0 -0.000 + 18 1.713 0 0.312 2.162 4.705 2.176 2.162 4.705 2.176 0 0 0 0 0 0 -0.000 + 19 2.377 0 0.407 2.921 6.305 2.159 2.921 6.305 2.159 0 0 0 0 0 0 -0.000 + 20 2.946 0 0.485 3.568 7.669 2.150 3.568 7.669 2.150 0 0 0 0 0 0 -0.000 + 21 3.258 0 0.536 3.931 8.555 2.177 3.931 8.555 2.177 0 0 0 0 0 0 -0.000 + 22 3.681 0 0.600 4.418 9.668 2.189 4.418 9.668 2.189 0 0 0 0 0 0 -0.000 + 23 4.126 0 0.672 4.934 10.939 2.217 4.934 10.939 2.217 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 44600 42500 31130 3.70 3.19 2.60 2.32 4.45 3.32 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 213 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 254 111 364 1245 875 6 0 0 0 0 0 0 0 + Dec 67.53 895 410 1305 4927 3607 15 0 0 0 0 0 0 0 + Jan 67.52 938 416 1354 5182 3813 15 0 0 0 0 0 0 0 + Feb 67.64 628 297 925 3427 2488 14 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 387 265 2 0 0 0 0 0 0 0 + Apr 69.33 80 38 118 410 289 3 0 0 0 0 0 0 0 + + Yr 68.43 2882 1304 4186 15578 11337 55 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 214 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 84 38 122 455 333 -0 0 0 0 0 0 0 0 + 1 65.00 91 43 134 502 368 0 0 0 0 0 0 0 0 + 2 65.00 105 49 154 579 426 -0 0 0 0 0 0 0 0 + 3 65.00 117 55 171 647 476 -0 0 0 0 0 0 0 0 + 4 65.00 129 61 190 716 526 0 0 0 0 0 0 0 0 + 5 65.00 142 67 210 790 581 0 0 0 0 0 0 0 0 + 6 65.00 159 75 235 884 650 0 0 0 0 0 0 0 0 + 1 65.96 637 831 1468 8692 7005 220 0 0 0 0 0 0 0 + 2 66.50 589 706 1295 7206 5794 117 0 0 0 0 0 0 0 + 3 66.50 529 332 861 3958 3097 0 0 0 0 0 0 0 0 + 4 66.50 524 337 860 3969 3109 0 0 0 0 0 0 0 0 + 5 66.50 536 351 887 3989 3102 0 0 0 0 0 0 0 0 + 6 66.50 529 323 852 3720 2868 0 0 0 0 0 0 0 0 + 1 67.11 622 809 1432 8692 7122 139 0 0 0 0 0 0 0 + 2 67.56 634 819 1453 8692 7135 104 0 0 0 0 0 0 0 + 3 67.90 621 797 1419 8692 7194 79 0 0 0 0 0 0 0 + 4 68.00 546 639 1185 7049 5844 21 0 0 0 0 0 0 0 + 5 68.00 539 548 1088 6123 5035 0 0 0 0 0 0 0 0 + 6 68.00 538 496 1034 5544 4510 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 215 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 542 436 978 4925 3947 0 0 0 0 0 0 0 0 + 2 68.00 534 376 910 4356 3446 -0 0 0 0 0 0 0 0 + 3 68.00 530 325 854 3833 2979 0 0 0 0 0 0 0 0 + 4 68.00 524 282 806 3403 2597 0 0 0 0 0 0 0 0 + 5 68.00 519 245 764 3032 2268 0 0 0 0 0 0 0 0 + 6 68.00 514 212 726 2696 1970 0 0 0 0 0 0 0 0 + 1 68.00 508 193 702 2499 1797 0 0 0 0 0 0 0 0 + 2 68.00 481 172 653 2252 1599 0 0 0 0 0 0 0 0 + 3 68.00 433 152 585 2001 1416 0 0 0 0 0 0 0 0 + 4 68.00 396 137 533 1801 1269 0 0 0 0 0 0 0 0 + 5 68.00 360 122 482 1606 1124 0 0 0 0 0 0 0 0 + 6 68.00 325 108 433 1423 990 -0 0 0 0 0 0 0 0 + 1 68.00 317 104 421 1363 942 -0 0 0 0 0 0 0 0 + 2 68.00 289 93 382 1220 837 0 0 0 0 0 0 0 0 + 3 68.00 262 83 345 1088 743 -0 0 0 0 0 0 0 0 + 4 68.00 236 74 310 962 652 0 0 0 0 0 0 0 0 + 5 68.00 212 65 278 850 573 0 0 0 0 0 0 0 0 + 6 68.00 185 57 242 736 494 0 0 0 0 0 0 0 0 + 1 68.00 202 62 264 799 535 0 0 0 0 0 0 0 0 + 2 68.00 180 55 236 711 475 -0 0 0 0 0 0 0 0 + 3 68.00 157 48 206 620 414 -0 0 0 0 0 0 0 0 + 4 68.00 136 42 178 536 358 -0 0 0 0 0 0 0 0 + 5 68.00 116 36 152 456 304 0 0 0 0 0 0 0 0 + 6 68.00 96 29 126 377 251 0 0 0 0 0 0 0 0 + 1 68.00 60 18 78 234 156 0 0 0 0 0 0 0 0 + 2 68.00 37 11 49 145 96 0 0 0 0 0 0 0 0 + 3 68.00 15 5 20 59 39 0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 216 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 8 2 11 29 19 -0 0 0 0 0 0 0 0 + 1 68.00 73 22 95 262 167 -0 0 0 0 0 0 0 0 + 2 68.00 81 24 105 287 183 0 0 0 0 0 0 0 0 + 3 68.00 98 29 126 348 222 0 0 0 0 0 0 0 0 + 4 68.00 107 32 139 381 243 0 0 0 0 0 0 0 0 + 5 68.00 117 35 152 418 266 0 0 0 0 0 0 0 0 + 6 68.00 134 40 173 475 302 -0 0 0 0 0 0 0 0 + 1 68.00 133 40 173 472 300 0 0 0 0 0 0 0 0 + 2 68.00 150 44 194 530 336 0 0 0 0 0 0 0 0 + 3 68.00 162 48 210 573 363 0 0 0 0 0 0 0 0 + 4 68.00 179 53 232 632 400 0 0 0 0 0 0 0 0 + 5 68.00 191 57 247 673 426 0 0 0 0 0 0 0 0 + 6 68.00 207 61 269 731 463 0 0 0 0 0 0 0 0 + 1 68.00 232 69 301 818 517 0 0 0 0 0 0 0 0 + 2 68.00 249 74 323 877 554 0 0 0 0 0 0 0 0 + 3 68.00 265 79 343 935 591 0 0 0 0 0 0 0 0 + 4 68.00 276 82 358 977 619 -0 0 0 0 0 0 0 0 + 5 68.00 290 86 376 1029 652 0 0 0 0 0 0 0 0 + 6 68.00 300 90 390 1076 686 0 0 0 0 0 0 0 0 + 1 68.00 325 99 424 1181 758 0 0 0 0 0 0 0 0 + 2 68.00 334 103 437 1231 794 0 0 0 0 0 0 0 0 + 3 68.00 342 107 449 1279 830 0 0 0 0 0 0 0 0 + 4 68.00 350 111 462 1328 866 0 0 0 0 0 0 0 0 + 5 68.00 359 116 474 1376 902 0 0 0 0 0 0 0 0 + 6 68.00 366 120 485 1423 937 0 0 0 0 0 0 0 0 + 1 68.00 402 133 535 1581 1046 -0 0 0 0 0 0 0 0 + 2 68.00 410 137 547 1630 1083 0 0 0 0 0 0 0 0 + 3 68.00 414 141 555 1674 1118 0 0 0 0 0 0 0 0 + 4 68.00 421 145 565 1720 1155 0 0 0 0 0 0 0 0 + 5 68.00 426 148 575 1765 1190 -0 0 0 0 0 0 0 0 + 6 68.00 430 152 582 1804 1222 -0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 217 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 50 23 73 245 172 -0 0 0 0 0 0 0 0 + 4 65.00 122 56 178 597 418 0 0 0 0 0 0 0 0 + 5 65.00 140 65 205 691 486 -0 0 0 0 0 0 0 0 + 6 65.00 156 73 229 777 548 0 0 0 0 0 0 0 0 + 1 65.95 716 903 1619 8692 6855 219 0 0 0 0 0 0 0 + 2 66.50 664 778 1443 7247 5685 119 0 0 0 0 0 0 0 + 3 66.50 591 350 941 3868 2928 0 0 0 0 0 0 0 0 + 4 66.50 585 359 944 3916 2972 0 0 0 0 0 0 0 0 + 5 66.50 600 386 986 4028 3041 0 0 0 0 0 0 0 0 + 6 66.50 592 356 948 3776 2828 0 0 0 0 0 0 0 0 + 1 67.12 689 870 1558 8692 6992 142 0 0 0 0 0 0 0 + 2 67.58 698 877 1575 8692 7010 107 0 0 0 0 0 0 0 + 3 67.94 681 850 1531 8692 7079 82 0 0 0 0 0 0 0 + 4 68.00 602 639 1241 6589 5337 12 0 0 0 0 0 0 0 + 5 68.00 594 562 1156 5871 4716 0 0 0 0 0 0 0 0 + 6 68.00 591 503 1095 5282 4187 0 0 0 0 0 0 0 0 + 1 68.00 592 440 1032 4692 3660 -0 0 0 0 0 0 0 0 + 2 68.00 584 378 962 4128 3166 0 0 0 0 0 0 0 0 + 3 68.00 578 328 905 3654 2748 -0 0 0 0 0 0 0 0 + 4 68.00 571 284 854 3241 2387 0 0 0 0 0 0 0 0 + 5 68.00 564 247 812 2894 2082 -0 0 0 0 0 0 0 0 + 6 68.00 557 216 773 2595 1822 -0 0 0 0 0 0 0 0 + 1 68.00 531 199 729 2409 1679 0 0 0 0 0 0 0 0 + 2 68.00 478 177 655 2154 1499 0 0 0 0 0 0 0 0 + 3 68.00 432 158 590 1926 1337 0 0 0 0 0 0 0 0 + 4 68.00 391 141 532 1717 1186 0 0 0 0 0 0 0 0 + 5 68.00 355 126 482 1539 1057 0 0 0 0 0 0 0 0 + 6 68.00 321 112 433 1369 935 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 218 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 348 119 467 1451 984 -0 0 0 0 0 0 0 0 + 2 68.00 323 108 431 1322 891 -0 0 0 0 0 0 0 0 + 3 68.00 294 97 391 1187 796 -0 0 0 0 0 0 0 0 + 4 68.00 268 86 354 1063 709 0 0 0 0 0 0 0 0 + 5 68.00 243 76 319 946 626 0 0 0 0 0 0 0 0 + 6 68.00 216 66 282 825 543 0 0 0 0 0 0 0 0 + 1 68.00 215 65 280 812 532 0 0 0 0 0 0 0 0 + 2 68.00 196 59 255 736 481 0 0 0 0 0 0 0 0 + 3 68.00 176 53 228 660 431 -0 0 0 0 0 0 0 0 + 4 68.00 156 47 203 588 385 0 0 0 0 0 0 0 0 + 5 68.00 139 42 180 523 342 0 0 0 0 0 0 0 0 + 6 68.00 122 36 158 458 300 0 0 0 0 0 0 0 0 + 1 68.00 85 25 110 319 209 0 0 0 0 0 0 0 0 + 2 68.00 66 20 86 249 163 0 0 0 0 0 0 0 0 + 3 68.00 47 14 62 178 116 -0 0 0 0 0 0 0 0 + 4 68.00 31 9 40 115 75 0 0 0 0 0 0 0 0 + 5 68.00 15 5 20 57 37 -0 0 0 0 0 0 0 0 + 6 68.00 1 0 1 4 3 -0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 68 20 89 256 167 -0 0 0 0 0 0 0 0 + 5 68.00 137 41 178 511 333 -0 0 0 0 0 0 0 0 + 6 68.00 152 46 197 573 375 0 0 0 0 0 0 0 0 + 1 68.00 151 45 196 571 375 -0 0 0 0 0 0 0 0 + 2 68.00 176 53 229 668 439 0 0 0 0 0 0 0 0 + 3 68.00 196 61 256 761 505 0 0 0 0 0 0 0 0 + 4 68.00 213 68 281 850 569 0 0 0 0 0 0 0 0 + 5 68.00 230 76 305 944 638 0 0 0 0 0 0 0 0 + 6 68.00 245 83 329 1037 708 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 219 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 246 84 329 1047 718 0 0 0 0 0 0 0 0 + 2 68.00 254 87 341 1090 749 -0 0 0 0 0 0 0 0 + 3 68.00 262 90 352 1128 776 0 0 0 0 0 0 0 0 + 4 68.00 270 93 364 1173 809 -0 0 0 0 0 0 0 0 + 5 68.00 276 96 373 1204 832 0 0 0 0 0 0 0 0 + 6 68.00 285 100 384 1246 862 0 0 0 0 0 0 0 0 + 1 68.00 295 104 400 1300 901 0 0 0 0 0 0 0 0 + 2 68.00 304 108 413 1351 939 0 0 0 0 0 0 0 0 + 3 68.00 312 112 425 1395 970 0 0 0 0 0 0 0 0 + 4 68.00 316 115 431 1421 990 0 0 0 0 0 0 0 0 + 5 68.00 325 119 443 1471 1027 0 0 0 0 0 0 0 0 + 6 68.00 328 121 450 1494 1045 0 0 0 0 0 0 0 0 + 1 68.00 347 127 474 1568 1094 0 0 0 0 0 0 0 0 + 2 68.00 353 128 481 1583 1102 0 0 0 0 0 0 0 0 + 3 68.00 358 129 487 1595 1108 0 0 0 0 0 0 0 0 + 4 68.00 363 130 493 1604 1111 0 0 0 0 0 0 0 0 + 5 68.00 367 130 498 1610 1113 -0 0 0 0 0 0 0 0 + 6 68.00 371 131 501 1613 1112 0 0 0 0 0 0 0 0 + 1 68.00 400 141 541 1738 1196 0 0 0 0 0 0 0 0 + 2 68.00 405 143 548 1763 1215 -0 0 0 0 0 0 0 0 + 3 68.00 408 144 552 1784 1232 0 0 0 0 0 0 0 0 + 4 68.00 412 146 558 1806 1248 0 0 0 0 0 0 0 0 + 5 68.00 417 147 564 1829 1264 0 0 0 0 0 0 0 0 + 6 68.00 416 147 564 1829 1265 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 220 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 18 8 26 92 66 -0 0 0 0 0 0 0 0 + 2 65.00 101 46 147 511 364 0 0 0 0 0 0 0 0 + 3 65.00 114 52 166 578 412 -0 0 0 0 0 0 0 0 + 4 65.00 127 58 184 645 461 -0 0 0 0 0 0 0 0 + 5 65.00 140 64 204 715 511 0 0 0 0 0 0 0 0 + 6 65.00 155 71 225 787 562 -0 0 0 0 0 0 0 0 + 1 65.96 683 873 1556 8692 6917 220 0 0 0 0 0 0 0 + 2 66.50 634 743 1377 7187 5693 117 0 0 0 0 0 0 0 + 3 66.50 565 340 905 3885 2980 0 0 0 0 0 0 0 0 + 4 66.50 560 352 912 3962 3050 0 0 0 0 0 0 0 0 + 5 66.50 575 379 953 4084 3131 0 0 0 0 0 0 0 0 + 6 66.50 567 349 916 3823 2908 0 0 0 0 0 0 0 0 + 1 67.10 661 844 1504 8692 7050 138 0 0 0 0 0 0 0 + 2 67.54 670 851 1521 8692 7069 102 0 0 0 0 0 0 0 + 3 67.88 654 826 1480 8692 7135 77 0 0 0 0 0 0 0 + 4 68.00 579 692 1271 7318 6021 26 0 0 0 0 0 0 0 + 5 68.00 572 587 1159 6285 5126 0 0 0 0 0 0 0 0 + 6 68.00 568 531 1099 5723 4624 -0 0 0 0 0 0 0 0 + 1 68.00 570 467 1037 5098 4061 -0 0 0 0 0 0 0 0 + 2 68.00 563 409 971 4545 3574 0 0 0 0 0 0 0 0 + 3 68.00 558 356 914 4036 3122 0 0 0 0 0 0 0 0 + 4 68.00 552 319 872 3681 2809 0 0 0 0 0 0 0 0 + 5 68.00 549 289 838 3387 2549 0 0 0 0 0 0 0 0 + 6 68.00 544 265 809 3156 2347 0 0 0 0 0 0 0 0 + 1 68.00 542 259 801 3098 2298 0 0 0 0 0 0 0 0 + 2 68.00 538 244 782 2961 2178 0 0 0 0 0 0 0 0 + 3 68.00 535 233 768 2851 2083 0 0 0 0 0 0 0 0 + 4 68.00 533 223 756 2749 1993 0 0 0 0 0 0 0 0 + 5 68.00 531 215 746 2663 1918 0 0 0 0 0 0 0 0 + 6 68.00 530 206 736 2573 1836 0 0 0 0 0 0 0 0 + 1 68.00 529 207 736 2588 1852 0 0 0 0 0 0 0 0 + 2 68.00 526 202 728 2536 1809 -0 0 0 0 0 0 0 0 + 3 68.00 524 197 721 2489 1768 0 0 0 0 0 0 0 0 + 4 68.00 521 192 714 2439 1726 0 0 0 0 0 0 0 0 + 5 68.00 519 185 704 2370 1666 -0 0 0 0 0 0 0 0 + 6 68.00 515 179 693 2311 1618 -0 0 0 0 0 0 0 0 + 1 68.00 499 170 670 2218 1549 0 0 0 0 0 0 0 0 + 2 68.00 480 163 643 2119 1476 0 0 0 0 0 0 0 0 + 3 68.00 464 155 619 2041 1422 -0 0 0 0 0 0 0 0 + 4 68.00 445 148 592 1945 1352 -0 0 0 0 0 0 0 0 + 5 68.00 428 141 570 1866 1297 -0 0 0 0 0 0 0 0 + 6 68.00 409 134 543 1768 1225 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 221 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 369 120 489 1600 1110 -0 0 0 0 0 0 0 0 + 2 68.00 346 112 458 1498 1040 0 0 0 0 0 0 0 0 + 3 68.00 324 104 428 1393 965 -0 0 0 0 0 0 0 0 + 4 68.00 303 97 400 1296 895 0 0 0 0 0 0 0 0 + 5 68.00 285 91 376 1208 832 0 0 0 0 0 0 0 0 + 6 68.00 268 85 353 1135 782 0 0 0 0 0 0 0 0 + 1 68.00 239 75 314 1003 689 0 0 0 0 0 0 0 0 + 2 68.00 221 69 290 917 626 0 0 0 0 0 0 0 0 + 3 68.00 203 63 266 834 568 -0 0 0 0 0 0 0 0 + 4 68.00 188 58 246 771 524 -0 0 0 0 0 0 0 0 + 5 68.00 180 56 235 734 499 0 0 0 0 0 0 0 0 + 6 68.00 173 53 226 705 479 0 0 0 0 0 0 0 0 + 1 68.00 174 54 228 711 483 0 0 0 0 0 0 0 0 + 2 68.00 176 54 230 716 486 0 0 0 0 0 0 0 0 + 3 68.00 174 54 228 707 479 0 0 0 0 0 0 0 0 + 4 68.00 168 52 220 682 463 0 0 0 0 0 0 0 0 + 5 68.00 160 49 209 651 442 0 0 0 0 0 0 0 0 + 6 68.00 151 47 197 612 415 0 0 0 0 0 0 0 0 + 1 68.00 104 32 136 422 286 0 0 0 0 0 0 0 0 + 2 68.00 92 28 120 374 254 0 0 0 0 0 0 0 0 + 3 68.00 83 25 108 335 227 0 0 0 0 0 0 0 0 + 4 68.00 89 27 117 361 244 0 0 0 0 0 0 0 0 + 5 68.00 110 34 144 445 301 0 0 0 0 0 0 0 0 + 6 68.00 131 40 171 528 357 0 0 0 0 0 0 0 0 + 1 68.00 183 56 239 740 501 -0 0 0 0 0 0 0 0 + 2 68.00 209 64 273 848 575 0 0 0 0 0 0 0 0 + 3 68.00 231 71 302 945 644 0 0 0 0 0 0 0 0 + 4 68.00 251 77 329 1035 706 0 0 0 0 0 0 0 0 + 5 68.00 268 82 350 1107 757 0 0 0 0 0 0 0 0 + 6 68.00 282 87 369 1171 802 0 0 0 0 0 0 0 0 + 1 68.00 293 91 384 1223 839 -0 0 0 0 0 0 0 0 + 2 68.00 300 94 394 1263 869 0 0 0 0 0 0 0 0 + 3 68.00 305 96 401 1293 892 0 0 0 0 0 0 0 0 + 4 68.00 312 98 410 1332 921 0 0 0 0 0 0 0 0 + 5 68.00 316 100 417 1360 943 0 0 0 0 0 0 0 0 + 6 68.00 322 103 425 1396 971 0 0 0 0 0 0 0 0 + 1 68.00 308 100 409 1356 947 0 0 0 0 0 0 0 0 + 2 68.00 313 103 416 1399 983 -0 0 0 0 0 0 0 0 + 3 68.00 318 107 425 1443 1018 -0 0 0 0 0 0 0 0 + 4 68.00 322 110 432 1486 1054 0 0 0 0 0 0 0 0 + 5 68.00 326 113 439 1528 1089 0 0 0 0 0 0 0 0 + 6 68.00 330 117 447 1576 1129 0 0 0 0 0 0 0 0 + 1 68.00 324 116 440 1565 1125 0 0 0 0 0 0 0 0 + 2 68.00 326 118 445 1596 1151 0 0 0 0 0 0 0 0 + 3 68.00 330 121 451 1628 1177 0 0 0 0 0 0 0 0 + 4 68.00 333 124 456 1659 1202 -0 0 0 0 0 0 0 0 + 5 68.00 333 126 459 1680 1221 0 0 0 0 0 0 0 0 + 6 68.00 337 128 466 1720 1254 0 0 0 0 0 0 0 0 + 1 68.00 347 131 478 1754 1276 0 0 0 0 0 0 0 0 + 2 68.00 350 132 482 1759 1276 0 0 0 0 0 0 0 0 + 3 68.00 351 131 483 1756 1273 0 0 0 0 0 0 0 0 + 4 68.00 353 131 484 1759 1275 -0 0 0 0 0 0 0 0 + 5 68.00 353 130 484 1745 1261 0 0 0 0 0 0 0 0 + 6 68.00 353 129 483 1743 1260 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 222 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 363 135 498 1807 1309 -0 0 0 0 0 0 0 0 + 2 68.00 364 136 501 1833 1332 0 0 0 0 0 0 0 0 + 3 68.00 365 138 503 1857 1353 -0 0 0 0 0 0 0 0 + 4 68.00 367 141 508 1884 1376 0 0 0 0 0 0 0 0 + 5 68.00 369 143 512 1912 1399 0 0 0 0 0 0 0 0 + 6 68.00 371 146 517 1939 1422 0 0 0 0 0 0 0 0 + 1 68.00 393 154 548 2053 1505 0 0 0 0 0 0 0 0 + 2 68.00 397 155 552 2069 1517 -0 0 0 0 0 0 0 0 + 3 68.00 399 156 554 2081 1526 0 0 0 0 0 0 0 0 + 4 68.00 401 156 557 2091 1535 0 0 0 0 0 0 0 0 + 5 68.00 403 157 560 2102 1542 0 0 0 0 0 0 0 0 + 6 68.00 403 157 559 2094 1535 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 223 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.55 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.41 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.23 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.08 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.89 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.75 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.58 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.42 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.26 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.10 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.94 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.78 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.62 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.46 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.30 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.15 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 65.99 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.83 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.67 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.51 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.35 65.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.19 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 65.03 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.87 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.71 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.55 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.39 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.22 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.06 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.90 65.00 64.83 95.01 89.54 0 46278 17527 2730 .0590 .0590 0.379 0.156 0.789 0 74.5 2603 0 0 127 2730 -733 1998 732 -1 1007 1270 3.037 2.586 1.762 + 12 2 5 0 30.77 64.12 65.00 64.80 94.97 89.57 0 46260 17574 3015 .0652 .0652 0.380 0.172 0.793 0 82.3 2874 0 0 140 3015 -805 2210 805 0 1108 1385 3.031 2.593 1.770 + 12 2 5 1 30.62 64.07 65.00 64.83 94.99 89.63 0 46243 17620 3477 .0752 .0752 0.381 0.197 0.799 0 94.9 3315 0 0 162 3477 -921 2555 921 -0 1270 1569 3.026 2.609 1.784 + 12 2 5 2 30.47 64.00 65.00 64.82 94.97 89.62 0 46225 17666 3882 .0840 .0840 0.382 0.220 0.805 0 106.0 3701 0 0 181 3882 -1029 2853 1029 -0 1411 1729 3.021 2.623 1.792 + 12 2 5 3 30.32 63.97 65.00 64.81 94.95 89.60 0 46208 17713 4293 .0929 .0929 0.383 0.242 0.811 0 117.3 4093 0 0 200 4293 -1139 3154 1139 0 1553 1890 3.016 2.636 1.799 + 12 2 5 4 30.17 63.92 65.00 64.80 94.93 89.59 0 46190 17759 4741 0.103 0.103 0.384 0.267 0.817 0 129.6 4520 0 0 221 4741 -1258 3483 1258 0 1705 2063 3.010 2.651 1.808 + 12 2 5 5 30.02 63.90 65.00 64.80 94.91 89.58 0 46173 17806 5305 0.115 0.115 0.386 0.298 0.824 0 145.0 5058 0 0 247 5305 -1408 3897 1408 0 1894 2278 3.005 2.671 1.820 + 12 2 6 0 29.90 63.89 65.96 64.85 98.86 96.41 0 46159 17843 81083 .0467 1.757 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8805 42028 10126 1321 0 52290 3.001 2.251 0.806 + 12 2 6 1 29.78 67.39 66.50 65.67 95.77 93.39 0 46145 17880 43249 0.937 0.937 0.937 1.000 1.000 0 1183 41218 0 0 2018 43236 -7769 34765 8470 702 13738 15892 2.997 3.000 2.207 + 12 2 6 2 29.66 67.16 66.50 66.57 96.65 92.65 0 46131 17917 23749 0.515 0.515 0.515 1.000 1.000 0 649.9 22640 0 0 1109 23749 -5168 18581 5169 0 7445 8690 2.993 3.041 2.172 + 12 2 6 3 29.54 65.99 66.50 66.56 96.63 92.67 0 46117 17954 23813 0.516 0.516 0.516 1.000 1.000 0 651.8 22701 0 0 1112 23813 -5162 18651 5162 0 7476 8725 2.989 3.037 2.172 + 12 2 6 4 29.42 66.19 66.50 66.41 96.47 92.48 0 46103 17991 23936 0.519 0.519 0.519 1.000 1.000 0 655.4 22818 0 0 1118 23936 -5325 18611 5325 0 7526 8781 2.984 3.032 2.153 + 12 2 6 5 29.30 66.40 66.50 66.43 96.49 92.25 0 46089 18029 22322 0.484 0.484 0.484 1.000 1.000 0 611.4 21278 0 0 1043 22321 -5111 17210 5111 0 7011 8191 2.980 3.035 2.137 + 12 2 7 0 29.57 66.52 67.11 66.48 100.49 98.07 0 46120 17945 104k .0467 2.262 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8589 42729 9424 835 0 52290 2.990 2.242 0.819 + 12 2 7 1 29.84 67.98 67.56 67.02 101.03 98.58 0 46152 17861 78030 .0467 1.691 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8720 42809 9345 625 0 52290 2.999 2.249 0.821 + 12 2 7 2 30.11 68.42 67.90 67.59 101.60 99.18 0 46183 17778 57931 .0466 1.254 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8512 43167 8987 475 0 52290 3.008 2.256 0.828 + 12 2 7 3 30.38 68.54 68.00 67.95 98.09 95.76 0 46215 17694 42311 0.915 0.916 0.915 1.000 1.000 0 1155 40324 0 0 1971 42295 -7110 35061 7234 124 13341 15449 3.018 3.023 2.290 + 12 2 7 4 30.65 68.28 68.00 68.05 98.21 95.56 0 46246 17611 36738 0.794 0.794 0.794 1.000 1.000 0 1003 35027 0 0 1711 36738 -6527 30211 6528 0 11520 13367 3.027 3.041 2.283 + 12 2 7 5 30.92 68.13 68.00 68.02 98.20 95.28 0 46278 17527 33266 0.719 0.719 0.719 1.000 1.000 0 907.4 31718 0 0 1548 33266 -6207 27060 6207 0 10375 12059 3.037 3.057 2.270 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 224 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.48 68.00 68.01 98.31 94.98 0 46463 17035 29552 0.636 0.636 0.636 1.000 1.000 0 802.9 28182 0 0 1370 29552 -5870 23682 5870 0 9015 10521 3.094 3.126 2.280 + 12 2 8 1 34.10 68.52 68.00 68.05 98.48 94.74 0 46649 16543 26135 0.560 0.560 0.560 1.000 1.000 0 707.2 24929 0 0 1207 26135 -5460 20675 5460 -0 7784 9127 3.152 3.203 2.300 + 12 2 8 2 35.69 68.62 68.00 68.06 98.61 94.38 0 46834 16052 23000 0.491 0.491 0.491 1.000 1.000 0 619.9 21942 0 0 1058 23000 -5125 17875 5125 0 6671 7865 3.213 3.289 2.313 + 12 2 8 3 37.28 68.68 68.00 68.08 98.75 94.01 0 47020 15561 20419 0.434 0.434 0.434 1.000 1.000 0 548.2 19484 0 0 935 20419 -4834 15585 4834 0 5751 6823 3.275 3.388 2.331 + 12 2 8 4 38.87 68.74 68.00 68.10 98.88 93.58 0 47205 15070 18193 0.385 0.385 0.385 1.000 1.000 0 486.5 17363 0 0 830 18193 -4587 13607 4587 0 4956 5923 3.339 3.503 2.351 + 12 2 8 5 40.46 68.80 68.00 68.12 99.02 93.09 0 47391 14579 16177 0.341 0.341 0.341 1.000 1.000 0 430.9 15441 0 0 735 16177 -4356 11821 4356 0 4238 5110 3.405 3.643 2.377 + 12 2 9 0 41.12 68.85 68.00 68.13 99.09 92.74 0 47468 14375 14994 0.316 0.316 0.316 1.000 1.000 0 398.7 14313 0 0 680 14994 -4210 10784 4210 0 3844 4661 3.433 3.723 2.383 + 12 2 9 1 41.78 68.85 68.00 68.14 99.15 92.47 0 47545 14171 13511 0.284 0.284 0.298 0.953 0.988 0 358.7 12899 0 0 612 13511 -3916 9595 3916 0 3276 4025 3.461 3.937 2.468 + 12 2 9 2 42.44 68.76 68.00 68.15 99.21 92.42 0 47622 13968 12007 0.252 0.252 0.293 0.860 0.965 0 318.3 11464 0 0 543 12007 -3510 8497 3510 0 2933 3613 3.490 3.908 2.444 + 12 2 9 3 43.10 68.60 68.00 68.14 99.25 92.34 0 47699 13764 10807 0.227 0.227 0.289 0.785 0.946 0 286.0 10319 0 0 488 10807 -3196 7611 3196 0 2646 3270 3.519 3.900 2.429 + 12 2 9 4 43.76 68.43 68.00 68.11 99.27 92.24 0 47776 13561 9638 0.202 0.202 0.284 0.711 0.928 0 254.7 9203 0 0 434 9638 -2891 6747 2891 0 2364 2935 3.549 3.894 2.411 + 12 2 9 5 44.42 68.16 68.00 68.08 99.29 92.12 0 47853 13357 8541 0.178 0.178 0.279 0.639 0.910 0 225.3 8156 0 0 384 8541 -2600 5941 2600 -0 2095 2616 3.579 3.893 2.396 + 12 2 10 0 44.93 67.91 68.00 68.03 99.28 91.99 0 47912 13200 8177 0.171 0.171 0.276 0.620 0.905 0 215.5 7810 0 0 368 8177 -2526 5652 2526 -0 1986 2490 3.602 3.932 2.401 + 12 2 10 1 45.44 67.79 68.00 67.99 99.28 91.86 0 47972 13043 7318 0.153 0.153 0.272 0.561 0.890 0 192.6 6989 0 0 329 7318 -2294 5024 2294 0 1778 2243 3.626 3.931 2.385 + 12 2 10 2 45.95 67.49 68.00 67.97 99.29 91.77 0 48031 12885 6527 0.136 0.136 0.268 0.507 0.877 0 171.5 6234 0 0 293 6527 -2070 4458 2070 -0 1584 2013 3.650 3.936 2.375 + 12 2 10 3 46.46 67.34 68.00 67.91 99.28 91.62 0 48091 12728 5771 0.120 0.120 0.265 0.453 0.863 0 151.5 5512 0 0 258 5771 -1860 3911 1860 0 1397 1792 3.674 3.945 2.362 + 12 2 10 4 46.97 67.09 68.00 67.88 99.28 91.50 0 48150 12571 5103 0.106 0.106 0.261 0.406 0.851 0 133.8 4874 0 0 228 5103 -1666 3436 1666 0 1230 1595 3.699 3.962 2.356 + 12 2 10 5 47.48 66.92 68.00 67.84 99.24 91.41 0 48154 12562 4414 .0917 .0917 0.261 0.351 0.838 0 115.7 4216 0 0 197 4414 -1452 2962 1452 0 1080 1414 3.700 3.903 2.318 + 12 2 11 0 48.20 66.81 68.00 67.80 99.21 91.36 0 48154 12562 4792 .0995 .0995 0.261 0.381 0.845 0 125.6 4577 0 0 214 4792 -1583 3208 1583 0 1162 1513 3.700 3.938 2.331 + 12 2 11 1 48.92 66.85 68.00 67.78 99.18 91.32 0 48154 12562 4267 .0886 .0886 0.261 0.340 0.835 0 111.9 4076 0 0 191 4267 -1416 2851 1416 -0 1048 1375 3.700 3.889 2.301 + 12 2 11 2 49.64 66.81 68.00 67.78 99.18 91.32 0 48154 12562 3720 .0772 .0772 0.261 0.296 0.824 0 97.5 3553 0 0 166 3720 -1234 2486 1234 -0 926 1229 3.700 3.839 2.276 + 12 2 11 3 50.36 66.73 68.00 67.77 99.17 91.30 0 48154 12562 3215 .0668 .0668 0.261 0.256 0.814 0 84.3 3072 0 0 144 3215 -1068 2147 1068 -0 810 1090 3.700 3.792 2.251 + 12 2 11 4 51.08 66.67 68.00 67.75 99.16 91.26 0 48154 12562 2738 .0569 .0569 0.261 0.218 0.804 0 71.8 2615 0 0 122 2738 -912 1825 912 0 698 957 3.700 3.748 2.225 + 12 2 11 5 51.80 66.59 68.00 67.74 99.14 91.24 0 48154 12562 2259 .0469 .0469 0.261 0.180 0.795 0 59.2 2158 0 0 101 2259 -755 1505 755 0 583 820 3.700 3.703 2.200 + 12 2 12 0 52.70 66.48 68.00 67.72 99.12 91.21 0 48154 12562 1404 .0292 .0292 0.261 0.112 0.778 0 36.8 1341 0 0 63 1404 -470 934 470 0 370 433 3.700 3.624 2.157 + 12 2 12 1 53.60 66.29 68.00 67.69 99.10 91.17 0 48154 12562 870 .0181 .0181 0.261 .0692 0.767 0 22.8 831 0 0 39 870 -292 577 292 0 232 271 3.700 3.574 2.128 + 12 2 12 2 54.50 66.13 68.00 67.66 99.06 91.10 0 48154 12562 353 .0073 .0073 0.261 .0281 0.757 0 9.3 337 0 0 16 353 -119 234 119 0 96 111 3.700 3.527 2.097 + 12 2 12 3 55.40 65.95 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.86 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.81 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.78 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.73 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.68 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.66 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.61 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.57 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.53 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.48 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.44 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.39 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.34 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.30 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.24 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.20 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.14 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 65.08 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 65.01 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 64.99 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.94 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.88 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.82 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.77 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.66 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.59 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 225 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.54 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.40 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.33 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.27 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.21 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 64.04 68.00 67.23 98.63 90.26 0 48154 12562 176 .0037 .0037 0.261 .0140 0.754 0 4.6 168 0 0 8 176 -64 112 64 -0 48 56 3.700 3.510 2.013 + 12 2 18 0 53.00 63.96 68.00 67.17 98.57 90.22 0 48154 12562 1573 .0327 .0327 0.261 0.125 0.781 0 41.2 1502 0 0 70 1573 -571 1001 571 -0 413 483 3.700 3.640 2.073 + 12 2 18 1 52.94 64.10 68.00 67.15 98.55 90.18 0 48154 12562 1724 .0358 .0358 0.261 0.137 0.784 0 45.2 1646 0 0 77 1724 -628 1096 628 0 451 528 3.700 3.654 2.076 + 12 2 18 2 52.88 63.97 68.00 67.17 98.58 90.23 0 48154 12562 2091 .0434 .0434 0.261 0.166 0.792 0 54.8 1997 0 0 94 2091 -759 1332 759 0 542 635 3.700 3.688 2.097 + 12 2 18 3 52.82 63.95 68.00 67.15 98.55 90.19 0 48154 12562 2289 .0475 .0475 0.261 0.182 0.796 0 60.0 2186 0 0 102 2289 -833 1455 833 0 590 692 3.700 3.706 2.102 + 12 2 18 4 52.76 63.96 68.00 67.14 98.55 90.17 0 48154 12562 2507 .0521 .0521 0.261 0.200 0.800 0 65.7 2395 0 0 112 2507 -914 1593 914 0 643 755 3.700 3.726 2.111 + 12 2 18 5 52.70 63.83 68.00 67.14 98.55 90.17 0 48154 12562 2850 .0592 .0592 0.261 0.227 0.807 0 74.7 2723 0 0 127 2850 -1039 1811 1039 -0 725 852 3.700 3.758 2.126 + 12 2 19 0 52.19 63.84 68.00 67.12 98.52 90.13 0 48154 12562 2833 .0588 .0588 0.261 0.226 0.806 0 74.3 2706 0 0 127 2833 -1036 1797 1036 0 720 847 3.700 3.756 2.121 + 12 2 19 1 51.68 63.73 68.00 67.12 98.52 90.13 0 48154 12562 3183 .0661 .0661 0.261 0.253 0.813 0 83.4 3040 0 0 142 3183 -1164 2018 1164 0 802 945 3.700 3.789 2.136 + 12 2 19 2 51.17 63.74 68.00 67.10 98.50 90.09 0 48154 12562 3437 .0714 .0714 0.261 0.274 0.818 0 90.1 3283 0 0 154 3437 -1261 2176 1261 0 861 1015 3.700 3.812 2.144 + 12 2 19 3 50.66 63.66 68.00 67.10 98.50 90.09 0 48154 12562 3795 .0788 .0788 0.261 0.302 0.826 0 99.5 3625 0 0 170 3795 -1392 2402 1392 0 943 1112 3.700 3.846 2.160 + 12 2 19 4 50.15 63.69 68.00 67.08 98.49 90.07 0 48154 12562 4037 .0838 .0838 0.261 0.321 0.830 0 105.8 3857 0 0 181 4037 -1484 2553 1484 0 997 1178 3.700 3.868 2.168 + 12 2 19 5 49.64 63.61 68.00 67.09 98.49 90.07 0 48154 12562 4388 .0911 .0911 0.261 0.349 0.837 0 115.0 4192 0 0 196 4388 -1613 2775 1613 0 1075 1271 3.700 3.901 2.184 + 12 2 20 0 49.13 63.61 68.00 67.07 98.48 90.05 0 48154 12562 4907 0.102 0.102 0.261 0.391 0.848 0 128.6 4687 0 0 219 4907 -1806 3101 1806 0 1187 1543 3.700 3.949 2.205 + 12 2 20 1 48.62 63.69 68.00 67.07 98.48 90.05 0 48154 12562 5263 0.109 0.109 0.261 0.419 0.855 0 138.0 5028 0 0 235 5263 -1938 3326 1938 0 1263 1635 3.700 3.982 2.220 + 12 2 20 2 48.11 63.77 68.00 67.09 98.49 90.07 0 48154 12562 5608 0.116 0.116 0.261 0.446 0.862 0 147.0 5357 0 0 251 5608 -2061 3547 2061 0 1335 1722 3.700 4.014 2.237 + 12 2 20 3 47.60 63.88 68.00 67.10 98.50 90.10 0 48154 12562 5863 0.122 0.122 0.261 0.467 0.867 0 153.7 5600 0 0 262 5863 -2150 3712 2150 -0 1387 1786 3.700 4.037 2.251 + 12 2 20 4 47.09 63.98 68.00 67.12 98.52 90.13 0 48154 12562 6172 0.128 0.128 0.261 0.491 0.873 0 161.8 5896 0 0 276 6172 -2258 3914 2258 0 1450 1863 3.700 4.066 2.268 + 12 2 20 5 46.58 64.14 68.00 67.14 98.51 90.22 0 48105 12691 6456 0.134 0.134 0.264 0.509 0.877 0 169.4 6167 0 0 289 6456 -2341 4116 2341 0 1532 1958 3.680 4.025 2.260 + 12 2 21 0 46.10 64.22 68.00 67.18 98.51 90.34 0 48049 12839 7088 0.148 0.148 0.267 0.552 0.888 0 186.2 6770 0 0 318 7088 -2541 4547 2541 0 1689 2144 3.657 4.007 2.265 + 12 2 21 1 45.62 64.34 68.00 67.20 98.50 90.43 0 47993 12987 7389 0.154 0.154 0.271 0.569 0.892 0 194.4 7057 0 0 332 7389 -2624 4765 2624 0 1781 2249 3.634 3.963 2.256 + 12 2 21 2 45.14 64.43 68.00 67.23 98.49 90.53 0 47937 13135 7673 0.160 0.160 0.274 0.584 0.896 0 202.1 7328 0 0 345 7673 -2696 4977 2696 0 1870 2351 3.612 3.919 2.247 + 12 2 21 3 44.66 64.51 68.00 67.25 98.48 90.63 0 47881 13283 7968 0.166 0.166 0.277 0.600 0.900 0 210.1 7609 0 0 358 7968 -2771 5197 2771 0 1962 2457 3.590 3.878 2.239 + 12 2 21 4 44.18 64.60 68.00 67.27 98.46 90.72 0 47825 13431 8258 0.173 0.173 0.281 0.615 0.904 0 218.0 7886 0 0 372 8258 -2845 5413 2845 0 2054 2562 3.568 3.839 2.231 + 12 2 21 5 43.70 64.69 68.00 67.29 98.44 90.80 0 47769 13579 8535 0.179 0.179 0.284 0.629 0.907 0 225.6 8151 0 0 385 8535 -2912 5623 2912 0 2144 2666 3.546 3.801 2.223 + 12 2 22 0 43.28 64.77 68.00 67.31 98.43 90.88 0 47720 13709 9489 0.199 0.199 0.287 0.692 0.923 0 251.0 9060 0 0 428 9489 -3212 6277 3212 -0 2370 2935 3.527 3.823 2.243 + 12 2 22 1 42.86 64.96 68.00 67.33 98.42 90.95 0 47671 13838 9782 0.205 0.205 0.290 0.707 0.927 0 259.0 9340 0 0 442 9782 -3282 6500 3282 0 2461 3040 3.509 3.795 2.239 + 12 2 22 2 42.44 65.08 68.00 67.37 98.43 91.06 0 47622 13968 10041 0.211 0.211 0.293 0.719 0.930 0 266.2 9587 0 0 454 10041 -3331 6711 3331 0 2546 3137 3.490 3.766 2.237 + 12 2 22 3 42.02 65.17 68.00 67.40 98.42 91.15 0 47573 14097 10320 0.217 0.217 0.296 0.732 0.933 0 273.9 9853 0 0 467 10320 -3390 6930 3390 0 2635 3239 3.472 3.739 2.234 + 12 2 22 4 41.60 65.27 68.00 67.42 98.41 91.22 0 47524 14227 10589 0.223 0.223 0.299 0.744 0.936 0 281.3 10109 0 0 480 10589 -3448 7141 3448 -0 2723 3339 3.454 3.713 2.230 + 12 2 22 5 41.18 65.37 68.00 67.44 98.40 91.30 0 47475 14357 10824 0.228 0.228 0.302 0.754 0.938 0 287.8 10333 0 0 491 10824 -3492 7331 3492 -0 2804 3432 3.436 3.685 2.225 + 12 2 23 0 41.27 65.46 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 63.99 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.65 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.44 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.31 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.15 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.06 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 63.00 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.82 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.73 66.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.56 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.48 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 226 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.43 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.30 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.25 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.15 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.15 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 62.04 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.97 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.92 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.91 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.83 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.73 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.63 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.53 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.43 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.33 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.23 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.12 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 61.02 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.91 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.80 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.69 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.58 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.47 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.35 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.24 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.12 65.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 60.00 65.00 64.15 94.18 88.42 0 46047 18140 1467 .0319 .0319 0.394 .0809 0.770 0 40.2 1399 0 0 69 1467 -439 1030 437 -2 568 773 2.968 2.462 1.617 + 12 3 5 3 28.64 60.12 65.00 64.10 94.11 88.38 0 46012 18233 3579 .0778 .0778 0.396 0.196 0.799 0 98.2 3412 0 0 168 3579 -1070 2509 1070 0 1340 1644 2.958 2.545 1.664 + 12 3 5 4 28.34 60.37 65.00 64.12 94.10 88.41 0 45977 18326 4148 .0902 .0902 0.399 0.226 0.807 0 113.9 3953 0 0 194 4148 -1233 2915 1233 -0 1544 1875 2.948 2.560 1.677 + 12 3 5 5 28.04 60.41 65.00 64.16 94.12 88.49 0 45942 18419 4662 0.101 0.101 0.401 0.253 0.813 0 128.1 4444 0 0 219 4662 -1373 3289 1373 0 1727 2082 2.938 2.573 1.690 + 12 3 6 0 28.07 60.44 65.95 64.39 98.40 95.75 0 45945 18409 82194 .0469 1.789 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9712 41128 11026 1314 0 52290 2.939 2.204 0.789 + 12 3 6 1 28.10 64.60 66.50 65.21 95.17 92.62 0 45949 18400 43496 0.946 0.947 0.946 1.000 1.000 0 1195 41445 0 0 2038 43483 -8657 34112 9372 715 14085 16260 2.940 2.942 2.116 + 12 3 6 2 28.13 64.32 66.50 66.10 96.06 91.70 0 45952 18391 23211 0.505 0.505 0.505 1.000 1.000 0 637.6 22123 0 0 1088 23211 -5644 17566 5644 0 7397 8621 2.941 2.991 2.070 + 12 3 6 3 28.16 62.92 66.50 66.09 96.06 91.78 0 45956 18382 23495 0.511 0.511 0.511 1.000 1.000 0 645.4 22394 0 0 1101 23495 -5662 17834 5662 0 7488 8726 2.942 2.991 2.076 + 12 3 6 4 28.19 63.18 66.50 65.92 95.89 91.65 0 45959 18372 24166 0.526 0.526 0.526 1.000 1.000 0 663.8 23033 0 0 1132 24166 -5917 18249 5917 0 7707 8976 2.943 2.989 2.064 + 12 3 6 5 28.22 63.48 66.50 65.94 95.92 91.44 0 45963 18363 22659 0.493 0.493 0.493 1.000 1.000 0 622.3 21597 0 0 1062 22659 -5691 16968 5691 0 7208 8406 2.944 2.996 2.052 + 12 3 7 0 28.52 63.75 67.12 66.09 100.10 97.52 0 45998 18270 105k .0468 2.276 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9351 41951 10203 852 0 52290 2.954 2.215 0.804 + 12 3 7 1 28.82 65.45 67.58 66.66 100.67 98.06 0 46033 18177 77115 .0468 1.675 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9449 42062 10092 643 0 52290 2.964 2.223 0.807 + 12 3 7 2 29.12 65.91 67.94 67.27 101.28 98.72 0 46068 18084 55879 .0468 1.213 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9189 42472 9681 493 0 52290 2.974 2.231 0.814 + 12 3 7 3 29.42 66.06 68.00 67.63 97.70 95.06 0 46103 17991 39536 0.858 0.858 0.858 1.000 1.000 0 1083 37689 0 0 1847 39536 -7445 32020 7516 71 12593 14576 2.984 2.993 2.217 + 12 3 7 4 29.72 65.83 68.00 67.70 97.79 94.85 0 46138 17899 35228 0.764 0.764 0.764 1.000 1.000 0 963.9 33584 0 0 1644 35228 -6934 28294 6934 0 11155 12936 2.995 3.011 2.211 + 12 3 7 5 30.02 65.85 68.00 67.66 97.77 94.52 0 46173 17806 31692 0.686 0.686 0.686 1.000 1.000 0 866.5 30214 0 0 1478 31692 -6568 25124 6568 0 9976 11591 3.005 3.029 2.193 + 12 3 8 0 31.40 66.06 68.00 67.65 97.87 94.19 0 46334 17379 28154 0.608 0.608 0.608 1.000 1.000 0 767.1 26846 0 0 1309 28154 -6192 21963 6192 -0 8692 10137 3.054 3.088 2.196 + 12 3 8 1 32.78 66.14 68.00 67.67 97.99 93.84 0 46495 16952 24766 0.533 0.533 0.533 1.000 1.000 0 672.4 23618 0 0 1147 24765 -5771 18994 5771 0 7487 8771 3.103 3.155 2.200 + 12 3 8 2 34.16 66.25 68.00 67.66 98.09 93.43 0 46656 16525 21922 0.470 0.470 0.470 1.000 1.000 0 593.1 20910 0 0 1012 21922 -5433 16489 5433 -0 6478 7627 3.154 3.228 2.201 + 12 3 8 3 35.54 66.30 68.00 67.66 98.20 92.98 0 46817 16098 19448 0.415 0.415 0.415 1.000 1.000 0 524.4 18553 0 0 895 19447 -5126 14322 5126 0 5605 6636 3.207 3.310 2.204 + 12 3 8 4 36.92 66.40 68.00 67.66 98.30 92.49 0 46978 15672 17363 0.370 0.370 0.370 1.000 1.000 0 466.6 16567 0 0 796 17363 -4870 12492 4870 -0 4866 5798 3.261 3.405 2.206 + 12 3 8 5 38.30 66.47 68.00 67.66 98.40 91.98 0 47139 15246 15575 0.330 0.330 0.330 1.000 1.000 0 416.9 14857 0 0 711 15569 -4638 10930 4638 -0 4227 5075 3.316 3.515 2.213 + 12 3 9 0 38.84 66.53 68.00 67.67 98.45 91.85 0 47202 15079 14451 0.306 0.306 0.319 0.958 0.990 0 386.5 13792 0 0 659 14451 -4375 10076 4375 0 3736 4532 3.338 3.692 2.292 + 12 3 9 1 39.38 66.54 68.00 67.68 98.50 91.83 0 47265 14912 12921 0.273 0.273 0.316 0.867 0.967 0 345.1 12333 0 0 589 12921 -3930 8991 3930 0 3382 4107 3.360 3.646 2.264 + 12 3 9 2 39.92 66.37 68.00 67.68 98.55 91.80 0 47328 14745 11557 0.244 0.244 0.312 0.784 0.946 0 308.2 11031 0 0 526 11557 -3538 8019 3538 0 3056 3718 3.382 3.610 2.239 + 12 3 9 3 40.46 66.24 68.00 67.65 98.56 91.71 0 47391 14579 10303 0.217 0.217 0.308 0.707 0.927 0 274.4 9834 0 0 468 10303 -3189 7114 3189 0 2748 3353 3.405 3.579 2.212 + 12 3 9 4 41.00 66.07 68.00 67.63 98.58 91.63 0 47454 14412 9231 0.195 0.195 0.304 0.641 0.910 0 245.6 8812 0 0 419 9231 -2889 6342 2889 0 2476 3032 3.428 3.559 2.191 + 12 3 9 5 41.54 65.85 68.00 67.60 98.59 91.53 0 47517 14245 8212 0.173 0.173 0.300 0.576 0.894 0 218.2 7839 0 0 372 8212 -2601 5611 2601 0 2214 2723 3.451 3.541 2.170 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 227 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.80 68.00 67.56 98.61 91.40 0 47608 14005 8707 0.183 0.183 0.294 0.622 0.905 0 230.9 8313 0 0 394 8707 -2802 5905 2802 -0 2274 2804 3.485 3.656 2.213 + 12 3 10 1 43.10 65.84 68.00 67.54 98.65 91.29 0 47699 13764 7935 0.166 0.166 0.289 0.576 0.894 0 210.0 7576 0 0 358 7935 -2587 5347 2587 -0 2056 2551 3.519 3.685 2.215 + 12 3 10 2 43.88 65.85 68.00 67.55 98.71 91.23 0 47790 13524 7124 0.149 0.149 0.283 0.527 0.882 0 188.2 6803 0 0 321 7124 -2346 4778 2346 -0 1832 2289 3.554 3.713 2.219 + 12 3 10 3 44.66 65.77 68.00 67.54 98.77 91.14 0 47881 13283 6378 0.133 0.133 0.277 0.480 0.870 0 168.2 6092 0 0 287 6378 -2124 4254 2124 0 1625 2048 3.590 3.749 2.225 + 12 3 10 4 45.44 65.76 68.00 67.52 98.81 91.02 0 47972 13043 5673 0.118 0.118 0.272 0.435 0.859 0 149.3 5419 0 0 255 5673 -1916 3757 1916 0 1429 1820 3.626 3.792 2.232 + 12 3 10 5 46.22 65.67 68.00 67.52 98.86 90.92 0 48063 12802 4952 0.103 0.103 0.266 0.387 0.847 0 130.1 4731 0 0 222 4952 -1694 3259 1694 0 1233 1591 3.663 3.837 2.240 + 12 3 11 0 46.58 65.69 68.00 67.50 98.87 90.85 0 48105 12691 4871 0.101 0.101 0.264 0.384 0.846 0 127.8 4653 0 0 218 4871 -1679 3193 1679 0 1199 1553 3.680 3.882 2.253 + 12 3 11 1 46.94 65.80 68.00 67.49 98.89 90.80 0 48147 12580 4415 .0917 .0917 0.261 0.351 0.838 0 115.8 4217 0 0 197 4415 -1530 2885 1530 0 1083 1417 3.697 3.894 2.253 + 12 3 11 2 47.30 65.86 68.00 67.51 98.92 90.82 0 48154 12562 3958 .0822 .0822 0.261 0.315 0.829 0 103.7 3781 0 0 177 3958 -1369 2588 1369 -0 979 1293 3.700 3.861 2.238 + 12 3 11 3 47.66 65.90 68.00 67.52 98.93 90.83 0 48154 12562 3527 .0732 .0732 0.261 0.281 0.820 0 92.5 3369 0 0 158 3527 -1219 2308 1219 0 882 1176 3.700 3.821 2.220 + 12 3 11 4 48.02 65.94 68.00 67.53 98.94 90.85 0 48154 12562 3136 .0651 .0651 0.261 0.250 0.812 0 82.2 2996 0 0 140 3136 -1083 2053 1083 0 792 1068 3.700 3.784 2.204 + 12 3 11 5 48.38 65.91 68.00 67.54 98.94 90.86 0 48154 12562 2751 .0571 .0571 0.261 0.219 0.805 0 72.1 2628 0 0 123 2751 -949 1802 949 0 701 961 3.700 3.749 2.187 + 12 3 12 0 48.86 65.89 68.00 67.53 98.94 90.85 0 48154 12562 1917 .0398 .0398 0.261 0.153 0.788 0 50.2 1831 0 0 86 1917 -662 1255 662 0 499 721 3.700 3.671 2.148 + 12 3 12 1 49.34 65.71 68.00 67.53 98.94 90.85 0 48154 12562 1493 .0310 .0310 0.261 0.119 0.780 0 39.1 1426 0 0 67 1493 -515 978 515 0 393 596 3.700 3.632 2.128 + 12 3 12 2 49.82 65.60 68.00 67.50 98.91 90.80 0 48154 12562 1068 .0222 .0222 0.261 .0850 0.771 0 28.0 1020 0 0 48 1068 -370 698 370 -0 284 468 3.700 3.593 2.104 + 12 3 12 3 50.30 65.48 68.00 67.48 98.89 90.77 0 48154 12562 689 .0143 .0143 0.261 .0549 0.764 0 18.1 658 0 0 31 689 -239 450 239 0 185 352 3.700 3.558 2.083 + 12 3 12 4 50.78 65.37 68.00 67.46 98.87 90.74 0 48154 12562 339 .0070 .0070 0.261 .0270 0.757 0 8.9 324 0 0 15 339 -118 221 118 -0 92 244 3.700 3.525 2.064 + 12 3 12 5 51.26 65.28 68.00 67.44 98.85 90.71 0 48154 12562 24 .0005 .0005 0.261 .0019 0.750 0 0.6 23 0 0 1 24 -8 16 8 -0 7 144 3.700 3.496 2.047 + 12 3 13 0 51.59 65.23 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.25 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.25 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.28 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.27 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.31 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.40 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.47 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.54 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.33 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.52 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.48 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.58 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.63 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.64 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.62 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.68 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.52 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.60 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.60 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.62 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.66 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.67 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.69 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.72 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.54 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.74 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.35 68.00 67.53 98.93 90.83 0 48154 12562 1536 .0319 .0319 0.261 0.122 0.781 0 40.3 1467 0 0 69 1536 -532 1005 531 -1 403 472 3.700 3.636 2.128 + 12 3 17 4 49.49 65.89 68.00 67.45 98.85 90.72 0 48154 12562 3066 .0637 .0637 0.261 0.244 0.811 0 80.4 2929 0 0 137 3066 -1069 1996 1069 -0 775 912 3.700 3.778 2.188 + 12 3 17 5 49.10 65.98 68.00 67.54 98.94 90.86 0 48154 12562 3436 .0714 .0714 0.261 0.274 0.818 0 90.1 3282 0 0 154 3436 -1185 2251 1185 0 861 1015 3.700 3.812 2.219 + 12 3 18 0 48.05 66.04 68.00 67.56 98.96 90.91 0 48154 12562 3423 .0711 .0711 0.261 0.273 0.818 0 89.7 3270 0 0 153 3423 -1176 2247 1176 -0 858 1148 3.700 3.811 2.222 + 12 3 18 1 47.00 66.10 68.00 67.57 98.98 90.93 0 48154 12562 4008 .0832 .0832 0.261 0.319 0.830 0 105.1 3829 0 0 179 4008 -1375 2634 1375 0 991 1306 3.700 3.865 2.251 + 12 3 18 2 45.95 66.25 68.00 67.59 98.91 91.08 0 48031 12885 4565 .0950 .0950 0.268 0.354 0.839 0 120.0 4360 0 0 205 4565 -1537 3028 1537 0 1158 1499 3.650 3.765 2.222 + 12 3 18 3 44.90 66.41 68.00 67.62 98.86 91.25 0 47909 13209 5099 0.106 0.106 0.276 0.386 0.846 0 134.3 4869 0 0 229 5099 -1683 3415 1683 0 1325 1691 3.601 3.675 2.197 + 12 3 18 4 43.85 66.62 68.00 67.65 98.82 91.42 0 47786 13533 5664 0.119 0.119 0.283 0.419 0.855 0 149.6 5408 0 0 255 5664 -1833 3831 1833 0 1504 1896 3.553 3.596 2.178 + 12 3 18 5 42.80 66.85 68.00 67.69 98.78 91.59 0 47664 13857 6221 0.131 0.131 0.291 0.449 0.862 0 164.8 5940 0 0 281 6221 -1972 4250 1972 0 1685 2103 3.506 3.525 2.161 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 228 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.95 68.00 67.73 98.81 91.67 0 47646 13903 6283 0.132 0.132 0.292 0.452 0.863 0 166.5 5999 0 0 284 6283 -1976 4307 1976 0 1707 2127 3.499 3.514 2.163 + 12 3 19 1 42.50 66.95 68.00 67.76 98.82 91.72 0 47629 13949 6539 0.137 0.137 0.293 0.469 0.867 0 173.3 6243 0 0 296 6539 -2045 4494 2045 -0 1775 2207 3.493 3.518 2.171 + 12 3 19 2 42.35 67.06 68.00 67.76 98.81 91.74 0 47611 13996 6766 0.142 0.142 0.294 0.483 0.871 0 179.4 6460 0 0 306 6766 -2109 4657 2109 0 1836 2278 3.486 3.519 2.174 + 12 3 19 3 42.20 67.02 68.00 67.78 98.82 91.79 0 47594 14042 7036 0.148 0.148 0.295 0.501 0.875 0 186.6 6718 0 0 318 7036 -2182 4854 2182 -0 1907 2361 3.480 3.524 2.182 + 12 3 19 4 42.05 67.06 68.00 67.78 98.81 91.81 0 47576 14088 7225 0.152 0.152 0.296 0.513 0.878 0 191.7 6898 0 0 327 7225 -2236 4989 2236 0 1958 2422 3.473 3.522 2.183 + 12 3 19 5 41.90 67.00 68.00 67.79 98.81 91.84 0 47559 14134 7477 0.157 0.157 0.297 0.529 0.882 0 198.5 7139 0 0 339 7477 -2305 5172 2305 0 2025 2500 3.467 3.525 2.188 + 12 3 20 0 41.60 67.05 68.00 67.78 98.78 91.85 0 47524 14227 7800 0.164 0.164 0.299 0.548 0.887 0 207.2 7447 0 0 353 7800 -2397 5403 2397 0 2117 2607 3.454 3.518 2.187 + 12 3 20 1 41.30 67.00 68.00 67.79 98.76 91.90 0 47489 14320 8108 0.171 0.171 0.302 0.566 0.892 0 215.5 7740 0 0 368 8108 -2477 5631 2477 0 2205 2709 3.441 3.511 2.189 + 12 3 20 2 41.00 66.95 68.00 67.79 98.74 91.92 0 47454 14412 8369 0.176 0.176 0.304 0.581 0.895 0 222.6 7989 0 0 380 8369 -2547 5822 2547 0 2283 2799 3.428 3.500 2.187 + 12 3 20 3 40.70 67.00 68.00 67.78 98.71 91.94 0 47419 14505 8529 0.180 0.180 0.306 0.588 0.897 0 227.1 8142 0 0 387 8529 -2587 5942 2587 0 2337 2861 3.415 3.483 2.181 + 12 3 20 4 40.40 66.90 68.00 67.79 98.70 91.98 0 47384 14597 8823 0.186 0.186 0.308 0.604 0.901 0 235.1 8422 0 0 401 8823 -2661 6162 2661 0 2423 2961 3.402 3.475 2.182 + 12 3 20 5 40.10 66.91 68.00 67.78 98.66 91.99 0 47349 14690 8966 0.189 0.189 0.310 0.610 0.903 0 239.0 8558 0 0 408 8966 -2698 6267 2698 0 2475 3019 3.390 3.458 2.174 + 12 3 21 0 40.43 66.86 68.00 67.78 98.69 91.96 0 47387 14588 9406 0.198 0.198 0.308 0.645 0.911 0 250.6 8979 0 0 427 9406 -2842 6564 2842 0 2553 3117 3.404 3.517 2.202 + 12 3 21 1 40.76 66.83 68.00 67.78 98.70 91.92 0 47426 14486 9498 0.200 0.200 0.305 0.656 0.914 0 252.8 9067 0 0 431 9498 -2886 6612 2886 0 2551 3119 3.418 3.554 2.217 + 12 3 21 2 41.09 66.77 68.00 67.77 98.73 91.89 0 47464 14384 9570 0.202 0.202 0.303 0.665 0.916 0 254.5 9136 0 0 434 9570 -2922 6648 2922 0 2545 3115 3.432 3.590 2.232 + 12 3 21 3 41.42 66.70 68.00 67.76 98.74 91.85 0 47503 14282 9624 0.203 0.203 0.301 0.674 0.918 0 255.7 9187 0 0 436 9624 -2955 6669 2955 0 2533 3106 3.446 3.627 2.246 + 12 3 21 4 41.75 66.66 68.00 67.75 98.76 91.80 0 47541 14181 9662 0.203 0.203 0.298 0.681 0.920 0 256.6 9224 0 0 438 9662 -2986 6676 2986 -0 2518 3092 3.460 3.664 2.259 + 12 3 21 5 42.08 66.56 68.00 67.74 98.77 91.76 0 47580 14079 9679 0.203 0.203 0.296 0.688 0.922 0 256.8 9241 0 0 438 9679 -3008 6671 3008 0 2498 3072 3.474 3.700 2.272 + 12 3 22 0 42.05 66.64 68.00 67.72 98.75 91.74 0 47576 14088 10426 0.219 0.219 0.296 0.740 0.935 0 276.6 9954 0 0 472 10426 -3247 7179 3247 0 2654 3263 3.473 3.750 2.296 + 12 3 22 1 42.02 66.77 68.00 67.74 98.76 91.76 0 47573 14097 10576 0.222 0.222 0.296 0.750 0.938 0 280.6 10097 0 0 479 10576 -3287 7289 3287 -0 2687 3303 3.472 3.757 2.302 + 12 3 22 2 41.99 66.81 68.00 67.76 98.78 91.80 0 47569 14107 10703 0.225 0.225 0.297 0.759 0.940 0 284.0 10219 0 0 485 10703 -3313 7390 3313 0 2716 3337 3.471 3.763 2.309 + 12 3 22 3 41.96 66.82 68.00 67.77 98.79 91.82 0 47566 14116 10837 0.228 0.228 0.297 0.768 0.942 0 287.6 10346 0 0 491 10837 -3348 7488 3348 0 2745 3372 3.469 3.769 2.314 + 12 3 22 4 41.93 66.84 68.00 67.77 98.79 91.83 0 47562 14125 10971 0.231 0.231 0.297 0.777 0.944 0 291.2 10474 0 0 497 10971 -3387 7585 3387 0 2774 3408 3.468 3.775 2.319 + 12 3 22 5 41.90 67.08 68.00 67.78 98.79 91.84 0 47559 14134 10973 0.231 0.231 0.297 0.776 0.944 0 291.3 10476 0 0 497 10973 -3383 7590 3383 0 2777 3411 3.467 3.772 2.318 + 12 3 23 0 41.51 67.18 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.76 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.39 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.42 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.31 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.23 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.14 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 64.99 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.93 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.83 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.73 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.59 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.55 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.44 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.42 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.32 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.19 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.07 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.95 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.84 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.73 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.61 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.49 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.37 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 229 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.25 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.13 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 63.01 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.88 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.76 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.63 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.50 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.37 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.25 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.12 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.97 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.83 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.70 65.00 64.46 94.57 88.91 0 46169 17815 553 .0120 .0120 0.386 .0310 0.758 0 15.1 527 0 0 26 553 -158 395 158 -1 215 377 3.004 2.454 1.642 + 12 4 5 1 29.96 61.65 65.00 64.40 94.51 88.85 0 46166 17824 3065 .0664 .0664 0.386 0.172 0.793 0 83.8 2922 0 0 143 3065 -880 2185 880 0 1138 1418 3.003 2.567 1.705 + 12 4 5 2 29.93 61.91 65.00 64.39 94.49 88.83 0 46162 17834 3470 .0752 .0752 0.386 0.195 0.799 0 94.9 3308 0 0 162 3470 -998 2472 998 -0 1280 1579 3.002 2.584 1.714 + 12 4 5 3 29.90 61.90 65.00 64.43 94.53 88.89 0 46159 17843 3873 .0839 .0839 0.387 0.217 0.804 0 105.9 3692 0 0 181 3873 -1107 2766 1107 -0 1419 1736 3.001 2.601 1.729 + 12 4 5 4 29.87 61.86 65.00 64.43 94.53 88.89 0 46155 17852 4292 .0930 .0930 0.387 0.240 0.810 0 117.4 4091 0 0 200 4292 -1227 3065 1227 0 1562 1899 3.000 2.619 1.739 + 12 4 5 5 29.84 61.87 65.00 64.42 94.52 88.88 0 46152 17861 4724 0.102 0.102 0.387 0.264 0.816 0 129.2 4504 0 0 220 4724 -1352 3373 1352 -0 1707 2064 2.999 2.638 1.749 + 12 4 6 0 29.72 61.87 65.96 64.58 98.59 96.03 0 46138 17899 81589 .0467 1.768 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9333 41500 10654 1321 0 52290 2.995 2.246 0.796 + 12 4 6 1 29.60 65.85 66.50 65.40 95.48 92.98 0 46124 17936 43140 0.935 0.935 0.935 1.000 1.000 0 1180 41111 0 0 2014 43124 -8263 34161 8964 700 13730 15880 2.991 2.994 2.170 + 12 4 6 2 29.48 65.53 66.50 66.30 96.37 92.13 0 46110 17973 23309 0.506 0.506 0.506 1.000 1.000 0 638.1 22220 0 0 1089 23309 -5428 17881 5428 0 7318 8543 2.987 3.037 2.127 + 12 4 6 3 29.36 64.22 66.50 66.29 96.35 92.22 0 46096 18010 23772 0.516 0.516 0.516 1.000 1.000 0 651.0 22662 0 0 1111 23772 -5471 18301 5471 0 7478 8725 2.982 3.030 2.131 + 12 4 6 4 29.24 64.46 66.50 66.12 96.18 92.10 0 46082 18047 24504 0.532 0.532 0.532 1.000 1.000 0 671.3 23359 0 0 1145 24504 -5721 18784 5721 0 7727 9008 2.978 3.023 2.117 + 12 4 6 5 29.12 64.74 66.50 66.15 96.20 91.89 0 46068 18084 22941 0.498 0.498 0.498 1.000 1.000 0 628.6 21868 0 0 1072 22941 -5496 17445 5496 0 7228 8437 2.974 3.026 2.102 + 12 4 7 0 29.42 64.97 67.10 66.26 100.27 97.75 0 46103 17991 105k .0467 2.284 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9026 42300 9854 828 0 52290 2.984 2.238 0.811 + 12 4 7 1 29.72 66.59 67.54 66.81 100.82 98.28 0 46138 17899 79137 .0467 1.715 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -9127 42413 9741 614 0 52290 2.995 2.246 0.813 + 12 4 7 2 30.02 67.03 67.88 67.39 101.40 98.90 0 46173 17806 59291 .0466 1.284 1.000 0 0.750 1.000 1262 0 50000 0 2154 52154 -8879 42811 9343 464 0 52290 3.005 2.254 0.821 + 12 4 7 3 30.32 67.17 68.00 67.74 97.88 95.55 0 46208 17713 43917 0.950 0.950 0.950 1.000 1.000 0 1200 41861 0 0 2046 43907 -7628 36123 7784 156 13869 16052 3.016 3.018 2.270 + 12 4 7 4 30.62 67.09 68.00 67.86 98.02 95.33 0 46243 17620 37710 0.815 0.815 0.815 1.000 1.000 0 1029 35954 0 0 1756 37710 -6954 30757 6954 0 11835 13728 3.026 3.038 2.263 + 12 4 7 5 30.92 67.05 68.00 67.85 98.03 95.09 0 46278 17527 34339 0.742 0.742 0.742 1.000 1.000 0 936.7 32740 0 0 1598 34339 -6594 27745 6594 -0 10717 12452 3.037 3.055 2.253 + 12 4 8 0 32.18 67.24 68.00 67.84 98.12 94.80 0 46425 17137 30586 0.659 0.659 0.659 1.000 1.000 0 831.7 29167 0 0 1419 30586 -6220 24366 6220 -0 9377 10932 3.082 3.111 2.257 + 12 4 8 1 33.44 67.31 68.00 67.86 98.23 94.54 0 46572 16748 27272 0.586 0.586 0.586 1.000 1.000 0 739.2 26011 0 0 1261 27272 -5828 21444 5828 0 8203 9601 3.128 3.171 2.266 + 12 4 8 2 34.70 67.42 68.00 67.86 98.33 94.19 0 46719 16358 24214 0.518 0.518 0.518 1.000 1.000 0 654.3 23097 0 0 1116 24214 -5482 18732 5482 0 7134 8387 3.175 3.238 2.270 + 12 4 8 3 35.96 67.47 68.00 67.88 98.44 93.92 0 46866 15969 22084 0.471 0.471 0.471 1.000 1.000 0 594.8 21069 0 0 1015 22084 -5229 16854 5229 0 6369 7520 3.223 3.308 2.283 + 12 4 8 4 37.22 67.58 68.00 67.88 98.54 93.64 0 47013 15579 20320 0.432 0.432 0.432 1.000 1.000 0 545.6 19389 0 0 931 20320 -5026 15294 5026 0 5727 6794 3.272 3.386 2.297 + 12 4 8 5 38.48 67.67 68.00 67.90 98.65 93.41 0 47160 15190 18937 0.402 0.402 0.402 1.000 1.000 0 506.9 18072 0 0 865 18937 -4856 14080 4856 0 5208 6209 3.323 3.470 2.319 + 12 4 9 0 39.11 67.77 68.00 67.91 98.72 93.38 0 47233 14996 18590 0.394 0.394 0.394 1.000 1.000 0 496.8 17742 0 0 848 18590 -4804 13786 4804 0 5053 6037 3.349 3.511 2.336 + 12 4 9 1 39.74 67.83 68.00 67.93 98.78 93.22 0 47307 14801 17765 0.376 0.376 0.376 1.000 1.000 0 474.0 16956 0 0 809 17765 -4694 13071 4694 0 4759 5704 3.375 3.563 2.348 + 12 4 9 2 40.37 67.83 68.00 67.94 98.84 93.08 0 47380 14607 17104 0.361 0.361 0.361 1.000 1.000 0 455.7 16326 0 0 777 17103 -4608 12496 4608 0 4514 5428 3.401 3.617 2.361 + 12 4 9 3 41.00 67.81 68.00 67.94 98.89 92.93 0 47454 14412 16493 0.348 0.348 0.348 1.000 1.000 0 438.7 15744 0 0 749 16493 -4535 11958 4535 0 4286 5171 3.428 3.673 2.375 + 12 4 9 4 41.63 67.71 68.00 67.95 98.94 92.80 0 47527 14218 15980 0.336 0.336 0.336 1.000 1.000 0 424.4 15256 0 0 724 15980 -4474 11506 4474 0 4087 4948 3.455 3.732 2.391 + 12 4 9 5 42.26 67.81 68.00 67.93 98.98 92.62 0 47601 14023 15435 0.324 0.324 0.324 1.000 1.000 0 409.3 14737 0 0 698 15435 -4419 11016 4419 0 3881 4716 3.482 3.797 2.406 + 12 4 10 0 42.41 67.89 68.00 67.95 99.01 92.69 0 47618 13977 15529 0.326 0.326 0.326 1.000 1.000 0 411.7 14826 0 0 702 15528 -4416 11112 4416 0 3895 4734 3.489 3.806 2.417 + 12 4 10 1 42.56 67.93 68.00 67.97 99.03 92.61 0 47636 13931 15218 0.319 0.319 0.319 1.000 1.000 0 403.3 14530 0 0 688 15218 -4367 10852 4367 -0 3795 4619 3.495 3.829 2.421 + 12 4 10 2 42.71 67.95 68.00 67.98 99.05 92.53 0 47653 13884 14932 0.313 0.313 0.313 1.000 1.000 0 395.6 14257 0 0 675 14932 -4324 10608 4324 0 3701 4513 3.502 3.852 2.424 + 12 4 10 3 42.86 67.96 68.00 67.98 99.07 92.44 0 47671 13838 14635 0.307 0.307 0.307 1.000 1.000 0 387.6 13974 0 0 661 14635 -4281 10354 4281 0 3605 4403 3.509 3.876 2.427 + 12 4 10 4 43.01 68.16 68.00 67.99 99.09 92.29 0 47688 13792 14220 0.298 0.298 0.298 1.000 1.000 0 376.4 13578 0 0 642 14220 -4226 9994 4226 -0 3476 4255 3.515 3.906 2.427 + 12 4 10 5 43.16 68.26 68.00 68.02 99.14 92.20 0 47706 13746 13871 0.291 0.291 0.291 1.000 1.000 0 367.0 13242 0 0 626 13868 -4159 9709 4159 -0 3364 4127 3.522 3.936 2.433 + 12 4 11 0 43.49 68.21 68.00 68.04 99.18 92.15 0 47744 13644 13309 0.279 0.279 0.286 0.975 0.994 0 351.9 12709 0 0 600 13309 -4018 9291 4018 0 3070 3807 3.537 4.140 2.532 + 12 4 11 1 43.82 68.41 68.00 68.04 99.21 92.12 0 47783 13542 12715 0.266 0.266 0.283 0.939 0.985 0 335.9 12142 0 0 573 12715 -3857 8858 3857 0 2933 3642 3.552 4.140 2.527 + 12 4 11 2 44.15 68.39 68.00 68.08 99.26 92.15 0 47821 13440 12248 0.256 0.256 0.281 0.911 0.978 0 323.3 11696 0 0 552 12248 -3713 8534 3713 -0 2818 3506 3.567 4.150 2.533 + 12 4 11 3 44.48 68.50 68.00 68.08 99.29 92.12 0 47860 13339 11668 0.244 0.244 0.279 0.875 0.969 0 307.7 11143 0 0 525 11668 -3554 8114 3554 -0 2684 3345 3.582 4.152 2.529 + 12 4 11 4 44.81 68.45 68.00 68.10 99.34 92.12 0 47898 13237 11199 0.234 0.234 0.276 0.846 0.962 0 295.1 10695 0 0 504 11199 -3417 7782 3417 -0 2570 3210 3.597 4.162 2.532 + 12 4 11 5 45.14 68.67 68.00 68.09 99.35 92.08 0 47937 13135 10608 0.221 0.221 0.274 0.808 0.952 0 279.3 10131 0 0 477 10608 -3255 7353 3255 0 2434 3047 3.612 4.163 2.527 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 230 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.73 68.00 68.13 99.40 92.12 0 47954 13089 9598 0.200 0.200 0.273 0.733 0.933 0 252.7 9167 0 0 431 9598 -2936 6662 2936 -0 2235 2803 3.619 4.101 2.499 + 12 4 12 1 45.44 68.64 68.00 68.14 99.43 92.13 0 47972 13043 8989 0.187 0.187 0.272 0.689 0.922 0 236.5 8585 0 0 404 8989 -2750 6239 2750 0 2108 2648 3.626 4.072 2.484 + 12 4 12 2 45.59 68.50 68.00 68.13 99.42 92.08 0 47989 12996 8356 0.174 0.174 0.271 0.643 0.911 0 219.8 7981 0 0 375 8356 -2569 5788 2569 -0 1975 2487 3.633 4.041 2.463 + 12 4 12 3 45.74 68.34 68.00 68.11 99.41 92.04 0 48007 12950 7774 0.162 0.162 0.270 0.600 0.900 0 204.4 7425 0 0 349 7774 -2403 5371 2403 0 1850 2335 3.640 4.013 2.443 + 12 4 12 4 45.89 68.46 68.00 68.08 99.40 91.97 0 48024 12904 7248 0.151 0.151 0.269 0.562 0.890 0 190.5 6923 0 0 325 7248 -2255 4993 2255 0 1735 2197 3.647 3.990 2.424 + 12 4 12 5 46.04 68.42 68.00 68.10 99.43 91.98 0 48042 12858 6811 0.142 0.142 0.268 0.530 0.882 0 179.0 6506 0 0 305 6811 -2119 4693 2119 0 1637 2079 3.654 3.974 2.416 + 12 4 13 0 46.40 68.19 68.00 68.09 99.45 91.93 0 48084 12747 6016 0.125 0.125 0.265 0.472 0.868 0 157.9 5747 0 0 269 6016 -1884 4132 1884 0 1452 1858 3.671 3.958 2.400 + 12 4 13 1 46.76 68.07 68.00 68.05 99.44 91.83 0 48126 12636 5501 0.114 0.114 0.263 0.435 0.859 0 144.3 5255 0 0 246 5501 -1742 3759 1742 0 1325 1708 3.688 3.966 2.392 + 12 4 13 2 47.12 68.02 68.00 68.03 99.44 91.76 0 48154 12562 5001 0.104 0.104 0.261 0.398 0.850 0 131.1 4778 0 0 224 5001 -1596 3406 1596 -0 1207 1567 3.700 3.957 2.380 + 12 4 13 3 47.48 67.96 68.00 68.02 99.42 91.74 0 48154 12562 4625 .0960 .0960 0.261 0.368 0.842 0 121.2 4418 0 0 207 4625 -1478 3146 1478 -0 1126 1470 3.700 3.922 2.360 + 12 4 13 4 47.84 67.91 68.00 68.01 99.41 91.72 0 48154 12562 4406 .0915 .0915 0.261 0.351 0.838 0 115.5 4209 0 0 197 4406 -1411 2995 1411 0 1079 1412 3.700 3.902 2.348 + 12 4 13 5 48.20 67.85 68.00 68.00 99.40 91.70 0 48154 12562 4232 .0879 .0879 0.261 0.337 0.834 0 110.9 4043 0 0 189 4232 -1358 2874 1358 0 1040 1366 3.700 3.886 2.338 + 12 4 14 0 48.47 67.83 68.00 67.99 99.39 91.69 0 48154 12562 4266 .0886 .0886 0.261 0.340 0.835 0 111.8 4075 0 0 191 4266 -1370 2896 1370 0 1048 1375 3.700 3.889 2.338 + 12 4 14 1 48.74 67.75 68.00 67.98 99.39 91.68 0 48154 12562 4297 .0892 .0892 0.261 0.342 0.836 0 112.7 4105 0 0 192 4297 -1381 2916 1381 0 1055 1383 3.700 3.892 2.338 + 12 4 14 2 49.01 67.78 68.00 67.97 99.37 91.66 0 48154 12562 4242 .0881 .0881 0.261 0.338 0.834 0 111.2 4052 0 0 190 4242 -1366 2876 1366 0 1043 1369 3.700 3.887 2.334 + 12 4 14 3 49.28 67.84 68.00 67.97 99.38 91.66 0 48154 12562 4093 .0850 .0850 0.261 0.326 0.831 0 107.3 3910 0 0 183 4093 -1318 2776 1318 0 1010 1329 3.700 3.873 2.327 + 12 4 14 4 49.55 67.76 68.00 67.98 99.38 91.67 0 48154 12562 3907 .0811 .0811 0.261 0.311 0.828 0 102.4 3732 0 0 175 3907 -1256 2650 1256 0 968 1279 3.700 3.856 2.320 + 12 4 14 5 49.82 67.78 68.00 67.97 99.37 91.65 0 48154 12562 3674 .0763 .0763 0.261 0.293 0.823 0 96.3 3510 0 0 164 3674 -1184 2491 1184 0 915 1216 3.700 3.834 2.307 + 12 4 15 0 49.67 67.79 68.00 67.97 99.37 91.65 0 48154 12562 2532 .0526 .0526 0.261 0.202 0.800 0 66.4 2419 0 0 113 2532 -816 1716 816 0 649 898 3.700 3.728 2.253 + 12 4 15 1 49.52 67.76 68.00 67.97 99.37 91.65 0 48154 12562 2244 .0466 .0466 0.261 0.179 0.795 0 58.8 2144 0 0 100 2244 -723 1521 723 0 579 816 3.700 3.702 2.239 + 12 4 15 2 49.37 67.74 68.00 67.96 99.36 91.63 0 48154 12562 2012 .0418 .0418 0.261 0.160 0.790 0 52.7 1922 0 0 90 2012 -649 1363 649 0 522 749 3.700 3.680 2.226 + 12 4 15 3 49.22 67.66 68.00 67.95 99.36 91.62 0 48154 12562 2166 .0450 .0450 0.261 0.172 0.793 0 56.8 2069 0 0 97 2166 -700 1466 700 0 560 793 3.700 3.695 2.232 + 12 4 15 4 49.07 67.62 68.00 67.94 99.34 91.59 0 48154 12562 2668 .0554 .0554 0.261 0.212 0.803 0 70.0 2549 0 0 119 2668 -864 1804 864 0 681 937 3.700 3.741 2.253 + 12 4 15 5 48.92 67.79 68.00 67.93 99.33 91.58 0 48154 12562 3166 .0657 .0657 0.261 0.252 0.813 0 83.0 3024 0 0 142 3166 -1026 2139 1026 0 798 1077 3.700 3.787 2.276 + 12 4 16 0 48.59 67.90 68.00 67.96 99.36 91.63 0 48154 12562 4440 .0922 .0922 0.261 0.353 0.838 0 116.4 4242 0 0 199 4440 -1434 3006 1434 -0 1086 1421 3.700 3.905 2.340 + 12 4 16 1 48.26 68.24 68.00 67.98 99.38 91.66 0 48154 12562 5087 0.106 0.106 0.261 0.405 0.851 0 133.3 4859 0 0 228 5087 -1638 3449 1638 0 1225 1589 3.700 3.965 2.374 + 12 4 16 2 47.93 68.35 68.00 68.04 99.44 91.76 0 48154 12562 5673 0.118 0.118 0.261 0.452 0.863 0 148.7 5419 0 0 254 5673 -1809 3863 1809 0 1348 1738 3.700 4.020 2.412 + 12 4 16 3 47.60 68.48 68.00 68.06 99.47 91.81 0 48154 12562 6208 0.129 0.129 0.261 0.494 0.874 0 162.7 5931 0 0 278 6208 -1972 4236 1972 0 1457 1872 3.700 4.069 2.442 + 12 4 16 4 47.27 68.54 68.00 68.09 99.49 91.86 0 48154 12562 6642 0.138 0.138 0.261 0.529 0.882 0 174.1 6345 0 0 297 6642 -2101 4541 2101 0 1544 1978 3.700 4.110 2.467 + 12 4 16 5 46.94 68.55 68.00 68.11 99.51 91.90 0 48147 12580 7024 0.146 0.146 0.261 0.558 0.890 0 184.2 6710 0 0 314 7024 -2213 4811 2213 0 1623 2074 3.697 4.135 2.484 + 12 4 17 0 46.79 68.69 68.00 68.11 99.50 91.92 0 48129 12627 7337 0.152 0.152 0.262 0.581 0.895 0 192.4 7009 0 0 328 7337 -2305 5032 2305 -0 1693 2158 3.690 4.139 2.489 + 12 4 17 1 46.64 68.78 68.00 68.14 99.52 91.99 0 48112 12673 7575 0.157 0.157 0.263 0.598 0.899 0 198.8 7236 0 0 339 7575 -2363 5212 2363 0 1750 2225 3.683 4.136 2.495 + 12 4 17 2 46.49 68.92 68.00 68.16 99.52 92.04 0 48094 12719 7759 0.161 0.161 0.264 0.610 0.903 0 203.7 7412 0 0 347 7759 -2407 5352 2407 0 1795 2279 3.676 4.128 2.498 + 12 4 17 3 46.34 68.98 68.00 68.18 99.54 92.10 0 48077 12765 7990 0.166 0.166 0.266 0.626 0.906 0 209.8 7632 0 0 358 7990 -2462 5527 2462 0 1850 2345 3.668 4.125 2.503 + 12 4 17 4 46.19 69.12 68.00 68.20 99.54 92.15 0 48059 12811 8158 0.170 0.170 0.267 0.637 0.909 0 214.3 7793 0 0 366 8158 -2502 5656 2502 0 1893 2395 3.661 4.116 2.504 + 12 4 17 5 46.04 69.18 68.00 68.22 99.55 92.21 0 48042 12858 8378 0.174 0.174 0.268 0.652 0.913 0 220.1 8003 0 0 376 8378 -2552 5826 2552 0 1946 2459 3.654 4.111 2.509 + 12 4 18 0 45.47 69.31 68.00 68.24 99.53 92.29 0 47975 13033 8137 0.170 0.170 0.272 0.624 0.906 0 214.1 7771 0 0 365 8137 -2452 5685 2452 0 1941 2442 3.627 4.005 2.465 + 12 4 18 1 44.90 69.34 68.00 68.26 99.50 92.39 0 47909 13209 8392 0.175 0.175 0.276 0.635 0.909 0 221.1 8014 0 0 377 8392 -2496 5895 2496 -0 2031 2545 3.601 3.945 2.447 + 12 4 18 2 44.33 69.45 68.00 68.26 99.47 92.46 0 47842 13385 8657 0.181 0.181 0.280 0.647 0.912 0 228.4 8267 0 0 390 8657 -2550 6107 2550 -0 2125 2651 3.575 3.890 2.428 + 12 4 18 3 43.76 69.57 68.00 68.28 99.44 92.55 0 47776 13561 8916 0.187 0.187 0.284 0.658 0.914 0 235.6 8514 0 0 402 8916 -2595 6321 2595 0 2219 2757 3.549 3.838 2.412 + 12 4 18 4 43.19 69.69 68.00 68.30 99.42 92.64 0 47709 13736 9168 0.192 0.192 0.288 0.667 0.917 0 242.6 8754 0 0 414 9168 -2634 6533 2634 0 2311 2861 3.523 3.788 2.398 + 12 4 18 5 42.62 69.83 68.00 68.32 99.40 92.72 0 47643 13912 9455 0.198 0.198 0.292 0.680 0.920 0 250.5 9028 0 0 427 9455 -2684 6771 2684 0 2412 2976 3.498 3.743 2.385 + 12 4 19 0 42.20 69.88 68.00 68.35 99.39 92.80 0 47594 14042 9389 0.197 0.197 0.295 0.669 0.917 0 249.0 8964 0 0 425 9389 -2638 6751 2638 0 2428 2989 3.480 3.692 2.366 + 12 4 19 1 41.78 69.86 68.00 68.36 99.37 92.85 0 47545 14171 9575 0.201 0.201 0.298 0.676 0.919 0 254.2 9142 0 0 434 9575 -2668 6907 2668 0 2497 3067 3.461 3.661 2.357 + 12 4 19 2 41.36 69.87 68.00 68.36 99.33 92.89 0 47496 14301 9766 0.206 0.206 0.301 0.683 0.921 0 259.6 9323 0 0 443 9766 -2704 7062 2704 0 2568 3147 3.443 3.631 2.346 + 12 4 19 3 40.94 69.87 68.00 68.36 99.30 92.93 0 47447 14431 9952 0.210 0.210 0.304 0.690 0.922 0 264.8 9500 0 0 452 9952 -2737 7215 2737 -0 2638 3226 3.425 3.602 2.335 + 12 4 19 4 40.52 69.96 68.00 68.36 99.27 92.96 0 47398 14560 10082 0.213 0.213 0.307 0.692 0.923 0 268.5 9624 0 0 458 10082 -2754 7328 2754 0 2696 3291 3.407 3.570 2.323 + 12 4 19 5 40.10 69.85 68.00 68.38 99.25 93.02 0 47349 14690 10317 0.218 0.218 0.310 0.702 0.926 0 275.1 9848 0 0 469 10317 -2793 7524 2793 0 2777 3383 3.390 3.546 2.317 + 12 4 20 0 40.37 69.73 68.00 68.36 99.26 92.98 0 47380 14607 10525 0.222 0.222 0.308 0.721 0.930 0 280.4 10047 0 0 478 10525 -2868 7657 2868 0 2802 3417 3.401 3.585 2.334 + 12 4 20 1 40.64 69.75 68.00 68.35 99.27 92.93 0 47412 14523 10552 0.223 0.223 0.306 0.727 0.932 0 280.9 10072 0 0 479 10552 -2894 7658 2894 0 2788 3404 3.413 3.613 2.344 + 12 4 20 2 40.91 69.85 68.00 68.35 99.29 92.92 0 47443 14440 10533 0.222 0.222 0.304 0.729 0.932 0 280.3 10055 0 0 478 10533 -2897 7636 2897 0 2764 3379 3.424 3.638 2.355 + 12 4 20 3 41.18 69.72 68.00 68.37 99.33 92.93 0 47475 14357 10556 0.222 0.222 0.302 0.735 0.934 0 280.7 10077 0 0 479 10556 -2906 7650 2906 -0 2748 3364 3.436 3.667 2.370 + 12 4 20 4 41.45 69.87 68.00 68.35 99.33 92.88 0 47506 14273 10471 0.220 0.220 0.300 0.734 0.933 0 278.3 9997 0 0 475 10471 -2903 7569 2903 0 2710 3321 3.447 3.689 2.377 + 12 4 20 5 41.72 69.83 68.00 68.38 99.38 92.90 0 47538 14190 10455 0.220 0.220 0.298 0.737 0.934 0 277.6 9982 0 0 474 10455 -2898 7558 2898 0 2686 3296 3.459 3.716 2.392 + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 231 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.94 68.00 68.37 99.34 92.93 0 47489 14320 10843 0.228 0.228 0.302 0.757 0.939 0 288.2 10351 0 0 492 10843 -2989 7853 2989 -0 2799 3427 3.441 3.699 2.387 + 12 4 21 1 40.88 70.00 68.00 68.38 99.32 92.98 0 47440 14449 10995 0.232 0.232 0.305 0.761 0.940 0 292.6 10496 0 0 499 10995 -3004 7991 3004 0 2863 3499 3.423 3.666 2.377 + 12 4 21 2 40.46 69.97 68.00 68.39 99.30 93.03 0 47391 14579 11139 0.235 0.235 0.308 0.764 0.941 0 296.7 10633 0 0 506 11139 -3019 8120 3019 -0 2926 3569 3.405 3.634 2.366 + 12 4 21 3 40.04 69.97 68.00 68.39 99.26 93.06 0 47342 14708 11302 0.239 0.239 0.311 0.768 0.942 0 301.4 10788 0 0 514 11302 -3047 8255 3047 0 2993 3643 3.387 3.605 2.354 + 12 4 21 4 39.62 69.96 68.00 68.39 99.23 93.09 0 47293 14838 11469 0.243 0.243 0.314 0.773 0.943 0 306.1 10947 0 0 522 11469 -3073 8396 3073 0 3061 3720 3.370 3.576 2.343 + 12 4 21 5 39.20 69.96 68.00 68.39 99.20 93.11 0 47244 14968 11633 0.246 0.246 0.317 0.777 0.944 0 310.8 11102 0 0 530 11633 -3099 8533 3099 0 3129 3795 3.352 3.549 2.332 + 12 4 22 0 39.29 69.97 68.00 68.39 99.21 93.11 0 47254 14940 12318 0.261 0.261 0.316 0.825 0.956 0 329.1 11757 0 0 561 12318 -3285 9033 3285 0 3266 3964 3.356 3.600 2.360 + 12 4 22 1 39.38 70.06 68.00 68.39 99.21 93.11 0 47265 14912 12417 0.263 0.263 0.316 0.833 0.958 0 331.6 11851 0 0 566 12417 -3314 9103 3314 -0 3279 3981 3.360 3.614 2.368 + 12 4 22 2 39.47 70.10 68.00 68.41 99.24 93.13 0 47275 14884 12484 0.264 0.264 0.315 0.839 0.960 0 333.4 11915 0 0 569 12484 -3326 9158 3326 0 3285 3990 3.364 3.627 2.376 + 12 4 22 3 39.56 70.11 68.00 68.42 99.25 93.14 0 47286 14857 12548 0.265 0.265 0.314 0.845 0.961 0 335.0 11977 0 0 572 12548 -3341 9207 3341 0 3291 3999 3.367 3.640 2.384 + 12 4 22 4 39.65 70.05 68.00 68.42 99.26 93.14 0 47296 14829 12609 0.267 0.267 0.314 0.850 0.963 0 336.5 12035 0 0 574 12609 -3360 9250 3360 0 3296 4006 3.371 3.652 2.390 + 12 4 22 5 39.74 70.22 68.00 68.41 99.26 93.13 0 47307 14801 12565 0.266 0.266 0.313 0.849 0.962 0 335.3 11993 0 0 572 12565 -3356 9210 3356 0 3279 3987 3.375 3.658 2.392 + 12 4 23 0 39.59 70.32 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.76 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.33 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.18 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.92 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.76 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 008: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 008: + + + ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE + FIXRPTITLES("RSYS -- Aux Alt / Def None") + + RUN + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 008 Sat 01-Jan-22 2:52:51 pm Page 232 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 009: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 55 subhours of run. + Total condensation heat = 0.0549524 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.757 0 0.269 0.149 0 0 0 0 0.0555 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.296 0 1.100 0.612 0 0 0 0 0.220 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.282 0 1.125 0.561 0 0 0 0 0.231 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.555 0 0.709 0.548 0 0 0 0 0.152 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.328 0 0.0834 0.0331 0 0 0 0 0.0172 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.318 0 0.0774 0.0896 0 0 0 0 0.0181 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Lockout / Def None + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 69.930 2.990 1.040 0 0.149 0.0555 1.245 0 0 0 0 0 0 0 0 0 0 0.269 0 0.149 0.0555 0.0359 0.510 0 0 0 0 0 0 0 0.875 -.0073 0 0 0 0 + Dec 268.26 12.248 4.095 0 0.612 0.220 4.928 0 0 0 0 0 0 0 0 0 0 1.100 0 0.612 0.220 0.0605 1.994 0 0 0 0 0 0 0 3.607 -.0273 0 0 0 0 + Jan 296.63 11.216 4.389 0 0.561 0.231 5.181 0 0 0 0 0 0 0 0 0 0 1.125 0 0.561 0.231 0.0760 1.992 0 0 0 0 0 0 0 3.812 -.0310 0 0 0 0 + Feb 176.34 10.957 2.727 0 0.548 0.152 3.427 0 0 0 0 0 0 0 0 0 0 0.709 0 0.548 0.152 0.0498 1.459 0 0 0 0 0 0 0 2.488 -.0181 0 0 0 0 + Mar 24.417 0.663 0.336 0 0.0331 0.0172 0.386 0 0 0 0 0 0 0 0 0 0 0.0834 0 0.0331 0.0172 .00887 0.143 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 20.209 1.793 0.302 0 0.0896 0.0181 0.410 0 0 0 0 0 0 0 0 0 0 0.0774 0 0.0896 0.0181 0.0180 0.203 0 0 0 0 0 0 0 0.289 -.0015 0 0 0 0 + + Yr 855.80 39.866 12.890 0 1.993 0.694 15.578 0 0 0 0 0 0 0 0 0 0 3.364 0 1.993 0.694 0.249 6.301 0 0 0 0 0 0 0 11.337 -.0892 0 0 0 0 + + + +RSYS -- Aux Lockout / Def None + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.269 0.149 0.0555 0.510 0.875 1.716 0.510 0.875 1.716 0 0 0 0 0 0 0 + Dec 1.100 0.612 0.220 1.994 3.607 1.809 1.994 3.607 1.809 0 0 0 0 0 0 -.0078 + Jan 1.125 0.561 0.231 1.992 3.812 1.913 1.992 3.812 1.913 0 0 0 0 0 0 0 + Feb 0.709 0.548 0.152 1.459 2.488 1.705 1.459 2.488 1.705 0 0 0 0 0 0 -.0039 + Mar 0.0834 0.0331 0.0172 0.143 0.265 1.859 0.143 0.265 1.859 0 0 0 0 0 0 -.0020 + Apr 0.0774 0.0896 0.0181 0.203 0.289 1.422 0.203 0.289 1.422 0 0 0 0 0 0 -.0020 + + Yr 3.364 1.993 0.694 6.301 11.337 1.799 6.301 11.337 1.799 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 233 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Lockout / Def None for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.770 0 0.335 2.241 4.703 2.098 2.241 4.703 2.098 0 0 0 0 0 0 -0.000 + 8 6.157 8.333 1.466 16.093 25.380 1.577 16.093 25.380 1.577 0 0 0 0 0 0 -0.000 + 9 4.708 0 0.891 5.735 14.016 2.444 5.735 14.016 2.444 0 0 0 0 0 0 -0.000 + 10 3.934 0 0.764 4.834 11.601 2.400 4.834 11.601 2.400 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.148 9.800 2.362 4.148 9.800 2.362 0 0 0 0 0 0 -0.000 + 12 2.899 0 0.595 3.630 8.454 2.329 3.630 8.454 2.329 0 0 0 0 0 0 -0.000 + 13 2.362 0 0.502 3.000 7.081 2.360 3.000 7.081 2.360 0 0 0 0 0 0 -0.000 + 14 1.979 0 0.401 2.379 5.690 2.391 2.379 5.690 2.391 0 0 0 0 0 0 0 + 15 1.975 0 0.400 2.375 5.699 2.399 2.375 5.699 2.399 0 0 0 0 0 0 0 + 16 1.963 0 0.397 2.360 5.691 2.412 2.360 5.691 2.412 0 0 0 0 0 0 0 + 17 1.979 0 0.401 2.379 5.775 2.427 2.379 5.775 2.427 0 0 0 0 0 0 0 + 18 1.953 0 0.394 2.347 5.705 2.431 2.347 5.705 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.383 5.445 2.285 2.383 5.445 2.285 0 0 0 0 0 0 -0.000 + 20 1.835 0 0.365 2.336 5.361 2.295 2.336 5.361 2.295 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.376 5.503 2.315 2.376 5.503 2.315 0 0 0 0 0 0 -0.000 + 22 2.069 0 0.416 2.622 6.183 2.358 2.622 6.183 2.358 0 0 0 0 0 0 -0.000 + 23 2.369 0 0.477 2.982 7.152 2.398 2.982 7.152 2.398 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Lockout / Def None for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.594 0 0.803 5.533 12.550 2.268 5.533 12.550 2.268 0 0 0 0 0 0 -0.000 + 8 5.603 16.667 1.660 24.067 30.268 1.258 24.067 30.268 1.258 0 0 0 0 0 0 -0.000 + 9 5.929 0 1.028 7.093 17.178 2.422 7.093 17.178 2.422 0 0 0 0 0 0 -0.000 + 10 4.413 0 0.804 5.353 12.968 2.422 5.353 12.968 2.422 0 0 0 0 0 0 -0.000 + 11 3.665 0 0.694 4.496 10.933 2.432 4.496 10.933 2.432 0 0 0 0 0 0 -0.000 + 12 3.174 0 0.623 3.933 9.662 2.457 3.933 9.662 2.457 0 0 0 0 0 0 -0.000 + 13 2.282 0 0.476 2.895 7.223 2.495 2.895 7.223 2.495 0 0 0 0 0 0 -0.000 + 14 2.010 0 0.409 2.555 6.196 2.425 2.555 6.196 2.425 0 0 0 0 0 0 -0.000 + 15 1.937 0 0.390 2.464 5.952 2.416 2.464 5.952 2.416 0 0 0 0 0 0 -0.000 + 16 1.340 0 0.252 1.728 3.860 2.233 1.728 3.860 2.233 0 0 0 0 0 0 -0.000 + 17 1.800 0 0.357 2.293 5.471 2.386 2.293 5.471 2.386 0 0 0 0 0 0 -0.000 + 18 1.977 0 0.399 2.513 6.177 2.458 2.513 6.177 2.458 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 234 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.115 0 0.406 2.657 6.352 2.390 2.657 6.352 2.390 0 0 0 0 0 0 -0.000 + 20 2.513 0 0.449 3.099 7.116 2.296 3.099 7.116 2.296 0 0 0 0 0 0 -0.000 + 21 2.849 0 0.498 3.484 7.970 2.288 3.484 7.970 2.288 0 0 0 0 0 0 -0.000 + 22 3.158 0 0.544 3.838 8.823 2.298 3.838 8.823 2.298 0 0 0 0 0 0 -0.000 + 23 3.642 0 0.617 4.395 10.105 2.299 4.395 10.105 2.299 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Lockout / Def None for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0.650 0 0.0835 0.870 1.319 1.515 0.870 1.319 1.515 0 0 0 0 0 0 -0.000 + 6 1.884 0 0.249 2.270 3.944 1.738 2.270 3.944 1.738 0 0 0 0 0 0 -0.000 + 7 7.937 8.333 1.533 17.940 27.146 1.513 17.940 27.146 1.513 0 0 0 0 0 0 -0.000 + 8 3.958 33.058 2.015 39.167 39.103 0.998 39.167 39.103 0.998 0 0 0 0 0 0 -0.000 + 9 7.325 0 1.139 8.600 19.520 2.270 8.600 19.520 2.270 0 0 0 0 0 0 -0.000 + 10 3.649 0 0.627 4.412 10.052 2.278 4.412 10.052 2.278 0 0 0 0 0 0 -0.000 + 11 1.951 0 0.343 2.430 5.362 2.207 2.430 5.362 2.207 0 0 0 0 0 0 -0.000 + 12 1.393 0 0.250 1.780 3.854 2.166 1.780 3.854 2.166 0 0 0 0 0 0 -0.000 + 13 0.908 0 0.162 1.207 2.466 2.043 1.207 2.466 2.043 0 0 0 0 0 0 -0.000 + 14 0.434 0 0.0742 0.644 1.118 1.734 0.644 1.118 1.734 0 0 0 0 0 0 -0.000 + 15 0.0369 0 .00608 0.179 0.0909 0.507 0.179 0.0909 0.507 0 0 0 0 0 0 -0.000 + 16 0.0248 0 .00412 0.165 0.0608 0.367 0.165 0.0608 0.367 0 0 0 0 0 0 -0.000 + 17 0.613 0 0.107 0.856 1.578 1.844 0.856 1.578 1.844 0 0 0 0 0 0 -0.000 + 18 1.713 0 0.312 2.162 4.705 2.177 2.162 4.705 2.177 0 0 0 0 0 0 -0.000 + 19 2.377 0 0.407 2.921 6.306 2.159 2.921 6.306 2.159 0 0 0 0 0 0 -0.000 + 20 2.946 0 0.485 3.568 7.669 2.150 3.568 7.669 2.150 0 0 0 0 0 0 -0.000 + 21 3.258 0 0.536 3.931 8.555 2.177 3.931 8.555 2.177 0 0 0 0 0 0 -0.000 + 22 3.681 0 0.600 4.418 9.669 2.189 4.418 9.669 2.189 0 0 0 0 0 0 -0.000 + 23 4.126 0 0.672 4.934 10.939 2.217 4.934 10.939 2.217 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 44600 42500 31130 3.70 3.19 2.60 2.32 4.45 3.32 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 235 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 254 111 364 1245 875 6 0 0 0 0 0 0 0 + Dec 67.53 895 410 1305 4928 3607 15 0 0 0 0 0 0 0 + Jan 67.52 938 416 1354 5181 3812 15 0 0 0 0 0 0 0 + Feb 67.64 628 297 925 3427 2488 14 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 386 265 2 0 0 0 0 0 0 0 + Apr 69.33 80 38 118 410 289 3 0 0 0 0 0 0 0 + + Yr 68.43 2882 1304 4186 15578 11337 54 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 236 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 84 38 122 455 333 -0 0 0 0 0 0 0 0 + 1 65.00 91 43 134 502 368 0 0 0 0 0 0 0 0 + 2 65.00 105 49 154 579 426 -0 0 0 0 0 0 0 0 + 3 65.00 117 55 171 647 476 -0 0 0 0 0 0 0 0 + 4 65.00 129 61 190 716 526 -0 0 0 0 0 0 0 0 + 5 65.00 142 67 210 790 581 -0 0 0 0 0 0 0 0 + 6 65.00 159 75 235 884 650 0 0 0 0 0 0 0 0 + 1 65.96 637 831 1467 8692 7005 220 0 0 0 0 0 0 0 + 2 66.50 588 706 1295 7206 5794 117 0 0 0 0 0 0 0 + 3 66.50 529 332 861 3958 3097 0 0 0 0 0 0 0 0 + 4 66.50 524 337 860 3969 3109 -0 0 0 0 0 0 0 0 + 5 66.50 536 351 887 3989 3102 0 0 0 0 0 0 0 0 + 6 66.50 529 323 852 3720 2868 0 0 0 0 0 0 0 0 + 1 67.11 622 809 1431 8692 7122 139 0 0 0 0 0 0 0 + 2 67.56 634 819 1453 8692 7135 104 0 0 0 0 0 0 0 + 3 67.90 621 797 1419 8692 7195 79 0 0 0 0 0 0 0 + 4 68.00 546 639 1185 7049 5843 21 0 0 0 0 0 0 0 + 5 68.00 539 548 1088 6123 5035 0 0 0 0 0 0 0 0 + 6 68.00 538 496 1034 5544 4510 -0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 237 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 542 436 978 4925 3947 -0 0 0 0 0 0 0 0 + 2 68.00 534 376 910 4356 3446 -0 0 0 0 0 0 0 0 + 3 68.00 530 324 854 3833 2979 0 0 0 0 0 0 0 0 + 4 68.00 524 282 806 3403 2597 0 0 0 0 0 0 0 0 + 5 68.00 519 245 764 3032 2268 0 0 0 0 0 0 0 0 + 6 68.00 513 212 726 2696 1970 0 0 0 0 0 0 0 0 + 1 68.00 508 193 702 2499 1797 -0 0 0 0 0 0 0 0 + 2 68.00 481 172 653 2252 1599 -0 0 0 0 0 0 0 0 + 3 68.00 433 152 585 2001 1416 0 0 0 0 0 0 0 0 + 4 68.00 396 137 533 1801 1269 0 0 0 0 0 0 0 0 + 5 68.00 360 122 482 1606 1124 0 0 0 0 0 0 0 0 + 6 68.00 325 108 433 1423 990 0 0 0 0 0 0 0 0 + 1 68.00 317 104 421 1363 942 0 0 0 0 0 0 0 0 + 2 68.00 289 93 382 1220 837 -0 0 0 0 0 0 0 0 + 3 68.00 262 83 345 1088 743 0 0 0 0 0 0 0 0 + 4 68.00 236 74 310 962 652 0 0 0 0 0 0 0 0 + 5 68.00 212 65 278 850 573 0 0 0 0 0 0 0 0 + 6 68.00 185 57 242 736 494 -0 0 0 0 0 0 0 0 + 1 68.00 202 62 264 799 535 -0 0 0 0 0 0 0 0 + 2 68.00 180 55 236 711 475 -0 0 0 0 0 0 0 0 + 3 68.00 157 48 206 620 414 -0 0 0 0 0 0 0 0 + 4 68.00 136 42 178 536 358 0 0 0 0 0 0 0 0 + 5 68.00 116 36 152 456 304 -0 0 0 0 0 0 0 0 + 6 68.00 96 29 126 377 251 -0 0 0 0 0 0 0 0 + 1 68.00 60 18 78 234 156 0 0 0 0 0 0 0 0 + 2 68.00 37 11 49 145 96 0 0 0 0 0 0 0 0 + 3 68.00 15 5 20 59 39 0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 238 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 8 2 11 29 19 -0 0 0 0 0 0 0 0 + 1 68.00 73 22 95 262 167 0 0 0 0 0 0 0 0 + 2 68.00 81 24 105 287 183 0 0 0 0 0 0 0 0 + 3 68.00 97 29 126 348 222 -0 0 0 0 0 0 0 0 + 4 68.00 107 32 139 381 243 0 0 0 0 0 0 0 0 + 5 68.00 117 35 152 418 265 0 0 0 0 0 0 0 0 + 6 68.00 134 40 173 475 302 0 0 0 0 0 0 0 0 + 1 68.00 133 40 173 472 300 0 0 0 0 0 0 0 0 + 2 68.00 150 44 194 530 336 0 0 0 0 0 0 0 0 + 3 68.00 162 48 210 573 363 0 0 0 0 0 0 0 0 + 4 68.00 179 53 232 632 400 0 0 0 0 0 0 0 0 + 5 68.00 191 57 247 673 426 0 0 0 0 0 0 0 0 + 6 68.00 207 61 269 731 463 0 0 0 0 0 0 0 0 + 1 68.00 232 69 301 818 517 0 0 0 0 0 0 0 0 + 2 68.00 249 74 323 877 554 0 0 0 0 0 0 0 0 + 3 68.00 265 79 343 935 591 0 0 0 0 0 0 0 0 + 4 68.00 276 82 358 977 619 -0 0 0 0 0 0 0 0 + 5 68.00 290 86 376 1029 652 0 0 0 0 0 0 0 0 + 6 68.00 300 90 390 1076 686 0 0 0 0 0 0 0 0 + 1 68.00 325 99 423 1181 758 -0 0 0 0 0 0 0 0 + 2 68.00 334 103 437 1231 794 -0 0 0 0 0 0 0 0 + 3 68.00 342 107 449 1279 830 0 0 0 0 0 0 0 0 + 4 68.00 350 111 462 1328 866 -0 0 0 0 0 0 0 0 + 5 68.00 359 116 474 1376 902 0 0 0 0 0 0 0 0 + 6 68.00 366 120 485 1423 937 0 0 0 0 0 0 0 0 + 1 68.00 402 133 535 1581 1046 0 0 0 0 0 0 0 0 + 2 68.00 410 137 547 1630 1083 0 0 0 0 0 0 0 0 + 3 68.00 414 141 555 1674 1118 -0 0 0 0 0 0 0 0 + 4 68.00 421 145 565 1720 1155 0 0 0 0 0 0 0 0 + 5 68.00 426 148 575 1765 1190 -0 0 0 0 0 0 0 0 + 6 68.00 430 152 582 1804 1222 0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 239 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 50 23 73 245 172 -0 0 0 0 0 0 0 0 + 4 65.00 122 56 178 597 418 -0 0 0 0 0 0 0 0 + 5 65.00 140 65 205 691 486 0 0 0 0 0 0 0 0 + 6 65.00 156 73 229 777 548 0 0 0 0 0 0 0 0 + 1 65.95 715 903 1619 8692 6855 219 0 0 0 0 0 0 0 + 2 66.50 664 778 1443 7247 5685 119 0 0 0 0 0 0 0 + 3 66.50 591 350 941 3868 2928 0 0 0 0 0 0 0 0 + 4 66.50 585 359 944 3916 2972 0 0 0 0 0 0 0 0 + 5 66.50 600 386 986 4028 3041 0 0 0 0 0 0 0 0 + 6 66.50 592 356 948 3776 2828 -0 0 0 0 0 0 0 0 + 1 67.12 689 870 1558 8692 6992 142 0 0 0 0 0 0 0 + 2 67.58 698 877 1575 8692 7010 107 0 0 0 0 0 0 0 + 3 67.94 681 850 1531 8692 7079 82 0 0 0 0 0 0 0 + 4 68.00 602 639 1241 6589 5337 12 0 0 0 0 0 0 0 + 5 68.00 594 562 1156 5871 4716 -0 0 0 0 0 0 0 0 + 6 68.00 591 503 1095 5282 4187 -0 0 0 0 0 0 0 0 + 1 68.00 592 440 1032 4692 3660 0 0 0 0 0 0 0 0 + 2 68.00 584 378 962 4128 3166 -0 0 0 0 0 0 0 0 + 3 68.00 578 328 905 3654 2748 -0 0 0 0 0 0 0 0 + 4 68.00 571 284 854 3241 2387 0 0 0 0 0 0 0 0 + 5 68.00 564 247 812 2894 2082 0 0 0 0 0 0 0 0 + 6 68.00 557 216 773 2595 1822 -0 0 0 0 0 0 0 0 + 1 68.00 531 199 729 2408 1679 0 0 0 0 0 0 0 0 + 2 68.00 478 177 655 2154 1499 -0 0 0 0 0 0 0 0 + 3 68.00 432 158 590 1926 1337 0 0 0 0 0 0 0 0 + 4 68.00 391 141 532 1717 1186 0 0 0 0 0 0 0 0 + 5 68.00 355 126 482 1539 1057 0 0 0 0 0 0 0 0 + 6 68.00 321 112 433 1369 935 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 240 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 348 119 467 1451 984 0 0 0 0 0 0 0 0 + 2 68.00 323 108 431 1322 891 0 0 0 0 0 0 0 0 + 3 68.00 294 97 391 1187 796 0 0 0 0 0 0 0 0 + 4 68.00 268 86 354 1063 709 0 0 0 0 0 0 0 0 + 5 68.00 243 76 319 946 626 0 0 0 0 0 0 0 0 + 6 68.00 216 66 282 825 543 -0 0 0 0 0 0 0 0 + 1 68.00 215 65 280 812 532 0 0 0 0 0 0 0 0 + 2 68.00 196 59 255 736 481 0 0 0 0 0 0 0 0 + 3 68.00 176 53 228 660 431 0 0 0 0 0 0 0 0 + 4 68.00 156 47 203 588 385 -0 0 0 0 0 0 0 0 + 5 68.00 139 42 180 523 342 0 0 0 0 0 0 0 0 + 6 68.00 122 36 158 458 300 0 0 0 0 0 0 0 0 + 1 68.00 85 25 110 319 209 0 0 0 0 0 0 0 0 + 2 68.00 66 20 86 249 163 0 0 0 0 0 0 0 0 + 3 68.00 47 14 62 178 116 -0 0 0 0 0 0 0 0 + 4 68.00 31 9 40 115 75 -0 0 0 0 0 0 0 0 + 5 68.00 15 5 20 57 37 0 0 0 0 0 0 0 0 + 6 68.00 1 0 1 4 3 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 68 20 89 256 168 -0 0 0 0 0 0 0 0 + 5 68.00 137 41 178 511 333 0 0 0 0 0 0 0 0 + 6 68.00 152 46 197 573 375 0 0 0 0 0 0 0 0 + 1 68.00 151 45 196 571 375 0 0 0 0 0 0 0 0 + 2 68.00 176 53 229 668 439 0 0 0 0 0 0 0 0 + 3 68.00 196 61 256 761 505 0 0 0 0 0 0 0 0 + 4 68.00 213 68 281 850 569 -0 0 0 0 0 0 0 0 + 5 68.00 230 76 305 944 638 0 0 0 0 0 0 0 0 + 6 68.00 245 83 329 1037 708 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 241 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 246 84 329 1047 718 0 0 0 0 0 0 0 0 + 2 68.00 254 87 341 1090 749 0 0 0 0 0 0 0 0 + 3 68.00 262 90 352 1128 776 0 0 0 0 0 0 0 0 + 4 68.00 270 93 364 1173 809 0 0 0 0 0 0 0 0 + 5 68.00 276 96 373 1204 832 0 0 0 0 0 0 0 0 + 6 68.00 285 100 384 1246 862 -0 0 0 0 0 0 0 0 + 1 68.00 298 105 403 1313 909 0 0 0 0 0 0 0 0 + 2 68.00 303 108 411 1342 931 -0 0 0 0 0 0 0 0 + 3 68.00 311 112 423 1392 969 0 0 0 0 0 0 0 0 + 4 68.00 316 115 430 1419 989 0 0 0 0 0 0 0 0 + 5 68.00 325 119 443 1470 1027 -0 0 0 0 0 0 0 0 + 6 68.00 328 121 449 1493 1044 0 0 0 0 0 0 0 0 + 1 68.00 346 127 473 1567 1093 0 0 0 0 0 0 0 0 + 2 68.00 353 128 481 1582 1102 0 0 0 0 0 0 0 0 + 3 68.00 358 129 487 1594 1108 0 0 0 0 0 0 0 0 + 4 68.00 363 130 492 1603 1111 -0 0 0 0 0 0 0 0 + 5 68.00 367 130 498 1610 1113 0 0 0 0 0 0 0 0 + 6 68.00 371 130 501 1613 1112 0 0 0 0 0 0 0 0 + 1 68.00 400 141 541 1738 1196 0 0 0 0 0 0 0 0 + 2 68.00 405 143 548 1763 1215 0 0 0 0 0 0 0 0 + 3 68.00 408 144 552 1784 1232 0 0 0 0 0 0 0 0 + 4 68.00 412 146 558 1806 1248 -0 0 0 0 0 0 0 0 + 5 68.00 417 147 564 1829 1264 0 0 0 0 0 0 0 0 + 6 68.00 416 147 564 1829 1265 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 242 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 18 8 26 92 66 -0 0 0 0 0 0 0 0 + 2 65.00 101 46 147 511 364 0 0 0 0 0 0 0 0 + 3 65.00 114 52 166 578 412 -0 0 0 0 0 0 0 0 + 4 65.00 127 58 184 645 461 0 0 0 0 0 0 0 0 + 5 65.00 140 64 204 715 511 0 0 0 0 0 0 0 0 + 6 65.00 155 71 225 787 562 0 0 0 0 0 0 0 0 + 1 65.96 683 873 1556 8692 6917 220 0 0 0 0 0 0 0 + 2 66.50 634 743 1377 7187 5693 117 0 0 0 0 0 0 0 + 3 66.50 565 340 905 3885 2980 0 0 0 0 0 0 0 0 + 4 66.50 560 352 912 3962 3050 0 0 0 0 0 0 0 0 + 5 66.50 575 379 953 4084 3131 0 0 0 0 0 0 0 0 + 6 66.50 567 349 916 3824 2908 0 0 0 0 0 0 0 0 + 1 67.10 661 844 1504 8692 7050 138 0 0 0 0 0 0 0 + 2 67.54 670 851 1521 8692 7069 102 0 0 0 0 0 0 0 + 3 67.88 654 826 1480 8692 7135 77 0 0 0 0 0 0 0 + 4 68.00 579 692 1271 7318 6021 26 0 0 0 0 0 0 0 + 5 68.00 572 587 1159 6285 5126 0 0 0 0 0 0 0 0 + 6 68.00 568 531 1099 5723 4624 0 0 0 0 0 0 0 0 + 1 68.00 570 467 1037 5098 4061 -0 0 0 0 0 0 0 0 + 2 68.00 563 409 971 4545 3574 0 0 0 0 0 0 0 0 + 3 68.00 558 356 914 4036 3122 -0 0 0 0 0 0 0 0 + 4 68.00 552 319 872 3681 2809 0 0 0 0 0 0 0 0 + 5 68.00 549 289 838 3387 2549 0 0 0 0 0 0 0 0 + 6 68.00 544 265 809 3156 2347 0 0 0 0 0 0 0 0 + 1 68.00 542 259 801 3098 2298 0 0 0 0 0 0 0 0 + 2 68.00 538 244 782 2961 2178 0 0 0 0 0 0 0 0 + 3 68.00 535 233 768 2851 2083 -0 0 0 0 0 0 0 0 + 4 68.00 533 223 756 2749 1993 -0 0 0 0 0 0 0 0 + 5 68.00 531 215 746 2663 1918 -0 0 0 0 0 0 0 0 + 6 68.00 530 206 736 2573 1836 0 0 0 0 0 0 0 0 + 1 68.00 529 207 736 2588 1852 -0 0 0 0 0 0 0 0 + 2 68.00 526 202 728 2536 1809 0 0 0 0 0 0 0 0 + 3 68.00 524 197 721 2489 1768 0 0 0 0 0 0 0 0 + 4 68.00 521 192 714 2439 1726 -0 0 0 0 0 0 0 0 + 5 68.00 519 185 704 2370 1666 0 0 0 0 0 0 0 0 + 6 68.00 515 179 693 2311 1618 -0 0 0 0 0 0 0 0 + 1 68.00 499 170 670 2218 1549 0 0 0 0 0 0 0 0 + 2 68.00 480 163 643 2119 1476 0 0 0 0 0 0 0 0 + 3 68.00 464 155 619 2041 1422 -0 0 0 0 0 0 0 0 + 4 68.00 445 148 592 1945 1352 0 0 0 0 0 0 0 0 + 5 68.00 428 141 570 1867 1297 0 0 0 0 0 0 0 0 + 6 68.00 409 134 543 1768 1225 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 243 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 369 120 489 1600 1110 0 0 0 0 0 0 0 0 + 2 68.00 346 112 458 1498 1040 -0 0 0 0 0 0 0 0 + 3 68.00 324 104 428 1393 965 0 0 0 0 0 0 0 0 + 4 68.00 303 97 400 1296 895 0 0 0 0 0 0 0 0 + 5 68.00 285 91 376 1208 832 0 0 0 0 0 0 0 0 + 6 68.00 268 85 353 1136 782 -0 0 0 0 0 0 0 0 + 1 68.00 239 75 314 1003 689 0 0 0 0 0 0 0 0 + 2 68.00 221 69 290 916 626 0 0 0 0 0 0 0 0 + 3 68.00 203 63 266 832 567 0 0 0 0 0 0 0 0 + 4 68.00 188 58 246 770 524 0 0 0 0 0 0 0 0 + 5 68.00 180 56 235 735 499 0 0 0 0 0 0 0 0 + 6 68.00 173 54 227 707 480 0 0 0 0 0 0 0 0 + 1 68.00 174 54 228 711 483 -0 0 0 0 0 0 0 0 + 2 68.00 176 54 230 716 486 -0 0 0 0 0 0 0 0 + 3 68.00 174 54 228 709 481 0 0 0 0 0 0 0 0 + 4 68.00 168 52 220 684 464 0 0 0 0 0 0 0 0 + 5 68.00 160 49 210 652 442 0 0 0 0 0 0 0 0 + 6 68.00 151 47 198 614 416 0 0 0 0 0 0 0 0 + 1 68.00 104 32 136 423 287 -0 0 0 0 0 0 0 0 + 2 68.00 92 28 121 374 254 0 0 0 0 0 0 0 0 + 3 68.00 83 25 108 335 227 0 0 0 0 0 0 0 0 + 4 68.00 89 27 117 361 244 0 0 0 0 0 0 0 0 + 5 68.00 110 34 144 445 301 0 0 0 0 0 0 0 0 + 6 68.00 131 40 171 528 357 -0 0 0 0 0 0 0 0 + 1 68.00 183 56 239 740 502 0 0 0 0 0 0 0 0 + 2 68.00 208 64 273 847 574 0 0 0 0 0 0 0 0 + 3 68.00 230 71 301 946 645 -0 0 0 0 0 0 0 0 + 4 68.00 251 77 329 1035 706 0 0 0 0 0 0 0 0 + 5 68.00 268 82 350 1107 757 0 0 0 0 0 0 0 0 + 6 68.00 281 87 368 1170 802 -0 0 0 0 0 0 0 0 + 1 68.00 293 91 384 1222 838 -0 0 0 0 0 0 0 0 + 2 68.00 300 94 394 1262 869 0 0 0 0 0 0 0 0 + 3 68.00 305 96 401 1293 892 0 0 0 0 0 0 0 0 + 4 68.00 312 98 410 1331 921 -0 0 0 0 0 0 0 0 + 5 68.00 316 100 417 1359 943 0 0 0 0 0 0 0 0 + 6 68.00 322 103 425 1396 971 0 0 0 0 0 0 0 0 + 1 68.00 308 100 408 1356 947 0 0 0 0 0 0 0 0 + 2 68.00 313 103 416 1398 982 -0 0 0 0 0 0 0 0 + 3 68.00 318 107 425 1442 1018 -0 0 0 0 0 0 0 0 + 4 68.00 322 110 432 1486 1053 0 0 0 0 0 0 0 0 + 5 68.00 326 113 439 1528 1089 -0 0 0 0 0 0 0 0 + 6 68.00 330 117 447 1576 1129 0 0 0 0 0 0 0 0 + 1 68.00 324 116 439 1564 1125 0 0 0 0 0 0 0 0 + 2 68.00 326 118 444 1595 1151 0 0 0 0 0 0 0 0 + 3 68.00 330 121 450 1627 1177 0 0 0 0 0 0 0 0 + 4 68.00 332 124 456 1658 1202 0 0 0 0 0 0 0 0 + 5 68.00 333 125 459 1680 1221 0 0 0 0 0 0 0 0 + 6 68.00 337 128 465 1719 1254 -0 0 0 0 0 0 0 0 + 1 68.00 346 131 478 1754 1276 0 0 0 0 0 0 0 0 + 2 68.00 350 132 482 1760 1277 0 0 0 0 0 0 0 0 + 3 68.00 352 132 484 1759 1275 0 0 0 0 0 0 0 0 + 4 68.00 354 131 485 1756 1271 -0 0 0 0 0 0 0 0 + 5 68.00 354 131 484 1748 1264 0 0 0 0 0 0 0 0 + 6 68.00 353 129 482 1737 1255 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 244 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 363 135 498 1808 1310 0 0 0 0 0 0 0 0 + 2 68.00 364 137 501 1832 1331 0 0 0 0 0 0 0 0 + 3 68.00 365 139 504 1856 1353 -0 0 0 0 0 0 0 0 + 4 68.00 367 141 508 1883 1375 0 0 0 0 0 0 0 0 + 5 68.00 369 143 512 1912 1399 -0 0 0 0 0 0 0 0 + 6 68.00 371 146 517 1939 1422 0 0 0 0 0 0 0 0 + 1 68.00 394 154 548 2053 1505 -0 0 0 0 0 0 0 0 + 2 68.00 397 155 553 2070 1517 0 0 0 0 0 0 0 0 + 3 68.00 399 156 555 2081 1526 0 0 0 0 0 0 0 0 + 4 68.00 401 156 557 2092 1535 0 0 0 0 0 0 0 0 + 5 68.00 403 157 560 2102 1542 0 0 0 0 0 0 0 0 + 6 68.00 403 157 559 2094 1535 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 245 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 68.55 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 68.41 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 68.23 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 68.08 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.89 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.75 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.59 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 67.43 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 67.27 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 67.11 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.95 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.79 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.63 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 66.47 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 66.31 65.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 66.15 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 65.99 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.83 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.67 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 65.51 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 65.35 65.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 65.19 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 65.03 65.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.87 65.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.71 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.55 65.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 64.39 65.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 64.23 65.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 64.06 65.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.90 65.00 64.83 95.02 89.54 0 46278 17527 2732 .0590 .0590 0.379 0.156 0.789 0 74.5 2604 0 0 127 2732 -733 1999 733 -1 1007 1271 3.037 2.586 1.762 + 12 2 5 0 30.77 64.13 65.00 64.80 94.97 89.58 0 46260 17574 3015 .0652 .0652 0.380 0.172 0.793 0 82.3 2874 0 0 140 3015 -805 2210 805 0 1108 1385 3.031 2.593 1.770 + 12 2 5 1 30.62 64.08 65.00 64.83 94.99 89.63 0 46243 17620 3477 .0752 .0752 0.381 0.197 0.799 0 94.9 3315 0 0 162 3477 -921 2555 921 -0 1270 1569 3.026 2.609 1.784 + 12 2 5 2 30.47 64.01 65.00 64.83 94.97 89.62 0 46225 17666 3882 .0840 .0840 0.382 0.220 0.805 0 106.0 3701 0 0 181 3882 -1029 2853 1029 -0 1411 1729 3.021 2.623 1.792 + 12 2 5 3 30.32 63.97 65.00 64.81 94.95 89.60 0 46208 17713 4293 .0929 .0929 0.383 0.242 0.811 0 117.3 4093 0 0 200 4293 -1139 3154 1139 -0 1553 1889 3.016 2.636 1.799 + 12 2 5 4 30.17 63.92 65.00 64.81 94.93 89.59 0 46190 17759 4741 0.103 0.103 0.384 0.267 0.817 0 129.6 4520 0 0 221 4741 -1257 3483 1257 -0 1705 2063 3.010 2.651 1.809 + 12 2 5 5 30.02 63.91 65.00 64.80 94.91 89.58 0 46173 17806 5305 0.115 0.115 0.386 0.298 0.824 0 145.0 5058 0 0 247 5305 -1408 3897 1408 0 1894 2278 3.005 2.671 1.820 + 12 2 6 0 29.90 63.90 65.96 64.85 98.86 96.41 0 0 0 81080 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8804 42029 10125 1321 0 52290 0 0 0.806 + 12 2 6 1 29.78 67.39 66.50 65.68 95.77 93.39 0 46145 17880 43247 0.937 0.937 0.937 1.000 1.000 0 1183 41216 0 0 2018 43234 -7767 34764 8469 702 13737 15892 2.997 3.000 2.207 + 12 2 6 2 29.66 67.16 66.50 66.57 96.65 92.65 0 46131 17917 23749 0.515 0.515 0.515 1.000 1.000 0 649.9 22640 0 0 1109 23749 -5168 18581 5168 0 7445 8690 2.993 3.041 2.172 + 12 2 6 3 29.54 65.99 66.50 66.56 96.63 92.68 0 46117 17954 23812 0.516 0.516 0.516 1.000 1.000 0 651.8 22700 0 0 1112 23812 -5161 18651 5161 -0 7476 8724 2.989 3.037 2.172 + 12 2 6 4 29.42 66.19 66.50 66.41 96.47 92.48 0 46103 17991 23935 0.519 0.519 0.519 1.000 1.000 0 655.4 22817 0 0 1118 23935 -5324 18611 5324 0 7526 8781 2.984 3.032 2.153 + 12 2 6 5 29.30 66.41 66.50 66.44 96.49 92.25 0 46089 18029 22321 0.484 0.484 0.484 1.000 1.000 0 611.4 21278 0 0 1043 22321 -5110 17210 5110 0 7011 8191 2.980 3.035 2.137 + 12 2 7 0 29.57 66.52 67.11 66.48 100.49 98.07 0 0 0 104k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8588 42730 9423 835 0 52290 0 0 0.819 + 12 2 7 1 29.84 67.98 67.56 67.02 101.03 98.58 0 0 0 78026 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8719 42810 9344 625 0 52290 0 0 0.821 + 12 2 7 2 30.11 68.43 67.90 67.59 101.60 99.18 0 0 0 57928 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8511 43168 8986 475 0 52290 0 0 0.828 + 12 2 7 3 30.38 68.54 68.00 67.95 98.09 95.76 0 46215 17694 42308 0.915 0.915 0.915 1.000 1.000 0 1155 40322 0 0 1971 42292 -7109 35060 7233 124 13340 15448 3.018 3.023 2.290 + 12 2 7 4 30.65 68.28 68.00 68.05 98.21 95.56 0 46246 17611 36737 0.794 0.794 0.794 1.000 1.000 0 1003 35027 0 0 1711 36737 -6526 30211 6527 0 11519 13367 3.027 3.041 2.283 + 12 2 7 5 30.92 68.13 68.00 68.02 98.21 95.28 0 46278 17527 33265 0.719 0.719 0.719 1.000 1.000 0 907.4 31717 0 0 1548 33265 -6206 27059 6206 -0 10374 12059 3.037 3.057 2.270 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 246 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 68.48 68.00 68.01 98.31 94.98 0 46463 17035 29551 0.636 0.636 0.636 1.000 1.000 0 802.9 28181 0 0 1370 29551 -5870 23681 5870 -0 9014 10521 3.094 3.126 2.281 + 12 2 8 1 34.10 68.52 68.00 68.05 98.48 94.74 0 46649 16543 26134 0.560 0.560 0.560 1.000 1.000 0 707.2 24928 0 0 1207 26134 -5460 20675 5460 -0 7784 9127 3.152 3.203 2.300 + 12 2 8 2 35.69 68.63 68.00 68.06 98.61 94.38 0 46834 16052 22999 0.491 0.491 0.491 1.000 1.000 0 619.9 21942 0 0 1058 22999 -5124 17875 5124 0 6671 7865 3.213 3.289 2.313 + 12 2 8 3 37.28 68.68 68.00 68.09 98.75 94.01 0 47020 15561 20418 0.434 0.434 0.434 1.000 1.000 0 548.2 19483 0 0 935 20418 -4833 15585 4833 0 5751 6823 3.275 3.388 2.331 + 12 2 8 4 38.87 68.75 68.00 68.10 98.88 93.58 0 47205 15070 18193 0.385 0.385 0.385 1.000 1.000 0 486.5 17363 0 0 830 18193 -4586 13606 4586 0 4956 5923 3.339 3.503 2.352 + 12 2 8 5 40.46 68.80 68.00 68.12 99.02 93.10 0 47391 14579 16176 0.341 0.341 0.341 1.000 1.000 0 430.9 15441 0 0 735 16176 -4355 11821 4355 0 4238 5110 3.405 3.643 2.377 + 12 2 9 0 41.12 68.85 68.00 68.13 99.09 92.74 0 47468 14375 14993 0.316 0.316 0.316 1.000 1.000 0 398.7 14313 0 0 680 14993 -4210 10784 4210 -0 3844 4661 3.433 3.723 2.383 + 12 2 9 1 41.78 68.85 68.00 68.15 99.15 92.47 0 47545 14171 13510 0.284 0.284 0.298 0.953 0.988 0 358.7 12898 0 0 612 13510 -3916 9595 3916 -0 3276 4025 3.461 3.937 2.468 + 12 2 9 2 42.44 68.76 68.00 68.15 99.21 92.42 0 47622 13968 12006 0.252 0.252 0.293 0.860 0.965 0 318.3 11463 0 0 543 12006 -3509 8497 3509 0 2933 3613 3.490 3.908 2.444 + 12 2 9 3 43.10 68.61 68.00 68.14 99.25 92.34 0 47699 13764 10807 0.227 0.227 0.289 0.785 0.946 0 286.0 10319 0 0 488 10807 -3196 7611 3196 0 2646 3270 3.519 3.900 2.429 + 12 2 9 4 43.76 68.43 68.00 68.11 99.27 92.24 0 47776 13561 9637 0.202 0.202 0.284 0.711 0.928 0 254.6 9203 0 0 434 9637 -2891 6747 2891 0 2364 2935 3.549 3.894 2.411 + 12 2 9 5 44.42 68.16 68.00 68.08 99.29 92.12 0 47853 13357 8541 0.178 0.178 0.279 0.639 0.910 0 225.3 8156 0 0 384 8541 -2600 5941 2600 0 2095 2616 3.579 3.893 2.396 + 12 2 10 0 44.93 67.91 68.00 68.04 99.28 92.00 0 47912 13200 8177 0.171 0.171 0.276 0.619 0.905 0 215.4 7810 0 0 368 8177 -2526 5652 2526 0 1986 2490 3.602 3.932 2.401 + 12 2 10 1 45.44 67.79 68.00 67.99 99.28 91.87 0 47972 13043 7317 0.153 0.153 0.272 0.561 0.890 0 192.6 6989 0 0 329 7317 -2294 5024 2294 -0 1778 2243 3.626 3.931 2.385 + 12 2 10 2 45.95 67.49 68.00 67.97 99.29 91.77 0 48031 12885 6527 0.136 0.136 0.268 0.507 0.877 0 171.5 6234 0 0 293 6527 -2069 4458 2069 0 1584 2013 3.650 3.936 2.375 + 12 2 10 3 46.46 67.34 68.00 67.91 99.28 91.62 0 48091 12728 5771 0.120 0.120 0.265 0.453 0.863 0 151.5 5512 0 0 258 5771 -1859 3911 1859 0 1397 1792 3.674 3.945 2.362 + 12 2 10 4 46.97 67.09 68.00 67.88 99.28 91.50 0 48150 12571 5102 0.106 0.106 0.261 0.406 0.851 0 133.8 4874 0 0 228 5102 -1666 3437 1666 0 1230 1595 3.699 3.962 2.356 + 12 2 10 5 47.48 66.93 68.00 67.84 99.24 91.42 0 48154 12562 4414 .0917 .0917 0.261 0.351 0.838 0 115.7 4216 0 0 197 4414 -1452 2962 1452 -0 1080 1414 3.700 3.903 2.318 + 12 2 11 0 48.20 66.81 68.00 67.80 99.21 91.36 0 48154 12562 4791 .0995 .0995 0.261 0.381 0.845 0 125.6 4577 0 0 214 4791 -1583 3208 1583 -0 1162 1513 3.700 3.938 2.331 + 12 2 11 1 48.92 66.85 68.00 67.78 99.18 91.32 0 48154 12562 4267 .0886 .0886 0.261 0.340 0.835 0 111.9 4076 0 0 191 4267 -1416 2851 1416 -0 1048 1375 3.700 3.889 2.302 + 12 2 11 2 49.64 66.82 68.00 67.78 99.18 91.32 0 48154 12562 3720 .0772 .0772 0.261 0.296 0.824 0 97.5 3553 0 0 166 3720 -1234 2486 1234 -0 926 1229 3.700 3.839 2.276 + 12 2 11 3 50.36 66.74 68.00 67.77 99.17 91.30 0 48154 12562 3215 .0668 .0668 0.261 0.256 0.814 0 84.3 3072 0 0 144 3215 -1068 2147 1068 0 810 1090 3.700 3.792 2.251 + 12 2 11 4 51.08 66.67 68.00 67.75 99.16 91.27 0 48154 12562 2738 .0568 .0568 0.261 0.218 0.804 0 71.8 2615 0 0 122 2738 -912 1825 912 -0 698 957 3.700 3.748 2.225 + 12 2 11 5 51.80 66.59 68.00 67.74 99.14 91.24 0 48154 12562 2259 .0469 .0469 0.261 0.180 0.795 0 59.2 2158 0 0 101 2259 -755 1504 755 -0 583 820 3.700 3.703 2.200 + 12 2 12 0 52.70 66.48 68.00 67.72 99.12 91.21 0 48154 12562 1404 .0292 .0292 0.261 0.112 0.778 0 36.8 1341 0 0 63 1404 -470 934 470 0 370 433 3.700 3.624 2.157 + 12 2 12 1 53.60 66.29 68.00 67.70 99.10 91.17 0 48154 12562 870 .0181 .0181 0.261 .0692 0.767 0 22.8 831 0 0 39 870 -292 577 292 0 232 271 3.700 3.574 2.128 + 12 2 12 2 54.50 66.13 68.00 67.66 99.06 91.10 0 48154 12562 353 .0073 .0073 0.261 .0281 0.757 0 9.3 337 0 0 16 353 -119 234 119 0 96 111 3.700 3.527 2.097 + 12 2 12 3 55.40 65.95 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.86 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.81 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.78 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.73 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.68 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.66 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 65.62 68.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 65.58 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 65.53 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 65.48 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 65.44 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 65.39 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 65.35 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 65.30 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 65.24 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 65.20 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 65.14 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 65.08 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 65.02 68.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 64.99 68.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.94 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.88 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.82 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.77 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.66 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.59 68.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 247 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.54 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 64.41 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 64.33 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 64.27 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 64.21 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 64.04 68.00 67.23 98.63 90.26 0 48154 12562 175 .0036 .0036 0.261 .0140 0.753 0 4.6 167 0 0 8 175 -64 112 63 -0 48 56 3.700 3.510 2.014 + 12 2 18 0 53.00 63.96 68.00 67.17 98.57 90.22 0 48154 12562 1573 .0327 .0327 0.261 0.125 0.781 0 41.2 1502 0 0 70 1573 -571 1001 571 0 413 483 3.700 3.640 2.073 + 12 2 18 1 52.94 64.11 68.00 67.15 98.55 90.18 0 48154 12562 1723 .0358 .0358 0.261 0.137 0.784 0 45.2 1646 0 0 77 1723 -628 1096 628 0 451 528 3.700 3.654 2.076 + 12 2 18 2 52.88 63.97 68.00 67.17 98.58 90.23 0 48154 12562 2091 .0434 .0434 0.261 0.166 0.792 0 54.8 1997 0 0 94 2091 -759 1332 759 -0 542 635 3.700 3.688 2.097 + 12 2 18 3 52.82 63.95 68.00 67.15 98.56 90.19 0 48154 12562 2288 .0475 .0475 0.261 0.182 0.796 0 60.0 2186 0 0 102 2288 -833 1455 833 0 590 692 3.700 3.706 2.102 + 12 2 18 4 52.76 63.96 68.00 67.14 98.55 90.17 0 48154 12562 2507 .0521 .0521 0.261 0.200 0.800 0 65.7 2395 0 0 112 2507 -914 1593 914 0 643 755 3.700 3.726 2.111 + 12 2 18 5 52.70 63.83 68.00 67.14 98.55 90.17 0 48154 12562 2850 .0592 .0592 0.261 0.227 0.807 0 74.7 2723 0 0 127 2850 -1039 1811 1039 0 725 852 3.700 3.758 2.126 + 12 2 19 0 52.19 63.84 68.00 67.12 98.52 90.13 0 48154 12562 2833 .0588 .0588 0.261 0.226 0.806 0 74.3 2706 0 0 127 2833 -1036 1797 1036 0 720 847 3.700 3.756 2.121 + 12 2 19 1 51.68 63.73 68.00 67.12 98.52 90.13 0 48154 12562 3182 .0661 .0661 0.261 0.253 0.813 0 83.4 3040 0 0 142 3182 -1164 2018 1164 0 802 945 3.700 3.789 2.137 + 12 2 19 2 51.17 63.74 68.00 67.10 98.50 90.09 0 48154 12562 3437 .0714 .0714 0.261 0.274 0.818 0 90.1 3283 0 0 154 3437 -1261 2176 1261 0 861 1015 3.700 3.812 2.144 + 12 2 19 3 50.66 63.66 68.00 67.10 98.50 90.09 0 48154 12562 3795 .0788 .0788 0.261 0.302 0.826 0 99.5 3625 0 0 170 3795 -1392 2402 1392 0 943 1112 3.700 3.846 2.160 + 12 2 19 4 50.15 63.69 68.00 67.08 98.49 90.07 0 48154 12562 4037 .0838 .0838 0.261 0.321 0.830 0 105.8 3856 0 0 181 4037 -1484 2553 1484 0 997 1178 3.700 3.868 2.168 + 12 2 19 5 49.64 63.61 68.00 67.09 98.49 90.07 0 48154 12562 4388 .0911 .0911 0.261 0.349 0.837 0 115.0 4192 0 0 196 4388 -1613 2775 1613 0 1075 1271 3.700 3.901 2.184 + 12 2 20 0 49.13 63.61 68.00 67.07 98.48 90.05 0 48154 12562 4906 0.102 0.102 0.261 0.391 0.848 0 128.6 4687 0 0 219 4906 -1806 3101 1806 0 1187 1543 3.700 3.949 2.205 + 12 2 20 1 48.62 63.69 68.00 67.07 98.48 90.05 0 48154 12562 5263 0.109 0.109 0.261 0.419 0.855 0 138.0 5028 0 0 235 5263 -1938 3326 1938 0 1263 1635 3.700 3.982 2.220 + 12 2 20 2 48.11 63.78 68.00 67.09 98.49 90.07 0 48154 12562 5607 0.116 0.116 0.261 0.446 0.862 0 147.0 5357 0 0 251 5607 -2060 3547 2060 0 1335 1722 3.700 4.014 2.237 + 12 2 20 3 47.60 63.88 68.00 67.10 98.50 90.10 0 48154 12562 5862 0.122 0.122 0.261 0.467 0.867 0 153.7 5600 0 0 262 5862 -2150 3712 2150 -0 1387 1786 3.700 4.037 2.251 + 12 2 20 4 47.09 63.98 68.00 67.12 98.52 90.13 0 48154 12562 6172 0.128 0.128 0.261 0.491 0.873 0 161.8 5896 0 0 276 6172 -2258 3914 2258 0 1450 1863 3.700 4.066 2.268 + 12 2 20 5 46.58 64.14 68.00 67.14 98.51 90.22 0 48105 12691 6456 0.134 0.134 0.264 0.509 0.877 0 169.4 6167 0 0 289 6456 -2341 4116 2341 0 1532 1958 3.680 4.025 2.260 + 12 2 21 0 46.10 64.22 68.00 67.18 98.51 90.34 0 48049 12839 7088 0.148 0.148 0.267 0.552 0.888 0 186.2 6770 0 0 318 7088 -2541 4547 2541 -0 1689 2144 3.657 4.007 2.265 + 12 2 21 1 45.62 64.34 68.00 67.20 98.50 90.43 0 47993 12987 7389 0.154 0.154 0.271 0.569 0.892 0 194.3 7057 0 0 332 7389 -2623 4765 2623 -0 1781 2249 3.634 3.963 2.256 + 12 2 21 2 45.14 64.43 68.00 67.23 98.49 90.53 0 47937 13135 7673 0.160 0.160 0.274 0.584 0.896 0 202.1 7328 0 0 345 7673 -2695 4977 2695 0 1870 2351 3.612 3.919 2.247 + 12 2 21 3 44.66 64.51 68.00 67.25 98.48 90.63 0 47881 13283 7968 0.166 0.166 0.277 0.600 0.900 0 210.1 7609 0 0 358 7968 -2771 5197 2771 -0 1962 2457 3.590 3.878 2.239 + 12 2 21 4 44.18 64.60 68.00 67.27 98.46 90.72 0 47825 13431 8257 0.173 0.173 0.281 0.615 0.904 0 218.0 7886 0 0 372 8257 -2845 5413 2845 0 2054 2562 3.568 3.839 2.231 + 12 2 21 5 43.70 64.69 68.00 67.29 98.44 90.80 0 47769 13579 8535 0.179 0.179 0.284 0.629 0.907 0 225.6 8150 0 0 385 8535 -2912 5623 2912 0 2144 2666 3.546 3.801 2.223 + 12 2 22 0 43.28 64.78 68.00 67.31 98.43 90.88 0 47720 13709 9489 0.199 0.199 0.287 0.692 0.923 0 251.0 9060 0 0 428 9489 -3211 6277 3211 0 2370 2935 3.527 3.823 2.243 + 12 2 22 1 42.86 64.96 68.00 67.33 98.42 90.95 0 47671 13838 9782 0.205 0.205 0.290 0.707 0.927 0 259.0 9340 0 0 442 9782 -3282 6500 3282 0 2461 3040 3.509 3.795 2.239 + 12 2 22 2 42.44 65.08 68.00 67.37 98.43 91.06 0 47622 13968 10041 0.211 0.211 0.293 0.719 0.930 0 266.2 9587 0 0 454 10041 -3331 6711 3331 -0 2546 3137 3.490 3.766 2.237 + 12 2 22 3 42.02 65.17 68.00 67.40 98.42 91.15 0 47573 14097 10320 0.217 0.217 0.296 0.732 0.933 0 273.9 9853 0 0 467 10320 -3390 6930 3390 0 2635 3239 3.472 3.739 2.234 + 12 2 22 4 41.60 65.27 68.00 67.42 98.41 91.22 0 47524 14227 10589 0.223 0.223 0.299 0.744 0.936 0 281.3 10109 0 0 480 10589 -3448 7141 3448 -0 2723 3339 3.454 3.713 2.230 + 12 2 22 5 41.18 65.37 68.00 67.44 98.40 91.30 0 47475 14357 10824 0.228 0.228 0.302 0.754 0.938 0 287.8 10333 0 0 491 10824 -3492 7331 3492 0 2804 3431 3.436 3.685 2.225 + 12 2 23 0 41.27 65.46 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 63.99 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.65 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.44 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.32 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 63.15 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 63.06 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 63.00 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.82 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.73 66.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.56 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.48 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 248 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.43 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.30 66.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.25 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 62.16 66.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 62.15 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 62.04 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.97 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.92 66.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.91 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.83 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.73 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.63 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.53 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.44 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.33 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.23 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 61.12 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 61.02 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.91 65.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.80 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.69 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.58 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.47 65.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.35 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.24 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 60.12 65.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 60.00 65.00 64.15 94.18 88.42 0 46047 18140 1467 .0319 .0319 0.394 .0809 0.770 0 40.2 1399 0 0 69 1467 -439 1030 437 -2 568 773 2.968 2.462 1.617 + 12 3 5 3 28.64 60.12 65.00 64.10 94.11 88.38 0 46012 18233 3579 .0778 .0778 0.396 0.196 0.799 0 98.2 3412 0 0 168 3579 -1070 2509 1070 -0 1340 1644 2.958 2.545 1.664 + 12 3 5 4 28.34 60.38 65.00 64.12 94.10 88.41 0 45977 18326 4147 .0902 .0902 0.399 0.226 0.807 0 113.9 3953 0 0 194 4147 -1233 2915 1233 0 1544 1875 2.948 2.560 1.677 + 12 3 5 5 28.04 60.42 65.00 64.16 94.12 88.49 0 45942 18419 4662 0.101 0.101 0.401 0.253 0.813 0 128.1 4444 0 0 219 4662 -1373 3289 1373 0 1727 2082 2.938 2.572 1.690 + 12 3 6 0 28.07 60.44 65.95 64.39 98.40 95.76 0 0 0 82193 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9712 41128 11026 1314 0 52290 0 0 0.789 + 12 3 6 1 28.10 64.60 66.50 65.21 95.17 92.62 0 45949 18400 43496 0.946 0.947 0.946 1.000 1.000 0 1195 41445 0 0 2038 43483 -8657 34111 9371 715 14085 16260 2.940 2.942 2.116 + 12 3 6 2 28.13 64.32 66.50 66.10 96.06 91.70 0 45952 18391 23211 0.505 0.505 0.505 1.000 1.000 0 637.6 22123 0 0 1088 23210 -5644 17566 5644 0 7397 8621 2.941 2.991 2.070 + 12 3 6 3 28.16 62.92 66.50 66.09 96.06 91.78 0 45956 18382 23495 0.511 0.511 0.511 1.000 1.000 0 645.4 22394 0 0 1101 23495 -5662 17834 5662 0 7488 8726 2.942 2.991 2.076 + 12 3 6 4 28.19 63.18 66.50 65.92 95.89 91.65 0 45959 18372 24166 0.526 0.526 0.526 1.000 1.000 0 663.8 23033 0 0 1132 24166 -5917 18249 5917 0 7707 8976 2.943 2.989 2.065 + 12 3 6 5 28.22 63.49 66.50 65.94 95.92 91.44 0 45963 18363 22659 0.493 0.493 0.493 1.000 1.000 0 622.3 21597 0 0 1062 22659 -5691 16968 5691 -0 7208 8406 2.944 2.996 2.052 + 12 3 7 0 28.52 63.75 67.12 66.09 100.10 97.52 0 0 0 105k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9350 41951 10202 852 0 52290 0 0 0.804 + 12 3 7 1 28.82 65.45 67.58 66.66 100.67 98.06 0 0 0 77115 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9449 42062 10091 643 0 52290 0 0 0.807 + 12 3 7 2 29.12 65.91 67.94 67.27 101.28 98.72 0 0 0 55879 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9188 42472 9681 493 0 52290 0 0 0.814 + 12 3 7 3 29.42 66.06 68.00 67.63 97.70 95.06 0 46103 17991 39536 0.858 0.858 0.858 1.000 1.000 0 1083 37689 0 0 1847 39536 -7445 32020 7516 71 12593 14576 2.984 2.993 2.217 + 12 3 7 4 29.72 65.83 68.00 67.70 97.79 94.85 0 46138 17899 35228 0.764 0.764 0.764 1.000 1.000 0 963.9 33583 0 0 1644 35228 -6934 28294 6934 -0 11155 12936 2.995 3.011 2.211 + 12 3 7 5 30.02 65.85 68.00 67.66 97.77 94.52 0 46173 17806 31692 0.686 0.686 0.686 1.000 1.000 0 866.5 30214 0 0 1478 31692 -6567 25124 6567 -0 9976 11591 3.005 3.029 2.193 + 12 3 8 0 31.40 66.06 68.00 67.65 97.87 94.19 0 46334 17379 28154 0.608 0.608 0.608 1.000 1.000 0 767.1 26845 0 0 1309 28154 -6191 21963 6191 0 8692 10137 3.054 3.088 2.196 + 12 3 8 1 32.78 66.14 68.00 67.67 97.99 93.84 0 46495 16952 24765 0.533 0.533 0.533 1.000 1.000 0 672.4 23618 0 0 1147 24765 -5771 18994 5771 -0 7487 8770 3.103 3.155 2.200 + 12 3 8 2 34.16 66.25 68.00 67.66 98.09 93.43 0 46656 16525 21922 0.470 0.470 0.470 1.000 1.000 0 593.1 20910 0 0 1012 21922 -5433 16489 5433 -0 6478 7627 3.154 3.228 2.201 + 12 3 8 3 35.54 66.31 68.00 67.66 98.20 92.98 0 46817 16098 19447 0.415 0.415 0.415 1.000 1.000 0 524.4 18553 0 0 895 19447 -5126 14322 5126 0 5605 6636 3.207 3.310 2.204 + 12 3 8 4 36.92 66.40 68.00 67.66 98.30 92.49 0 46978 15672 17363 0.370 0.370 0.370 1.000 1.000 0 466.6 16566 0 0 796 17362 -4870 12492 4870 0 4866 5798 3.261 3.405 2.206 + 12 3 8 5 38.30 66.47 68.00 67.66 98.40 91.98 0 47139 15246 15575 0.330 0.330 0.330 1.000 1.000 0 416.9 14857 0 0 711 15569 -4638 10930 4638 -0 4227 5075 3.316 3.515 2.214 + 12 3 9 0 38.84 66.53 68.00 67.67 98.45 91.85 0 47202 15079 14451 0.306 0.306 0.319 0.958 0.990 0 386.5 13792 0 0 659 14451 -4375 10076 4375 0 3736 4532 3.338 3.692 2.292 + 12 3 9 1 39.38 66.54 68.00 67.68 98.50 91.83 0 47265 14912 12921 0.273 0.273 0.316 0.866 0.967 0 345.1 12333 0 0 589 12921 -3930 8991 3930 -0 3382 4107 3.360 3.646 2.264 + 12 3 9 2 39.92 66.37 68.00 67.68 98.55 91.80 0 47328 14745 11557 0.244 0.244 0.312 0.784 0.946 0 308.2 11031 0 0 526 11557 -3538 8019 3538 0 3056 3718 3.382 3.610 2.239 + 12 3 9 3 40.46 66.24 68.00 67.65 98.56 91.71 0 47391 14579 10303 0.217 0.217 0.308 0.707 0.927 0 274.4 9834 0 0 468 10303 -3189 7114 3189 0 2748 3353 3.405 3.579 2.212 + 12 3 9 4 41.00 66.07 68.00 67.63 98.58 91.63 0 47454 14412 9231 0.195 0.195 0.304 0.641 0.910 0 245.6 8812 0 0 419 9231 -2889 6342 2889 0 2476 3032 3.428 3.559 2.191 + 12 3 9 5 41.54 65.86 68.00 67.60 98.59 91.53 0 47517 14245 8212 0.173 0.173 0.300 0.576 0.894 0 218.2 7839 0 0 372 8212 -2601 5611 2601 0 2214 2723 3.451 3.541 2.170 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 249 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 65.80 68.00 67.56 98.61 91.40 0 47608 14005 8707 0.183 0.183 0.294 0.622 0.905 0 230.9 8313 0 0 394 8707 -2802 5905 2802 0 2274 2804 3.485 3.656 2.213 + 12 3 10 1 43.10 65.84 68.00 67.54 98.65 91.29 0 47699 13764 7934 0.166 0.166 0.289 0.576 0.894 0 210.0 7576 0 0 358 7934 -2587 5347 2587 0 2056 2551 3.519 3.685 2.215 + 12 3 10 2 43.88 65.85 68.00 67.55 98.71 91.23 0 47790 13524 7124 0.149 0.149 0.283 0.527 0.882 0 188.2 6802 0 0 321 7124 -2346 4778 2346 0 1832 2289 3.554 3.713 2.219 + 12 3 10 3 44.66 65.77 68.00 67.54 98.77 91.14 0 47881 13283 6378 0.133 0.133 0.277 0.480 0.870 0 168.2 6091 0 0 287 6378 -2124 4254 2124 0 1625 2048 3.590 3.749 2.225 + 12 3 10 4 45.44 65.76 68.00 67.52 98.81 91.02 0 47972 13043 5673 0.118 0.118 0.272 0.435 0.859 0 149.3 5419 0 0 255 5673 -1916 3757 1916 0 1429 1820 3.626 3.792 2.232 + 12 3 10 5 46.22 65.67 68.00 67.52 98.86 90.92 0 48063 12802 4952 0.103 0.103 0.266 0.387 0.847 0 130.1 4731 0 0 222 4952 -1694 3259 1694 -0 1233 1591 3.663 3.837 2.240 + 12 3 11 0 46.58 65.69 68.00 67.50 98.87 90.85 0 48105 12691 4871 0.101 0.101 0.264 0.384 0.846 0 127.8 4653 0 0 218 4871 -1679 3193 1679 0 1199 1553 3.680 3.882 2.253 + 12 3 11 1 46.94 65.80 68.00 67.50 98.90 90.80 0 48147 12580 4415 .0917 .0917 0.261 0.351 0.838 0 115.8 4217 0 0 197 4415 -1530 2885 1530 0 1083 1417 3.697 3.894 2.253 + 12 3 11 2 47.30 65.86 68.00 67.51 98.92 90.82 0 48154 12562 3958 .0822 .0822 0.261 0.315 0.829 0 103.7 3781 0 0 177 3958 -1369 2588 1369 0 979 1293 3.700 3.861 2.238 + 12 3 11 3 47.66 65.90 68.00 67.52 98.93 90.84 0 48154 12562 3527 .0732 .0732 0.261 0.281 0.820 0 92.5 3369 0 0 158 3527 -1219 2308 1219 -0 882 1176 3.700 3.821 2.220 + 12 3 11 4 48.02 65.94 68.00 67.53 98.94 90.85 0 48154 12562 3136 .0651 .0651 0.261 0.250 0.812 0 82.2 2996 0 0 140 3136 -1083 2053 1083 0 792 1068 3.700 3.784 2.204 + 12 3 11 5 48.38 65.91 68.00 67.54 98.94 90.86 0 48154 12562 2751 .0571 .0571 0.261 0.219 0.805 0 72.1 2628 0 0 123 2751 -949 1802 949 0 701 961 3.700 3.749 2.187 + 12 3 12 0 48.86 65.89 68.00 67.53 98.94 90.85 0 48154 12562 1917 .0398 .0398 0.261 0.153 0.788 0 50.2 1831 0 0 86 1917 -662 1255 662 0 499 721 3.700 3.671 2.148 + 12 3 12 1 49.34 65.72 68.00 67.53 98.94 90.85 0 48154 12562 1493 .0310 .0310 0.261 0.119 0.780 0 39.1 1426 0 0 67 1493 -515 978 515 0 393 596 3.700 3.632 2.128 + 12 3 12 2 49.82 65.60 68.00 67.50 98.91 90.80 0 48154 12562 1068 .0222 .0222 0.261 .0850 0.771 0 28.0 1020 0 0 48 1068 -370 698 370 -0 284 468 3.700 3.593 2.104 + 12 3 12 3 50.30 65.48 68.00 67.48 98.89 90.77 0 48154 12562 689 .0143 .0143 0.261 .0549 0.764 0 18.1 658 0 0 31 689 -239 450 239 -0 185 352 3.700 3.558 2.083 + 12 3 12 4 50.78 65.38 68.00 67.46 98.87 90.74 0 48154 12562 339 .0070 .0070 0.261 .0270 0.757 0 8.9 324 0 0 15 339 -118 221 118 0 92 244 3.700 3.525 2.064 + 12 3 12 5 51.26 65.28 68.00 67.44 98.85 90.71 0 48154 12562 24 .0005 .0005 0.261 .0019 0.750 0 0.6 23 0 0 1 24 -8 16 8 0 7 144 3.700 3.496 2.047 + 12 3 13 0 51.59 65.24 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 65.25 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 65.25 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 65.28 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 65.27 68.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 65.31 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 65.40 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 65.47 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 65.54 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 65.34 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 65.52 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 65.48 68.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 65.58 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 65.63 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 65.64 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 65.62 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 65.68 68.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 65.52 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 65.60 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 65.61 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 65.62 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 65.66 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 65.67 68.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 65.69 68.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.72 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 65.54 68.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.74 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 65.35 68.00 67.53 98.93 90.83 0 48154 12562 1536 .0319 .0319 0.261 0.122 0.781 0 40.3 1467 0 0 69 1536 -532 1005 531 -1 403 472 3.700 3.636 2.128 + 12 3 17 4 49.49 65.89 68.00 67.45 98.85 90.72 0 48154 12562 3066 .0637 .0637 0.261 0.244 0.811 0 80.4 2929 0 0 137 3066 -1069 1996 1069 0 775 912 3.700 3.778 2.188 + 12 3 17 5 49.10 65.98 68.00 67.54 98.94 90.86 0 48154 12562 3436 .0714 .0714 0.261 0.274 0.818 0 90.1 3282 0 0 154 3436 -1185 2251 1185 0 861 1015 3.700 3.812 2.219 + 12 3 18 0 48.05 66.04 68.00 67.56 98.96 90.91 0 48154 12562 3423 .0711 .0711 0.261 0.273 0.818 0 89.7 3270 0 0 153 3423 -1176 2247 1176 0 858 1148 3.700 3.811 2.222 + 12 3 18 1 47.00 66.10 68.00 67.57 98.98 90.93 0 48154 12562 4008 .0832 .0832 0.261 0.319 0.830 0 105.1 3829 0 0 179 4008 -1375 2634 1375 0 991 1306 3.700 3.865 2.251 + 12 3 18 2 45.95 66.25 68.00 67.59 98.91 91.08 0 48031 12885 4565 .0950 .0950 0.268 0.354 0.839 0 120.0 4360 0 0 205 4565 -1537 3028 1537 0 1158 1499 3.650 3.765 2.222 + 12 3 18 3 44.90 66.41 68.00 67.62 98.86 91.25 0 47909 13209 5099 0.106 0.106 0.276 0.386 0.846 0 134.3 4869 0 0 229 5099 -1683 3415 1683 -0 1325 1691 3.601 3.675 2.197 + 12 3 18 4 43.85 66.62 68.00 67.65 98.82 91.42 0 47786 13533 5664 0.119 0.119 0.283 0.419 0.855 0 149.6 5408 0 0 255 5664 -1833 3831 1833 0 1504 1896 3.553 3.596 2.178 + 12 3 18 5 42.80 66.85 68.00 67.69 98.78 91.59 0 47664 13857 6222 0.131 0.131 0.291 0.449 0.862 0 164.8 5940 0 0 281 6222 -1972 4250 1972 0 1685 2103 3.506 3.525 2.161 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 250 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.95 68.00 67.73 98.81 91.67 0 47646 13903 6282 0.132 0.132 0.292 0.452 0.863 0 166.4 5998 0 0 284 6282 -1976 4306 1976 0 1707 2127 3.499 3.514 2.163 + 12 3 19 1 42.50 66.95 68.00 67.76 98.82 91.72 0 47629 13949 6539 0.137 0.137 0.293 0.469 0.867 0 173.3 6243 0 0 296 6539 -2045 4494 2045 0 1775 2207 3.493 3.518 2.171 + 12 3 19 2 42.35 67.06 68.00 67.76 98.81 91.74 0 47611 13996 6766 0.142 0.142 0.294 0.483 0.871 0 179.4 6460 0 0 306 6766 -2109 4657 2109 0 1836 2278 3.486 3.519 2.174 + 12 3 19 3 42.20 67.02 68.00 67.78 98.82 91.79 0 47594 14042 7037 0.148 0.148 0.295 0.501 0.875 0 186.6 6718 0 0 318 7037 -2182 4855 2182 0 1907 2362 3.480 3.524 2.182 + 12 3 19 4 42.05 67.06 68.00 67.78 98.81 91.81 0 47576 14088 7225 0.152 0.152 0.296 0.513 0.878 0 191.7 6898 0 0 327 7225 -2236 4990 2236 0 1959 2422 3.473 3.522 2.183 + 12 3 19 5 41.90 67.00 68.00 67.79 98.81 91.84 0 47559 14134 7478 0.157 0.157 0.297 0.529 0.882 0 198.5 7139 0 0 339 7478 -2305 5173 2305 -0 2025 2500 3.467 3.525 2.188 + 12 3 20 0 41.60 66.97 68.00 67.78 98.78 91.85 0 47524 14227 7876 0.166 0.166 0.299 0.554 0.888 0 209.2 7520 0 0 357 7876 -2420 5456 2420 0 2134 2627 3.454 3.524 2.190 + 12 3 20 1 41.30 67.06 68.00 67.78 98.75 91.88 0 47489 14320 8054 0.170 0.170 0.302 0.562 0.891 0 214.1 7688 0 0 365 8054 -2465 5589 2465 -0 2192 2694 3.441 3.507 2.185 + 12 3 20 2 41.00 66.97 68.00 67.80 98.75 91.93 0 47454 14412 8354 0.176 0.176 0.304 0.580 0.895 0 222.2 7975 0 0 379 8354 -2540 5815 2540 0 2279 2795 3.428 3.499 2.187 + 12 3 20 3 40.70 67.00 68.00 67.79 98.71 91.94 0 47419 14505 8516 0.180 0.180 0.306 0.587 0.897 0 226.7 8130 0 0 387 8516 -2582 5934 2582 0 2335 2858 3.415 3.482 2.181 + 12 3 20 4 40.40 66.90 68.00 67.79 98.70 91.98 0 47384 14597 8819 0.186 0.186 0.308 0.604 0.901 0 235.0 8419 0 0 401 8819 -2660 6159 2660 -0 2423 2960 3.402 3.475 2.182 + 12 3 20 5 40.10 66.91 68.00 67.78 98.66 91.99 0 47349 14690 8957 0.189 0.189 0.310 0.610 0.902 0 238.8 8549 0 0 407 8957 -2695 6261 2695 0 2473 3017 3.390 3.457 2.174 + 12 3 21 0 40.43 66.86 68.00 67.78 98.69 91.96 0 47387 14588 9402 0.198 0.198 0.308 0.644 0.911 0 250.5 8974 0 0 427 9402 -2841 6561 2841 0 2552 3116 3.404 3.516 2.202 + 12 3 21 1 40.76 66.83 68.00 67.78 98.71 91.93 0 47426 14486 9494 0.200 0.200 0.305 0.655 0.914 0 252.7 9063 0 0 431 9494 -2884 6609 2884 0 2550 3118 3.418 3.553 2.217 + 12 3 21 2 41.09 66.77 68.00 67.77 98.73 91.89 0 47464 14384 9567 0.202 0.202 0.303 0.665 0.916 0 254.4 9133 0 0 434 9567 -2921 6646 2921 0 2544 3114 3.432 3.590 2.232 + 12 3 21 3 41.42 66.70 68.00 67.76 98.74 91.85 0 47503 14282 9620 0.203 0.203 0.301 0.674 0.918 0 255.6 9184 0 0 436 9620 -2954 6666 2954 -0 2532 3105 3.446 3.627 2.246 + 12 3 21 4 41.75 66.66 68.00 67.75 98.76 91.80 0 47541 14181 9661 0.203 0.203 0.298 0.681 0.920 0 256.5 9224 0 0 438 9661 -2986 6676 2986 0 2518 3092 3.460 3.664 2.259 + 12 3 21 5 42.08 66.56 68.00 67.74 98.77 91.76 0 47580 14079 9679 0.203 0.203 0.296 0.687 0.922 0 256.8 9241 0 0 438 9679 -3008 6671 3008 0 2498 3072 3.474 3.700 2.272 + 12 3 22 0 42.05 66.64 68.00 67.72 98.75 91.74 0 47576 14088 10426 0.219 0.219 0.296 0.740 0.935 0 276.6 9954 0 0 472 10426 -3247 7179 3247 0 2654 3263 3.473 3.750 2.296 + 12 3 22 1 42.02 66.77 68.00 67.74 98.76 91.76 0 47573 14097 10576 0.222 0.222 0.296 0.750 0.938 0 280.6 10097 0 0 479 10576 -3287 7289 3287 0 2687 3303 3.472 3.757 2.302 + 12 3 22 2 41.99 66.81 68.00 67.76 98.78 91.80 0 47569 14107 10703 0.225 0.225 0.297 0.759 0.940 0 284.0 10219 0 0 485 10703 -3313 7390 3313 0 2716 3337 3.471 3.763 2.309 + 12 3 22 3 41.96 66.82 68.00 67.77 98.79 91.82 0 47566 14116 10837 0.228 0.228 0.297 0.768 0.942 0 287.6 10346 0 0 491 10837 -3348 7489 3348 -0 2745 3372 3.469 3.769 2.314 + 12 3 22 4 41.93 66.84 68.00 67.77 98.79 91.83 0 47562 14125 10972 0.231 0.231 0.297 0.777 0.944 0 291.2 10475 0 0 497 10972 -3387 7585 3387 0 2775 3408 3.468 3.775 2.319 + 12 3 22 5 41.90 67.08 68.00 67.78 98.79 91.84 0 47559 14134 10973 0.231 0.231 0.297 0.776 0.944 0 291.3 10476 0 0 497 10973 -3383 7590 3383 0 2777 3411 3.467 3.772 2.318 + 12 3 23 0 41.51 67.18 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.76 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.40 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.42 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 65.31 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 65.23 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 65.14 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 64.99 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.93 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.83 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.73 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.59 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.55 66.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.44 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.42 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.32 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 64.19 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 64.07 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.96 66.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.84 66.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.73 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.61 65.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.49 65.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.37 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 251 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 63.25 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 63.13 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 63.01 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.88 65.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.76 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.63 65.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.50 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.37 65.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 62.25 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 62.12 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.97 65.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.83 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.70 65.00 64.46 94.57 88.91 0 46169 17815 553 .0120 .0120 0.386 .0311 0.758 0 15.1 528 0 0 26 553 -159 396 158 -1 215 377 3.004 2.454 1.642 + 12 4 5 1 29.96 61.65 65.00 64.40 94.51 88.85 0 46166 17824 3065 .0664 .0664 0.386 0.172 0.793 0 83.8 2922 0 0 143 3065 -880 2185 880 0 1138 1418 3.003 2.567 1.705 + 12 4 5 2 29.93 61.91 65.00 64.39 94.49 88.83 0 46162 17834 3470 .0752 .0752 0.386 0.195 0.799 0 94.9 3308 0 0 162 3470 -998 2472 998 -0 1280 1579 3.002 2.584 1.714 + 12 4 5 3 29.90 61.90 65.00 64.43 94.53 88.89 0 46159 17843 3873 .0839 .0839 0.387 0.217 0.804 0 105.9 3692 0 0 181 3873 -1107 2766 1107 0 1419 1736 3.001 2.601 1.729 + 12 4 5 4 29.87 61.87 65.00 64.43 94.53 88.89 0 46155 17852 4292 .0930 .0930 0.387 0.240 0.810 0 117.4 4091 0 0 200 4292 -1227 3065 1227 0 1562 1899 3.000 2.619 1.739 + 12 4 5 5 29.84 61.87 65.00 64.42 94.52 88.88 0 46152 17861 4724 0.102 0.102 0.387 0.265 0.816 0 129.2 4504 0 0 220 4724 -1352 3373 1352 0 1707 2064 2.999 2.638 1.749 + 12 4 6 0 29.72 61.87 65.96 64.58 98.59 96.03 0 0 0 81589 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9333 41500 10654 1321 0 52290 0 0 0.796 + 12 4 6 1 29.60 65.85 66.50 65.40 95.48 92.98 0 46124 17936 43140 0.935 0.935 0.935 1.000 1.000 0 1180 41111 0 0 2014 43124 -8263 34161 8964 700 13730 15880 2.991 2.994 2.170 + 12 4 6 2 29.48 65.53 66.50 66.30 96.37 92.13 0 46110 17973 23309 0.506 0.506 0.506 1.000 1.000 0 638.1 22221 0 0 1089 23309 -5428 17881 5428 0 7318 8543 2.987 3.037 2.127 + 12 4 6 3 29.36 64.22 66.50 66.29 96.35 92.22 0 46096 18010 23773 0.516 0.516 0.516 1.000 1.000 0 651.0 22662 0 0 1111 23772 -5471 18302 5471 0 7478 8725 2.982 3.030 2.131 + 12 4 6 4 29.24 64.46 66.50 66.12 96.18 92.10 0 46082 18047 24504 0.532 0.532 0.532 1.000 1.000 0 671.3 23359 0 0 1145 24504 -5721 18784 5721 0 7727 9008 2.978 3.023 2.117 + 12 4 6 5 29.12 64.74 66.50 66.15 96.20 91.89 0 46068 18084 22941 0.498 0.498 0.498 1.000 1.000 0 628.6 21869 0 0 1072 22941 -5496 17445 5496 0 7228 8437 2.974 3.026 2.102 + 12 4 7 0 29.42 64.97 67.10 66.26 100.27 97.75 0 0 0 105k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9026 42300 9853 828 0 52290 0 0 0.811 + 12 4 7 1 29.72 66.59 67.54 66.81 100.82 98.28 0 0 0 79137 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9127 42413 9741 614 0 52290 0 0 0.813 + 12 4 7 2 30.02 67.03 67.88 67.39 101.40 98.90 0 0 0 59291 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8879 42811 9343 464 0 52290 0 0 0.821 + 12 4 7 3 30.32 67.17 68.00 67.74 97.88 95.55 0 46208 17713 43917 0.950 0.950 0.950 1.000 1.000 0 1200 41861 0 0 2046 43907 -7628 36123 7784 156 13869 16052 3.016 3.018 2.270 + 12 4 7 4 30.62 67.09 68.00 67.86 98.02 95.33 0 46243 17620 37710 0.815 0.815 0.815 1.000 1.000 0 1029 35954 0 0 1756 37710 -6954 30757 6954 0 11835 13728 3.026 3.038 2.263 + 12 4 7 5 30.92 67.05 68.00 67.85 98.03 95.09 0 46278 17527 34339 0.742 0.742 0.742 1.000 1.000 0 936.7 32740 0 0 1598 34339 -6594 27745 6594 0 10717 12452 3.037 3.055 2.253 + 12 4 8 0 32.18 67.24 68.00 67.84 98.12 94.80 0 46425 17137 30586 0.659 0.659 0.659 1.000 1.000 0 831.7 29167 0 0 1419 30586 -6220 24366 6220 -0 9377 10932 3.082 3.111 2.257 + 12 4 8 1 33.44 67.31 68.00 67.86 98.23 94.54 0 46572 16748 27272 0.586 0.586 0.586 1.000 1.000 0 739.2 26011 0 0 1261 27272 -5828 21444 5828 0 8203 9601 3.128 3.171 2.266 + 12 4 8 2 34.70 67.42 68.00 67.86 98.33 94.19 0 46719 16358 24214 0.518 0.518 0.518 1.000 1.000 0 654.3 23097 0 0 1116 24214 -5482 18732 5482 -0 7134 8387 3.175 3.238 2.270 + 12 4 8 3 35.96 67.47 68.00 67.88 98.44 93.92 0 46866 15969 22084 0.471 0.471 0.471 1.000 1.000 0 594.8 21069 0 0 1015 22084 -5229 16854 5229 0 6369 7520 3.223 3.308 2.283 + 12 4 8 4 37.22 67.58 68.00 67.88 98.54 93.64 0 47013 15579 20320 0.432 0.432 0.432 1.000 1.000 0 545.6 19389 0 0 931 20320 -5026 15294 5026 0 5727 6794 3.272 3.386 2.297 + 12 4 8 5 38.48 67.67 68.00 67.90 98.65 93.41 0 47160 15190 18937 0.402 0.402 0.402 1.000 1.000 0 506.9 18072 0 0 865 18937 -4856 14080 4856 0 5208 6209 3.323 3.470 2.319 + 12 4 9 0 39.11 67.77 68.00 67.91 98.72 93.38 0 47233 14996 18590 0.394 0.394 0.394 1.000 1.000 0 496.8 17742 0 0 848 18590 -4804 13786 4804 0 5053 6037 3.349 3.511 2.336 + 12 4 9 1 39.74 67.83 68.00 67.93 98.78 93.22 0 47307 14801 17765 0.376 0.376 0.376 1.000 1.000 0 474.0 16956 0 0 809 17765 -4694 13071 4694 0 4759 5704 3.375 3.563 2.348 + 12 4 9 2 40.37 67.83 68.00 67.94 98.84 93.08 0 47380 14607 17104 0.361 0.361 0.361 1.000 1.000 0 455.7 16326 0 0 777 17103 -4608 12496 4608 -0 4514 5428 3.401 3.617 2.361 + 12 4 9 3 41.00 67.81 68.00 67.94 98.89 92.93 0 47454 14412 16493 0.348 0.348 0.348 1.000 1.000 0 438.7 15744 0 0 749 16493 -4535 11958 4535 -0 4286 5171 3.428 3.673 2.375 + 12 4 9 4 41.63 67.71 68.00 67.95 98.94 92.80 0 47527 14218 15980 0.336 0.336 0.336 1.000 1.000 0 424.4 15256 0 0 724 15980 -4474 11506 4474 -0 4087 4948 3.455 3.732 2.391 + 12 4 9 5 42.26 67.81 68.00 67.93 98.98 92.62 0 47601 14023 15435 0.324 0.324 0.324 1.000 1.000 0 409.3 14737 0 0 698 15435 -4419 11016 4419 0 3881 4716 3.482 3.797 2.406 + 12 4 10 0 42.41 67.89 68.00 67.95 99.01 92.69 0 47618 13977 15529 0.326 0.326 0.326 1.000 1.000 0 411.7 14826 0 0 702 15529 -4416 11113 4416 -0 3895 4734 3.489 3.806 2.417 + 12 4 10 1 42.56 67.93 68.00 67.97 99.03 92.61 0 47636 13931 15219 0.319 0.319 0.319 1.000 1.000 0 403.3 14530 0 0 688 15218 -4367 10852 4367 0 3795 4619 3.495 3.829 2.421 + 12 4 10 2 42.71 67.95 68.00 67.98 99.05 92.53 0 47653 13884 14932 0.313 0.313 0.313 1.000 1.000 0 395.6 14257 0 0 675 14932 -4324 10608 4324 0 3701 4513 3.502 3.852 2.424 + 12 4 10 3 42.86 67.96 68.00 67.98 99.07 92.44 0 47671 13838 14635 0.307 0.307 0.307 1.000 1.000 0 387.6 13974 0 0 661 14635 -4281 10354 4281 -0 3605 4403 3.509 3.876 2.427 + 12 4 10 4 43.01 68.16 68.00 67.99 99.09 92.29 0 47688 13792 14220 0.298 0.298 0.298 1.000 1.000 0 376.4 13578 0 0 642 14220 -4226 9995 4226 0 3476 4255 3.515 3.906 2.427 + 12 4 10 5 43.16 68.26 68.00 68.02 99.14 92.20 0 47706 13746 13871 0.291 0.291 0.291 1.000 1.000 0 367.0 13242 0 0 626 13868 -4159 9709 4159 -0 3364 4127 3.522 3.936 2.433 + 12 4 11 0 43.49 68.21 68.00 68.04 99.18 92.15 0 47744 13644 13309 0.279 0.279 0.286 0.975 0.994 0 351.9 12709 0 0 600 13309 -4018 9291 4018 0 3070 3807 3.537 4.140 2.532 + 12 4 11 1 43.82 68.41 68.00 68.04 99.20 92.12 0 47783 13542 12715 0.266 0.266 0.283 0.939 0.985 0 335.9 12142 0 0 573 12715 -3857 8858 3857 0 2933 3642 3.552 4.140 2.527 + 12 4 11 2 44.15 68.39 68.00 68.08 99.26 92.15 0 47821 13440 12248 0.256 0.256 0.281 0.911 0.978 0 323.3 11696 0 0 552 12248 -3713 8534 3713 -0 2818 3506 3.567 4.150 2.533 + 12 4 11 3 44.48 68.50 68.00 68.08 99.29 92.12 0 47860 13339 11668 0.244 0.244 0.279 0.875 0.969 0 307.8 11143 0 0 525 11668 -3554 8114 3554 0 2684 3345 3.582 4.152 2.529 + 12 4 11 4 44.81 68.45 68.00 68.10 99.34 92.12 0 47898 13237 11199 0.234 0.234 0.276 0.846 0.962 0 295.2 10696 0 0 504 11199 -3417 7782 3417 0 2570 3210 3.597 4.162 2.532 + 12 4 11 5 45.14 68.67 68.00 68.09 99.35 92.08 0 47937 13135 10608 0.221 0.221 0.274 0.808 0.952 0 279.3 10131 0 0 477 10608 -3255 7352 3255 0 2434 3047 3.612 4.163 2.526 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 252 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 68.73 68.00 68.13 99.40 92.12 0 47954 13089 9598 0.200 0.200 0.273 0.733 0.933 0 252.7 9167 0 0 431 9598 -2936 6662 2936 0 2235 2803 3.619 4.101 2.499 + 12 4 12 1 45.44 68.64 68.00 68.14 99.43 92.13 0 47972 13043 8989 0.187 0.187 0.272 0.689 0.922 0 236.5 8585 0 0 404 8989 -2750 6239 2750 -0 2108 2648 3.626 4.072 2.484 + 12 4 12 2 45.59 68.50 68.00 68.13 99.42 92.08 0 47989 12996 8356 0.174 0.174 0.271 0.643 0.911 0 219.8 7981 0 0 375 8356 -2569 5787 2569 0 1975 2487 3.633 4.041 2.463 + 12 4 12 3 45.74 68.34 68.00 68.11 99.41 92.04 0 48007 12950 7774 0.162 0.162 0.270 0.600 0.900 0 204.4 7425 0 0 349 7774 -2403 5371 2403 0 1850 2335 3.640 4.013 2.443 + 12 4 12 4 45.89 68.45 68.00 68.08 99.40 91.97 0 48024 12904 7250 0.151 0.151 0.269 0.562 0.890 0 190.6 6924 0 0 325 7250 -2255 4994 2255 0 1735 2197 3.647 3.990 2.424 + 12 4 12 5 46.04 68.41 68.00 68.10 99.43 91.98 0 48042 12858 6814 0.142 0.142 0.268 0.530 0.882 0 179.0 6509 0 0 305 6814 -2120 4694 2120 -0 1638 2080 3.654 3.974 2.416 + 12 4 13 0 46.40 68.18 68.00 68.09 99.45 91.93 0 48084 12747 6019 0.125 0.125 0.265 0.472 0.868 0 158.0 5750 0 0 270 6019 -1885 4134 1885 0 1453 1859 3.671 3.958 2.400 + 12 4 13 1 46.76 68.08 68.00 68.05 99.44 91.83 0 48126 12636 5498 0.114 0.114 0.263 0.435 0.859 0 144.2 5252 0 0 246 5498 -1742 3757 1742 0 1324 1707 3.688 3.966 2.392 + 12 4 13 2 47.12 68.03 68.00 68.03 99.44 91.76 0 48154 12562 4994 0.104 0.104 0.261 0.398 0.849 0 130.9 4771 0 0 223 4994 -1593 3401 1593 0 1206 1566 3.700 3.957 2.380 + 12 4 13 3 47.48 67.97 68.00 68.02 99.43 91.74 0 48154 12562 4619 .0959 .0959 0.261 0.368 0.842 0 121.1 4412 0 0 207 4619 -1476 3143 1476 0 1125 1468 3.700 3.922 2.360 + 12 4 13 4 47.84 67.91 68.00 68.01 99.41 91.72 0 48154 12562 4407 .0915 .0915 0.261 0.351 0.838 0 115.5 4210 0 0 197 4407 -1411 2996 1411 0 1079 1412 3.700 3.902 2.348 + 12 4 13 5 48.20 67.85 68.00 68.00 99.40 91.70 0 48154 12562 4240 .0881 .0881 0.261 0.338 0.834 0 111.2 4050 0 0 190 4240 -1360 2880 1360 0 1042 1368 3.700 3.887 2.338 + 12 4 14 0 48.47 67.83 68.00 67.99 99.39 91.69 0 48154 12562 4267 .0886 .0886 0.261 0.340 0.835 0 111.9 4076 0 0 191 4267 -1371 2896 1371 -0 1048 1375 3.700 3.889 2.338 + 12 4 14 1 48.74 67.75 68.00 67.98 99.39 91.68 0 48154 12562 4299 .0893 .0893 0.261 0.342 0.836 0 112.7 4106 0 0 192 4299 -1382 2917 1382 -0 1055 1384 3.700 3.892 2.339 + 12 4 14 2 49.01 67.79 68.00 67.97 99.37 91.66 0 48154 12562 4253 .0883 .0883 0.261 0.339 0.835 0 111.5 4063 0 0 190 4253 -1370 2883 1370 0 1045 1372 3.700 3.888 2.334 + 12 4 14 3 49.28 67.84 68.00 67.97 99.38 91.66 0 48154 12562 4102 .0852 .0852 0.261 0.327 0.832 0 107.5 3919 0 0 183 4102 -1321 2782 1321 0 1012 1332 3.700 3.874 2.328 + 12 4 14 4 49.55 67.76 68.00 67.98 99.39 91.68 0 48154 12562 3913 .0813 .0813 0.261 0.311 0.828 0 102.6 3738 0 0 175 3913 -1258 2655 1258 0 969 1281 3.700 3.857 2.320 + 12 4 14 5 49.82 67.78 68.00 67.97 99.37 91.65 0 48154 12562 3681 .0764 .0764 0.261 0.293 0.823 0 96.5 3517 0 0 165 3681 -1186 2495 1186 0 917 1218 3.700 3.835 2.307 + 12 4 15 0 49.67 67.79 68.00 67.97 99.37 91.65 0 48154 12562 2539 .0527 .0527 0.261 0.202 0.801 0 66.6 2425 0 0 114 2539 -818 1721 818 -0 650 900 3.700 3.729 2.253 + 12 4 15 1 49.52 67.76 68.00 67.97 99.37 91.65 0 48154 12562 2245 .0466 .0466 0.261 0.179 0.795 0 58.9 2145 0 0 100 2245 -723 1522 723 0 579 816 3.700 3.702 2.239 + 12 4 15 2 49.37 67.75 68.00 67.96 99.36 91.63 0 48154 12562 2012 .0418 .0418 0.261 0.160 0.790 0 52.7 1922 0 0 90 2012 -649 1363 649 0 522 749 3.700 3.680 2.226 + 12 4 15 3 49.22 67.68 68.00 67.95 99.36 91.62 0 48154 12562 2165 .0450 .0450 0.261 0.172 0.793 0 56.7 2068 0 0 97 2165 -699 1465 699 0 560 793 3.700 3.694 2.232 + 12 4 15 4 49.07 67.66 68.00 67.94 99.35 91.60 0 48154 12562 2667 .0554 .0554 0.261 0.212 0.803 0 69.9 2548 0 0 119 2667 -863 1804 863 0 681 937 3.700 3.741 2.254 + 12 4 15 5 48.92 67.86 68.00 67.94 99.34 91.59 0 48154 12562 3165 .0657 .0657 0.261 0.252 0.813 0 83.0 3024 0 0 142 3165 -1025 2140 1025 -0 798 1076 3.700 3.787 2.277 + 12 4 16 0 48.59 67.89 68.00 67.97 99.37 91.65 0 48154 12562 4442 .0922 .0922 0.261 0.354 0.838 0 116.4 4243 0 0 199 4442 -1432 3010 1432 0 1086 1422 3.700 3.906 2.342 + 12 4 16 1 48.26 68.31 68.00 67.98 99.38 91.66 0 48154 12562 5080 0.105 0.105 0.261 0.404 0.851 0 133.2 4853 0 0 227 5080 -1635 3445 1635 0 1224 1588 3.700 3.965 2.374 + 12 4 16 2 47.93 68.35 68.00 68.05 99.46 91.78 0 48154 12562 5675 0.118 0.118 0.261 0.452 0.863 0 148.8 5421 0 0 254 5675 -1807 3868 1807 -0 1349 1739 3.700 4.020 2.414 + 12 4 16 3 47.60 68.46 68.00 68.06 99.47 91.81 0 48154 12562 6211 0.129 0.129 0.261 0.494 0.874 0 162.8 5933 0 0 278 6211 -1972 4238 1972 0 1458 1872 3.700 4.070 2.442 + 12 4 16 4 47.27 68.55 68.00 68.09 99.49 91.85 0 48154 12562 6642 0.138 0.138 0.261 0.529 0.882 0 174.1 6345 0 0 297 6642 -2102 4541 2102 0 1544 1978 3.700 4.110 2.466 + 12 4 16 5 46.94 68.56 68.00 68.11 99.51 91.90 0 48147 12580 7020 0.146 0.146 0.261 0.558 0.890 0 184.1 6706 0 0 314 7020 -2211 4809 2211 -0 1622 2072 3.697 4.135 2.484 + 12 4 17 0 46.79 68.70 68.00 68.11 99.50 91.92 0 48129 12627 7334 0.152 0.152 0.262 0.581 0.895 0 192.3 7005 0 0 328 7334 -2303 5031 2303 -0 1693 2157 3.690 4.138 2.489 + 12 4 17 1 46.64 68.79 68.00 68.14 99.52 91.99 0 48112 12673 7573 0.157 0.157 0.263 0.598 0.899 0 198.7 7234 0 0 339 7573 -2362 5211 2362 0 1749 2225 3.683 4.136 2.496 + 12 4 17 2 46.49 68.92 68.00 68.16 99.52 92.04 0 48094 12719 7757 0.161 0.161 0.264 0.610 0.902 0 203.6 7410 0 0 347 7757 -2406 5351 2406 0 1795 2279 3.676 4.128 2.498 + 12 4 17 3 46.34 68.99 68.00 68.19 99.54 92.10 0 48077 12765 7987 0.166 0.166 0.266 0.626 0.906 0 209.7 7629 0 0 358 7987 -2461 5526 2461 -0 1850 2344 3.668 4.124 2.503 + 12 4 17 4 46.19 69.12 68.00 68.20 99.54 92.15 0 48059 12811 8156 0.170 0.170 0.267 0.637 0.909 0 214.2 7790 0 0 365 8156 -2500 5655 2500 0 1893 2395 3.661 4.115 2.504 + 12 4 17 5 46.04 69.19 68.00 68.23 99.56 92.21 0 48042 12858 8376 0.174 0.174 0.268 0.651 0.913 0 220.1 8000 0 0 375 8376 -2551 5825 2551 0 1946 2458 3.654 4.111 2.509 + 12 4 18 0 45.47 69.32 68.00 68.24 99.53 92.29 0 47975 13033 8134 0.170 0.170 0.272 0.624 0.906 0 214.0 7769 0 0 365 8134 -2450 5684 2450 0 1940 2442 3.627 4.004 2.466 + 12 4 18 1 44.90 69.34 68.00 68.26 99.51 92.39 0 47909 13209 8389 0.175 0.175 0.276 0.635 0.909 0 221.0 8012 0 0 377 8389 -2495 5894 2495 -0 2031 2545 3.601 3.945 2.448 + 12 4 18 2 44.33 69.45 68.00 68.27 99.47 92.46 0 47842 13385 8655 0.181 0.181 0.280 0.647 0.912 0 228.4 8265 0 0 390 8655 -2549 6106 2549 -0 2125 2651 3.575 3.890 2.429 + 12 4 18 3 43.76 69.58 68.00 68.28 99.44 92.55 0 47776 13561 8914 0.187 0.187 0.284 0.657 0.914 0 235.5 8512 0 0 402 8914 -2593 6321 2593 0 2218 2756 3.549 3.838 2.413 + 12 4 18 4 43.19 69.70 68.00 68.31 99.42 92.64 0 47709 13736 9166 0.192 0.192 0.288 0.667 0.917 0 242.5 8752 0 0 414 9166 -2633 6533 2633 -0 2311 2861 3.523 3.788 2.398 + 12 4 18 5 42.62 69.84 68.00 68.33 99.40 92.73 0 47643 13912 9456 0.198 0.198 0.292 0.680 0.920 0 250.6 9029 0 0 427 9456 -2683 6773 2683 0 2412 2976 3.498 3.743 2.385 + 12 4 19 0 42.20 69.88 68.00 68.35 99.39 92.80 0 47594 14042 9385 0.197 0.197 0.295 0.668 0.917 0 248.9 8960 0 0 425 9385 -2636 6749 2636 0 2427 2988 3.480 3.692 2.367 + 12 4 19 1 41.78 69.87 68.00 68.36 99.37 92.85 0 47545 14171 9572 0.201 0.201 0.298 0.675 0.919 0 254.2 9139 0 0 434 9572 -2667 6906 2667 0 2497 3067 3.461 3.660 2.357 + 12 4 19 2 41.36 69.87 68.00 68.36 99.33 92.89 0 47496 14301 9764 0.206 0.206 0.301 0.683 0.921 0 259.5 9321 0 0 443 9764 -2703 7061 2703 0 2567 3147 3.443 3.631 2.346 + 12 4 19 3 40.94 69.88 68.00 68.36 99.30 92.93 0 47447 14431 9950 0.210 0.210 0.304 0.689 0.922 0 264.7 9498 0 0 452 9950 -2736 7214 2736 0 2637 3225 3.425 3.601 2.335 + 12 4 19 4 40.52 69.97 68.00 68.36 99.27 92.97 0 47398 14560 10081 0.213 0.213 0.307 0.692 0.923 0 268.5 9623 0 0 458 10081 -2753 7328 2753 0 2696 3290 3.407 3.570 2.324 + 12 4 19 5 40.10 69.86 68.00 68.38 99.26 93.02 0 47349 14690 10314 0.218 0.218 0.310 0.702 0.926 0 275.0 9845 0 0 469 10314 -2792 7522 2792 -0 2777 3382 3.390 3.546 2.318 + 12 4 20 0 40.37 69.74 68.00 68.36 99.26 92.98 0 47380 14607 10522 0.222 0.222 0.308 0.720 0.930 0 280.3 10044 0 0 478 10522 -2866 7656 2866 0 2802 3417 3.401 3.585 2.334 + 12 4 20 1 40.64 69.72 68.00 68.35 99.27 92.94 0 47412 14523 10558 0.223 0.223 0.306 0.727 0.932 0 281.1 10079 0 0 480 10558 -2894 7664 2894 0 2790 3406 3.413 3.613 2.344 + 12 4 20 2 40.91 69.73 68.00 68.35 99.29 92.92 0 47443 14440 10557 0.223 0.223 0.304 0.731 0.933 0 280.9 10078 0 0 479 10557 -2906 7651 2906 0 2769 3385 3.424 3.639 2.356 + 12 4 20 3 41.18 69.75 68.00 68.35 99.31 92.90 0 47475 14357 10538 0.222 0.222 0.302 0.734 0.933 0 280.2 10060 0 0 478 10538 -2910 7628 2910 -0 2744 3359 3.436 3.665 2.367 + 12 4 20 4 41.45 69.79 68.00 68.35 99.34 92.89 0 47506 14273 10491 0.221 0.221 0.300 0.735 0.934 0 278.8 10015 0 0 476 10491 -2906 7585 2906 0 2714 3326 3.447 3.690 2.378 + 12 4 20 5 41.72 69.88 68.00 68.36 99.37 92.88 0 47538 14190 10422 0.219 0.219 0.298 0.734 0.934 0 276.8 9950 0 0 472 10422 -2894 7528 2894 0 2679 3288 3.459 3.714 2.389 + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 253 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.91 68.00 68.38 99.35 92.94 0 47489 14320 10848 0.228 0.228 0.302 0.758 0.939 0 288.4 10356 0 0 492 10848 -2987 7861 2987 0 2800 3428 3.441 3.699 2.388 + 12 4 21 1 40.88 69.95 68.00 68.38 99.32 92.98 0 47440 14449 10990 0.232 0.232 0.305 0.761 0.940 0 292.4 10491 0 0 499 10990 -3005 7985 3005 0 2862 3497 3.423 3.666 2.376 + 12 4 21 2 40.46 69.96 68.00 68.39 99.29 93.02 0 47391 14579 11138 0.235 0.235 0.308 0.764 0.941 0 296.7 10632 0 0 506 11138 -3023 8116 3023 -0 2926 3568 3.405 3.634 2.365 + 12 4 21 3 40.04 69.96 68.00 68.39 99.26 93.06 0 47342 14708 11299 0.239 0.239 0.311 0.768 0.942 0 301.3 10785 0 0 514 11299 -3047 8252 3047 0 2992 3643 3.387 3.604 2.354 + 12 4 21 4 39.62 69.95 68.00 68.39 99.23 93.08 0 47293 14838 11471 0.243 0.243 0.314 0.773 0.943 0 306.2 10948 0 0 522 11471 -3075 8396 3075 -0 3061 3720 3.370 3.576 2.343 + 12 4 21 5 39.20 69.95 68.00 68.38 99.20 93.11 0 47244 14968 11633 0.246 0.246 0.317 0.777 0.944 0 310.8 11102 0 0 530 11633 -3100 8533 3100 0 3129 3795 3.352 3.549 2.332 + 12 4 22 0 39.29 69.96 68.00 68.39 99.20 93.11 0 47254 14940 12319 0.261 0.261 0.316 0.825 0.956 0 329.1 11758 0 0 561 12319 -3287 9032 3287 -0 3266 3964 3.356 3.600 2.360 + 12 4 22 1 39.38 70.05 68.00 68.39 99.21 93.11 0 47265 14912 12418 0.263 0.263 0.316 0.833 0.958 0 331.7 11852 0 0 566 12418 -3315 9103 3315 0 3279 3981 3.360 3.615 2.367 + 12 4 22 2 39.47 70.10 68.00 68.41 99.24 93.13 0 47275 14884 12486 0.264 0.264 0.315 0.839 0.960 0 333.4 11917 0 0 569 12486 -3327 9158 3327 0 3285 3991 3.364 3.627 2.376 + 12 4 22 3 39.56 70.10 68.00 68.41 99.25 93.14 0 47286 14857 12549 0.265 0.265 0.314 0.845 0.961 0 335.0 11978 0 0 572 12549 -3342 9207 3342 0 3291 3999 3.367 3.640 2.384 + 12 4 22 4 39.65 70.05 68.00 68.42 99.26 93.14 0 47296 14829 12610 0.267 0.267 0.314 0.850 0.963 0 336.6 12036 0 0 574 12610 -3361 9250 3361 0 3296 4006 3.371 3.652 2.390 + 12 4 22 5 39.74 70.22 68.00 68.41 99.26 93.12 0 47307 14801 12566 0.266 0.266 0.313 0.849 0.962 0 335.3 11994 0 0 572 12566 -3356 9210 3356 0 3279 3988 3.375 3.658 2.391 + 12 4 23 0 39.59 70.31 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.75 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.32 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.18 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.91 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.76 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 009: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 009: + + + ALTER RSYS "rsys1" + rsCtrlAuxH = LOCKOUT + FIXRPTITLES("RSYS -- Aux Lockout / Def None") + + RUN + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 009 Sat 01-Jan-22 2:52:53 pm Page 254 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Error Messages for Run 010: + +--------------- +Warning: Zone 'GarageAttic-atc': Condensation occurred in 55 subhours of run. + Total condensation heat = 0.0547265 kBtu. +--------------- + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Nov 1.796 0 0.257 0.201 0 0 0 0 0.0553 0.0544 0 0.0359 0 0.201 0.731 0.0494 0.204 0 0 0 .00747 0 0 0 0 +Dec 3.829 0 0.859 1.391 0 0 0 0 0.216 0.0561 0 0.0605 0 0.214 0.775 0.0527 0.195 0 0 0 .00799 0 0 0 0 +Jan 3.536 0 1.012 0.929 0 0 0 0 0.229 0.0561 0 0.0760 0 0.213 0.766 0.0523 0.195 0 0 0 .00748 0 0 0 0 +Feb 2.700 0 0.659 0.744 0 0 0 0 0.151 0.0507 0 0.0498 0 0.179 0.636 0.0441 0.180 0 0 0 .00658 0 0 0 0 +Mar 1.327 0 0.0842 0.0312 0 0 0 0 0.0172 0.0561 0 .00887 0 0.182 0.676 0.0448 0.219 0 0 0 .00734 0 0 0 0 +Apr 1.322 0 0.0761 0.0950 0 0 0 0 0.0180 0.0543 0 0.0180 0 0.161 0.645 0.0395 0.210 0 0 0 .00588 0 0 0 0 + + + +RSYS -- Aux Alt / Def RevCycleAux / LO 37 + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Nov 68.614 3.637 0.988 0.0194 0.182 0.0553 1.244 0 0 0 0 0 0 0 0 0 0 0.257 0.0194 0.182 0.0553 0.0359 0.549 0 0 0 0 0 0 0 0.876 -.0073 0 0 0 0 + Dec 238.21 26.098 3.297 0.0866 1.305 0.216 4.905 0 0 0 0 0 0 0 0 0 0 0.859 0.0866 1.305 0.216 0.0605 2.527 0 0 0 0 0 0 0 3.610 -.0274 0 0 0 0 + Jan 283.42 17.628 4.015 0.0475 0.881 0.229 5.173 0 0 0 0 0 0 0 0 0 0 1.012 0.0475 0.881 0.229 0.0760 2.246 0 0 0 0 0 0 0 3.815 -.0312 0 0 0 0 + Feb 169.17 13.856 2.524 0.0513 0.693 0.151 3.419 0 0 0 0 0 0 0 0 0 0 0.659 0.0513 0.693 0.151 0.0498 1.604 0 0 0 0 0 0 0 2.489 -.0181 0 0 0 0 + Mar 24.475 0.620 0.338 .00019 0.0310 0.0172 0.387 0 0 0 0 0 0 0 0 0 0 0.0842 .00019 0.0310 0.0172 .00887 0.141 0 0 0 0 0 0 0 0.265 -.0039 0 0 0 0 + Apr 19.619 1.808 0.295 .00459 0.0904 0.0180 0.408 0 0 0 0 0 0 0 0 0 0 0.0761 .00459 0.0904 0.0180 0.0180 0.207 0 0 0 0 0 0 0 0.289 -.0015 0 0 0 0 + + Yr 803.51 63.648 11.457 0.209 3.182 0.687 15.536 0 0 0 0 0 0 0 0 0 0 2.947 0.209 3.182 0.687 0.249 7.275 0 0 0 0 0 0 0 11.344 -.0894 0 0 0 0 + + + +RSYS -- Aux Alt / Def RevCycleAux / LO 37 + + Mon eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + Nov 0.257 0.201 0.0553 0.549 0.876 1.595 0.549 0.876 1.595 0 0 0 0 0 0 0 + Dec 0.859 1.391 0.216 2.527 3.610 1.429 2.527 3.610 1.429 0 0 0 0 0 0 -.0078 + Jan 1.012 0.929 0.229 2.246 3.815 1.698 2.246 3.815 1.698 0 0 0 0 0 0 0 + Feb 0.659 0.744 0.151 1.604 2.489 1.552 1.604 2.489 1.552 0 0 0 0 0 0 -.0039 + Mar 0.0842 0.0312 0.0172 0.141 0.265 1.875 0.141 0.265 1.875 0 0 0 0 0 0 -.0020 + Apr 0.0761 0.0950 0.0180 0.207 0.289 1.396 0.207 0.289 1.396 0 0 0 0 0 0 -.0020 + + Yr 2.947 3.392 0.687 7.275 11.344 1.559 7.275 11.344 1.559 0 0 0 0 0 0 -.0312 + + + + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 255 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS -- Aux Alt / Def RevCycleAux / LO 37 for Thu 01-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 1.770 0 0.335 2.242 4.704 2.098 2.242 4.704 2.098 0 0 0 0 0 0 -0.000 + 8 6.157 8.333 1.466 16.093 25.381 1.577 16.093 25.381 1.577 0 0 0 0 0 0 -0.000 + 9 4.707 0 0.891 5.735 14.017 2.444 5.735 14.017 2.444 0 0 0 0 0 0 -0.000 + 10 3.934 0 0.764 4.834 11.601 2.400 4.834 11.601 2.400 0 0 0 0 0 0 -0.000 + 11 3.344 0 0.668 4.148 9.801 2.363 4.148 9.801 2.363 0 0 0 0 0 0 -0.000 + 12 2.899 0 0.595 3.630 8.454 2.329 3.630 8.454 2.329 0 0 0 0 0 0 -0.000 + 13 2.362 0 0.502 3.000 7.081 2.360 3.000 7.081 2.360 0 0 0 0 0 0 -0.000 + 14 1.979 0 0.401 2.379 5.691 2.392 2.379 5.691 2.392 0 0 0 0 0 0 0 + 15 1.976 0 0.400 2.375 5.700 2.400 2.375 5.700 2.400 0 0 0 0 0 0 0 + 16 1.963 0 0.397 2.360 5.691 2.412 2.360 5.691 2.412 0 0 0 0 0 0 0 + 17 1.979 0 0.401 2.379 5.775 2.427 2.379 5.775 2.427 0 0 0 0 0 0 0 + 18 1.953 0 0.394 2.347 5.705 2.431 2.347 5.705 2.431 0 0 0 0 0 0 0 + 19 1.872 0 0.374 2.383 5.445 2.285 2.383 5.445 2.285 0 0 0 0 0 0 -0.000 + 20 1.835 0 0.365 2.336 5.361 2.295 2.336 5.361 2.295 0 0 0 0 0 0 -0.000 + 21 1.867 0 0.373 2.377 5.503 2.316 2.377 5.503 2.316 0 0 0 0 0 0 -0.000 + 22 2.074 0 0.418 2.628 6.184 2.353 2.628 6.184 2.353 0 0 0 0 0 0 -0.000 + 23 2.386 0 0.482 3.005 7.160 2.383 3.005 7.160 2.383 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def RevCycleAux / LO 37 for Fri 02-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 6 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 7 4.426 0.841 0.804 6.208 12.550 2.022 6.208 12.550 2.022 0 0 0 0 0 0 -0.000 + 8 5.574 17.499 1.660 24.869 30.270 1.217 24.869 30.270 1.217 0 0 0 0 0 0 -0.000 + 9 5.909 0.853 1.028 7.926 17.177 2.167 7.926 17.177 2.167 0 0 0 0 0 0 -0.000 + 10 4.409 0.480 0.804 5.830 12.967 2.224 5.830 12.967 2.224 0 0 0 0 0 0 -0.000 + 11 3.667 0.307 0.694 4.804 10.933 2.276 4.804 10.933 2.276 0 0 0 0 0 0 -0.000 + 12 3.214 0 0.629 3.979 9.671 2.430 3.979 9.671 2.430 0 0 0 0 0 0 -0.000 + 13 2.285 0 0.477 2.899 7.226 2.493 2.899 7.226 2.493 0 0 0 0 0 0 -0.000 + 14 2.010 0 0.408 2.555 6.194 2.425 2.555 6.194 2.425 0 0 0 0 0 0 -0.000 + 15 1.937 0 0.390 2.463 5.950 2.416 2.463 5.950 2.416 0 0 0 0 0 0 -0.000 + 16 1.340 0 0.252 1.728 3.859 2.233 1.728 3.859 2.233 0 0 0 0 0 0 -0.000 + 17 1.800 0 0.357 2.293 5.471 2.386 2.293 5.471 2.386 0 0 0 0 0 0 -0.000 + 18 1.978 0 0.399 2.514 6.177 2.457 2.514 6.177 2.457 0 0 0 0 0 0 -0.000 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 256 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 19 2.106 0.0676 0.409 2.719 6.357 2.338 2.719 6.357 2.338 0 0 0 0 0 0 -0.000 + 20 2.387 0.411 0.450 3.384 7.117 2.103 3.384 7.117 2.103 0 0 0 0 0 0 -0.000 + 21 2.661 0.598 0.498 3.894 7.970 2.047 3.894 7.970 2.047 0 0 0 0 0 0 -0.000 + 22 2.914 0.772 0.545 4.367 8.831 2.022 4.367 8.831 2.022 0 0 0 0 0 0 -0.000 + 23 2.729 2.826 0.595 6.287 10.105 1.607 6.287 10.105 1.607 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + +RSYS -- Aux Alt / Def RevCycleAux / LO 37 for Sat 03-Jan + + Hr eHtg eHPBU eFanH eHTot qhZone COPH eHTot2 qhZone2 COPH2 eClg qcZone COPC eClg2 qcZone2 COPC2 ParErr + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ---------- ------ ------ ------ ------ ------ ------ + 1 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 2 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 3 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 4 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + 5 0 1.533 0.0660 1.736 1.331 0.767 1.736 1.331 0.767 0 0 0 0 0 0 -0.000 + 6 0 4.591 0.198 4.925 3.982 0.809 4.925 3.982 0.809 0 0 0 0 0 0 -0.000 + 7 0 31.196 1.344 32.676 26.736 0.818 32.676 26.736 0.818 0 0 0 0 0 0 -0.000 + 8 0 45.106 1.943 47.185 38.955 0.826 47.185 38.955 0.826 0 0 0 0 0 0 -0.000 + 9 0 21.969 0.946 23.052 19.166 0.831 23.052 19.166 0.831 0 0 0 0 0 0 -0.000 + 10 3.569 0.954 0.648 5.307 10.192 1.921 5.307 10.192 1.921 0 0 0 0 0 0 -0.000 + 11 1.975 0.253 0.365 2.729 5.618 2.058 2.729 5.618 2.058 0 0 0 0 0 0 -0.000 + 12 1.461 0 0.265 1.862 3.984 2.139 1.862 3.984 2.139 0 0 0 0 0 0 -0.000 + 13 0.943 0 0.169 1.249 2.541 2.034 1.249 2.541 2.034 0 0 0 0 0 0 -0.000 + 14 0.455 0 0.0781 0.670 1.164 1.737 0.670 1.164 1.737 0 0 0 0 0 0 -0.000 + 15 0.0465 0 .00767 0.191 0.114 0.596 0.191 0.114 0.596 0 0 0 0 0 0 -0.000 + 16 0.0375 0 .00626 0.180 0.0915 0.508 0.180 0.0915 0.508 0 0 0 0 0 0 -0.000 + 17 0.637 0 0.111 0.884 1.627 1.840 0.884 1.627 1.840 0 0 0 0 0 0 -0.000 + 18 1.732 0.0623 0.320 2.251 4.756 2.113 2.251 4.756 2.113 0 0 0 0 0 0 -0.000 + 19 2.260 0.449 0.413 3.259 6.351 1.949 3.259 6.351 1.949 0 0 0 0 0 0 -0.000 + 20 2.716 0.769 0.491 4.112 7.711 1.875 4.112 7.711 1.875 0 0 0 0 0 0 -0.000 + 21 2.972 0.924 0.541 4.573 8.588 1.878 4.573 8.588 1.878 0 0 0 0 0 0 -0.000 + 22 0.526 9.314 0.490 10.467 9.557 0.913 10.467 9.557 0.913 0 0 0 0 0 0 -0.000 + 23 0 12.196 0.525 12.858 10.680 0.831 12.858 10.680 0.831 0 0 0 0 0 0 -0.000 + 24 0 0 0 0.136 0 0 0.136 0 0 0 0 0 0 0 0 -0.000 + + + +HVAC Cooling Info + + Sys # System Cap115 Cap95 Cap82 COP115 COP95 COP82 COPm115 COPm95 COPm82 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 41846 48000 52000 2.16 3.70 5.90 1.67 4.00 7.70 22.00 13.50 21.12 12.96 .250 350 0.450 2149.65 + + + +HVAC Heating Info + + Sys # System Cap47 Cap35 Cap17 Cap05 COP47 COP35 COP17 COP05 COPm47 COPm35 COPm17 COPm05 HSPF CdH CapH AuxH AFUE fanPwrH fanElecH + ----- ------------------------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ---- ------ ------ ------ ------- -------- + 1 rsys1 46000 40140 42500 31130 3.70 2.91 2.60 2.32 4.45 3.03 2.72 2.24 11.00 .250 0 50000 0 0.450 2153.66 + + + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 257 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance + + Mon Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + Nov 68.65 252 111 363 1244 876 6 0 0 0 0 0 0 0 + Dec 67.53 862 417 1279 4905 3610 15 0 0 0 0 0 0 0 + Jan 67.52 924 420 1343 5173 3815 15 0 0 0 0 0 0 0 + Feb 67.64 617 298 916 3419 2489 14 0 0 0 0 0 0 0 + Mar 69.90 87 33 120 387 265 2 0 0 0 0 0 0 0 + Apr 69.33 79 38 116 408 289 3 0 0 0 0 0 0 0 + + Yr 68.43 2821 1317 4137 15536 11344 54 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 258 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +Duct / system / zone energy balance for Wed 02-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.94 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.00 34 43 76 445 368 -0 0 0 0 0 0 0 0 + 1 65.00 34 44 79 458 379 0 0 0 0 0 0 0 0 + 2 65.00 39 50 89 519 430 0 0 0 0 0 0 0 0 + 3 65.00 44 56 100 581 481 0 0 0 0 0 0 0 0 + 4 65.00 48 62 111 643 532 -0 0 0 0 0 0 0 0 + 5 65.00 54 69 122 709 586 -0 0 0 0 0 0 0 0 + 6 65.00 58 75 133 771 637 0 0 0 0 0 0 0 0 + 1 65.96 661 847 1508 8692 6965 220 0 0 0 0 0 0 0 + 2 66.50 565 715 1280 7160 5777 103 0 0 0 0 0 0 0 + 3 66.50 268 336 604 3653 3049 0 0 0 0 0 0 0 0 + 4 66.50 266 339 605 3661 3056 0 0 0 0 0 0 0 0 + 5 66.50 278 355 633 3680 3046 0 0 0 0 0 0 0 0 + 6 66.50 255 325 580 3376 2796 0 0 0 0 0 0 0 0 + 1 67.12 658 834 1492 8692 7058 142 0 0 0 0 0 0 0 + 2 67.57 674 849 1523 8692 7065 105 0 0 0 0 0 0 0 + 3 67.91 647 813 1460 8692 7154 78 0 0 0 0 0 0 0 + 4 68.00 514 651 1165 6985 5803 16 0 0 0 0 0 0 0 + 5 68.00 444 565 1009 6054 5045 0 0 0 0 0 0 0 0 + 6 68.00 397 507 905 5390 4485 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 259 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 350 444 794 4688 3894 0 0 0 0 0 0 0 0 + 2 68.00 301 381 682 4052 3370 0 0 0 0 0 0 0 0 + 3 68.00 262 332 594 3520 2925 -0 0 0 0 0 0 0 0 + 4 68.00 561 293 854 3407 2554 -0 0 0 0 0 0 0 0 + 5 68.00 560 261 820 3080 2260 -0 0 0 0 0 0 0 0 + 6 68.00 543 225 768 2763 1995 0 0 0 0 0 0 0 0 + 1 68.00 532 206 738 2579 1840 0 0 0 0 0 0 0 0 + 2 68.00 527 186 713 2376 1663 -0 0 0 0 0 0 0 0 + 3 68.00 482 165 647 2124 1477 0 0 0 0 0 0 0 0 + 4 68.00 437 148 585 1903 1318 -0 0 0 0 0 0 0 0 + 5 68.00 396 132 528 1698 1170 -0 0 0 0 0 0 0 0 + 6 68.00 358 117 475 1505 1030 0 0 0 0 0 0 0 0 + 1 68.00 346 111 457 1432 975 0 0 0 0 0 0 0 0 + 2 68.00 315 100 415 1282 867 0 0 0 0 0 0 0 0 + 3 68.00 285 89 374 1143 769 0 0 0 0 0 0 0 0 + 4 68.00 257 80 336 1013 677 0 0 0 0 0 0 0 0 + 5 68.00 231 70 301 896 595 0 0 0 0 0 0 0 0 + 6 68.00 202 61 263 778 515 0 0 0 0 0 0 0 0 + 1 68.00 217 66 283 835 551 0 0 0 0 0 0 0 0 + 2 68.00 195 59 254 747 492 0 0 0 0 0 0 0 0 + 3 68.00 170 52 222 652 430 -0 0 0 0 0 0 0 0 + 4 68.00 148 45 193 565 373 0 0 0 0 0 0 0 0 + 5 68.00 127 38 165 483 318 0 0 0 0 0 0 0 0 + 6 68.00 106 32 138 402 264 0 0 0 0 0 0 0 0 + 1 68.00 67 20 88 256 168 -0 0 0 0 0 0 0 0 + 2 68.00 44 13 57 165 108 0 0 0 0 0 0 0 0 + 3 68.00 20 6 27 77 50 -0 0 0 0 0 0 0 0 + 4 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 260 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.19 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.00 49 14 63 172 109 -0 0 0 0 0 0 0 0 + 1 68.00 79 23 103 279 176 0 0 0 0 0 0 0 0 + 2 68.00 97 29 125 340 215 -0 0 0 0 0 0 0 0 + 3 68.00 104 31 135 367 232 0 0 0 0 0 0 0 0 + 4 68.00 119 35 155 420 265 0 0 0 0 0 0 0 0 + 5 68.00 130 38 168 455 287 0 0 0 0 0 0 0 0 + 6 68.00 144 43 186 505 319 -0 0 0 0 0 0 0 0 + 1 68.00 143 42 185 500 315 0 0 0 0 0 0 0 0 + 2 68.00 159 47 206 557 351 -0 0 0 0 0 0 0 0 + 3 68.00 171 51 222 598 376 0 0 0 0 0 0 0 0 + 4 68.00 188 55 243 655 412 0 0 0 0 0 0 0 0 + 5 68.00 199 59 258 695 437 0 0 0 0 0 0 0 0 + 6 68.00 216 64 279 752 473 0 0 0 0 0 0 0 0 + 1 68.00 241 71 312 839 527 0 0 0 0 0 0 0 0 + 2 68.00 258 76 334 898 564 0 0 0 0 0 0 0 0 + 3 68.00 274 81 355 956 601 0 0 0 0 0 0 0 0 + 4 68.00 285 84 369 997 628 -0 0 0 0 0 0 0 0 + 5 68.00 299 88 387 1048 661 0 0 0 0 0 0 0 0 + 6 68.00 309 92 401 1096 695 0 0 0 0 0 0 0 0 + 1 68.00 334 101 436 1202 766 0 0 0 0 0 0 0 0 + 2 68.00 344 106 450 1252 802 0 0 0 0 0 0 0 0 + 3 68.00 353 110 463 1300 838 0 0 0 0 0 0 0 0 + 4 68.00 361 114 474 1349 874 -0 0 0 0 0 0 0 0 + 5 68.00 369 118 487 1397 910 0 0 0 0 0 0 0 0 + 6 68.00 376 122 498 1443 945 0 0 0 0 0 0 0 0 + 1 68.00 413 135 548 1602 1053 -0 0 0 0 0 0 0 0 + 2 68.00 421 139 560 1650 1090 0 0 0 0 0 0 0 0 + 3 68.00 425 143 568 1693 1125 0 0 0 0 0 0 0 0 + 4 68.00 431 147 578 1739 1161 0 0 0 0 0 0 0 0 + 5 68.00 437 150 588 1784 1196 0 0 0 0 0 0 0 0 + 6 68.00 441 154 595 1823 1228 0 0 0 0 0 0 0 0 + 1 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Thu 03-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 261 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.48 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.74 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.47 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.03 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.00 21 26 46 245 199 -0 0 0 0 0 0 0 0 + 4 65.00 44 55 99 523 423 0 0 0 0 0 0 0 0 + 5 65.00 51 64 115 609 493 0 0 0 0 0 0 0 0 + 6 65.00 58 72 130 687 557 0 0 0 0 0 0 0 0 + 1 65.95 732 912 1644 8692 6830 219 0 0 0 0 0 0 0 + 2 66.50 622 768 1390 7161 5667 104 0 0 0 0 0 0 0 + 3 66.50 282 344 625 3509 2884 0 0 0 0 0 0 0 0 + 4 66.50 281 348 629 3523 2894 0 0 0 0 0 0 0 0 + 5 66.50 300 373 673 3614 2941 0 0 0 0 0 0 0 0 + 6 66.50 274 342 616 3316 2700 -0 0 0 0 0 0 0 0 + 1 67.13 721 891 1612 8692 6935 145 0 0 0 0 0 0 0 + 2 67.60 734 902 1636 8692 6948 108 0 0 0 0 0 0 0 + 3 67.95 702 862 1564 8692 7047 82 0 0 0 0 0 0 0 + 4 68.00 514 635 1149 6426 5270 8 0 0 0 0 0 0 0 + 5 68.00 458 570 1028 5764 4737 -0 0 0 0 0 0 0 0 + 6 68.00 406 506 912 5074 4162 -0 0 0 0 0 0 0 0 + 1 68.00 356 440 796 4406 3610 0 0 0 0 0 0 0 0 + 2 68.00 303 376 679 3768 3089 0 0 0 0 0 0 0 0 + 3 68.00 265 328 592 3280 2687 0 0 0 0 0 0 0 0 + 4 68.00 230 285 515 2849 2334 0 0 0 0 0 0 0 0 + 5 68.00 202 250 452 2489 2037 0 0 0 0 0 0 0 0 + 6 68.00 599 227 826 2612 1786 0 0 0 0 0 0 0 0 + 1 68.00 587 213 800 2470 1669 0 0 0 0 0 0 0 0 + 2 68.00 520 188 708 2227 1519 0 0 0 0 0 0 0 0 + 3 68.00 475 170 645 2024 1380 0 0 0 0 0 0 0 0 + 4 68.00 439 155 594 1842 1248 0 0 0 0 0 0 0 0 + 5 68.00 399 139 538 1653 1115 0 0 0 0 0 0 0 0 + 6 68.00 361 124 485 1474 989 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 262 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 384 129 513 1537 1025 0 0 0 0 0 0 0 0 + 2 68.00 355 117 472 1397 924 -0 0 0 0 0 0 0 0 + 3 68.00 322 104 425 1250 824 0 0 0 0 0 0 0 0 + 4 68.00 295 93 388 1127 740 0 0 0 0 0 0 0 0 + 5 68.00 267 83 350 1001 651 0 0 0 0 0 0 0 0 + 6 68.00 238 72 310 879 569 -0 0 0 0 0 0 0 0 + 1 68.00 237 71 308 866 558 -0 0 0 0 0 0 0 0 + 2 68.00 221 66 286 804 517 0 0 0 0 0 0 0 0 + 3 68.00 195 58 253 708 455 0 0 0 0 0 0 0 0 + 4 68.00 178 53 230 648 418 0 0 0 0 0 0 0 0 + 5 68.00 156 46 202 567 366 0 0 0 0 0 0 0 0 + 6 68.00 140 41 182 512 331 0 0 0 0 0 0 0 0 + 1 68.00 97 29 126 353 227 -0 0 0 0 0 0 0 0 + 2 68.00 81 24 105 295 190 0 0 0 0 0 0 0 0 + 3 68.00 58 17 75 210 135 0 0 0 0 0 0 0 0 + 4 68.00 40 12 52 146 94 0 0 0 0 0 0 0 0 + 5 68.00 23 7 30 83 53 0 0 0 0 0 0 0 0 + 6 68.00 7 2 10 27 17 0 0 0 0 0 0 0 0 + 1 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 68.00 105 31 136 385 249 -0 0 0 0 0 0 0 0 + 5 68.00 147 44 191 536 345 0 0 0 0 0 0 0 0 + 6 68.00 161 48 209 596 387 0 0 0 0 0 0 0 0 + 1 68.00 161 48 209 596 387 0 0 0 0 0 0 0 0 + 2 68.00 187 56 243 695 452 -0 0 0 0 0 0 0 0 + 3 68.00 208 64 272 789 517 -0 0 0 0 0 0 0 0 + 4 68.00 226 71 297 879 582 0 0 0 0 0 0 0 0 + 5 68.00 243 79 323 974 652 0 0 0 0 0 0 0 0 + 6 68.00 260 87 346 1067 721 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 263 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 260 87 347 1077 730 0 0 0 0 0 0 0 0 + 2 68.00 268 90 359 1120 762 0 0 0 0 0 0 0 0 + 3 68.00 276 94 369 1158 789 0 0 0 0 0 0 0 0 + 4 68.00 284 97 381 1203 821 0 0 0 0 0 0 0 0 + 5 68.00 291 100 390 1234 844 0 0 0 0 0 0 0 0 + 6 68.00 299 103 402 1276 874 -0 0 0 0 0 0 0 0 + 1 68.00 313 109 421 1342 921 0 0 0 0 0 0 0 0 + 2 68.00 317 111 429 1371 942 0 0 0 0 0 0 0 0 + 3 68.00 326 115 441 1421 980 0 0 0 0 0 0 0 0 + 4 68.00 330 118 448 1447 1000 0 0 0 0 0 0 0 0 + 5 68.00 338 122 461 1497 1037 0 0 0 0 0 0 0 0 + 6 68.00 342 125 466 1520 1053 0 0 0 0 0 0 0 0 + 1 68.00 361 130 491 1594 1103 0 0 0 0 0 0 0 0 + 2 68.00 367 131 498 1609 1111 0 0 0 0 0 0 0 0 + 3 68.00 372 132 504 1621 1117 -0 0 0 0 0 0 0 0 + 4 68.00 376 133 509 1629 1120 -0 0 0 0 0 0 0 0 + 5 68.00 381 133 514 1636 1122 0 0 0 0 0 0 0 0 + 6 68.00 385 134 518 1636 1118 0 0 0 0 0 0 0 0 + 1 68.00 415 144 559 1768 1208 0 0 0 0 0 0 0 0 + 2 68.00 421 147 568 1794 1227 -0 0 0 0 0 0 0 0 + 3 68.00 425 148 573 1817 1243 0 0 0 0 0 0 0 0 + 4 68.00 425 148 574 1821 1248 0 0 0 0 0 0 0 0 + 5 68.00 427 149 576 1839 1263 0 0 0 0 0 0 0 0 + 6 68.00 429 150 579 1855 1276 0 0 0 0 0 0 0 0 + 1 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + + +Duct / system / zone energy balance for Fri 04-Dec + + SH Tzn ShCond ShLk ShTot QhSys QhZn QhBal ScCond ScLkS ScLkL ScTotS QcSys QcZn QcBal + --- ------ ---------- ------ ------ ------ ------ ------ ------------ ------ ------ ------ ------ ------ ------ + 1 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 66.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 66.11 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.97 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.90 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 264 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.42 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 65.29 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 + 1 65.00 9 12 21 114 93 -0 0 0 0 0 0 0 0 + 2 65.00 36 46 82 452 370 -0 0 0 0 0 0 0 0 + 3 65.00 42 52 94 516 422 0 0 0 0 0 0 0 0 + 4 65.00 47 59 105 578 473 0 0 0 0 0 0 0 0 + 5 65.00 52 65 117 640 524 0 0 0 0 0 0 0 0 + 6 65.00 57 72 128 704 576 0 0 0 0 0 0 0 0 + 1 65.96 702 884 1586 8692 6887 220 0 0 0 0 0 0 0 + 2 66.50 595 741 1336 7121 5683 103 0 0 0 0 0 0 0 + 3 66.50 275 339 614 3554 2940 0 0 0 0 0 0 0 0 + 4 66.50 276 346 622 3594 2972 -0 0 0 0 0 0 0 0 + 5 66.50 292 366 658 3652 2994 0 0 0 0 0 0 0 0 + 6 66.50 268 337 604 3360 2756 0 0 0 0 0 0 0 0 + 1 67.11 694 867 1561 8692 6991 141 0 0 0 0 0 0 0 + 2 67.56 707 878 1585 8692 7004 103 0 0 0 0 0 0 0 + 3 67.89 676 839 1515 8692 7100 77 0 0 0 0 0 0 0 + 4 68.00 557 696 1253 7233 5960 20 0 0 0 0 0 0 0 + 5 68.00 477 599 1077 6222 5145 0 0 0 0 0 0 0 0 + 6 68.00 427 538 964 5564 4600 0 0 0 0 0 0 0 0 + 1 68.00 377 471 848 4858 4010 0 0 0 0 0 0 0 0 + 2 68.00 327 410 737 4235 3498 0 0 0 0 0 0 0 0 + 3 68.00 287 359 647 3707 3060 0 0 0 0 0 0 0 0 + 4 68.00 259 324 583 3337 2754 0 0 0 0 0 0 0 0 + 5 68.00 585 299 884 3383 2498 -0 0 0 0 0 0 0 0 + 6 68.00 584 279 864 3193 2329 0 0 0 0 0 0 0 0 + 1 68.00 566 271 837 3150 2313 0 0 0 0 0 0 0 0 + 2 68.00 559 258 818 3037 2220 0 0 0 0 0 0 0 0 + 3 68.00 558 249 807 2949 2142 0 0 0 0 0 0 0 0 + 4 68.00 554 238 793 2845 2052 -0 0 0 0 0 0 0 0 + 5 68.00 553 229 782 2749 1967 -0 0 0 0 0 0 0 0 + 6 68.00 550 220 769 2660 1890 0 0 0 0 0 0 0 0 + 1 68.00 550 221 770 2673 1903 0 0 0 0 0 0 0 0 + 2 68.00 547 214 762 2608 1846 0 0 0 0 0 0 0 0 + 3 68.00 543 208 750 2552 1802 0 0 0 0 0 0 0 0 + 4 68.00 539 201 740 2497 1757 0 0 0 0 0 0 0 0 + 5 68.00 536 196 732 2441 1710 0 0 0 0 0 0 0 0 + 6 68.00 533 190 723 2385 1662 0 0 0 0 0 0 0 0 + 1 68.00 529 178 707 2272 1565 -0 0 0 0 0 0 0 0 + 2 68.00 513 170 684 2195 1512 0 0 0 0 0 0 0 0 + 3 68.00 497 164 661 2119 1458 0 0 0 0 0 0 0 0 + 4 68.00 473 155 629 2005 1377 0 0 0 0 0 0 0 0 + 5 68.00 454 147 601 1919 1318 0 0 0 0 0 0 0 0 + 6 68.00 434 140 574 1825 1251 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 265 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 393 126 519 1653 1134 0 0 0 0 0 0 0 0 + 2 68.00 369 118 487 1547 1060 0 0 0 0 0 0 0 0 + 3 68.00 343 109 452 1429 977 0 0 0 0 0 0 0 0 + 4 68.00 319 101 420 1325 905 0 0 0 0 0 0 0 0 + 5 68.00 300 95 395 1242 847 -0 0 0 0 0 0 0 0 + 6 68.00 284 89 373 1170 797 0 0 0 0 0 0 0 0 + 1 68.00 251 78 329 1024 695 0 0 0 0 0 0 0 0 + 2 68.00 231 71 302 935 633 0 0 0 0 0 0 0 0 + 3 68.00 212 65 277 852 575 0 0 0 0 0 0 0 0 + 4 68.00 197 60 257 789 532 0 0 0 0 0 0 0 0 + 5 68.00 188 58 246 754 508 -0 0 0 0 0 0 0 0 + 6 68.00 182 56 238 726 488 0 0 0 0 0 0 0 0 + 1 68.00 183 56 239 731 491 -0 0 0 0 0 0 0 0 + 2 68.00 184 57 241 736 495 0 0 0 0 0 0 0 0 + 3 68.00 183 56 239 727 488 -0 0 0 0 0 0 0 0 + 4 68.00 176 54 230 702 472 0 0 0 0 0 0 0 0 + 5 68.00 168 51 219 670 450 -0 0 0 0 0 0 0 0 + 6 68.00 159 49 208 633 425 0 0 0 0 0 0 0 0 + 1 68.00 109 33 143 435 292 0 0 0 0 0 0 0 0 + 2 68.00 98 30 128 392 264 -0 0 0 0 0 0 0 0 + 3 68.00 87 27 114 346 233 0 0 0 0 0 0 0 0 + 4 68.00 93 29 122 371 249 -0 0 0 0 0 0 0 0 + 5 68.00 115 35 150 457 307 -0 0 0 0 0 0 0 0 + 6 68.00 136 41 177 541 364 0 0 0 0 0 0 0 0 + 1 68.00 189 57 246 756 510 0 0 0 0 0 0 0 0 + 2 68.00 215 66 280 857 577 0 0 0 0 0 0 0 0 + 3 68.00 238 73 311 962 651 0 0 0 0 0 0 0 0 + 4 68.00 259 79 338 1050 712 -0 0 0 0 0 0 0 0 + 5 68.00 276 84 360 1122 762 -0 0 0 0 0 0 0 0 + 6 68.00 290 89 379 1185 806 0 0 0 0 0 0 0 0 + 1 68.00 302 93 395 1240 845 0 0 0 0 0 0 0 0 + 2 68.00 309 96 405 1280 875 0 0 0 0 0 0 0 0 + 3 68.00 314 98 412 1311 898 0 0 0 0 0 0 0 0 + 4 68.00 321 101 422 1349 927 0 0 0 0 0 0 0 0 + 5 68.00 326 103 428 1378 949 0 0 0 0 0 0 0 0 + 6 68.00 332 105 437 1414 977 -0 0 0 0 0 0 0 0 + 1 68.00 318 102 420 1374 954 -0 0 0 0 0 0 0 0 + 2 68.00 322 105 428 1417 989 0 0 0 0 0 0 0 0 + 3 68.00 328 109 437 1461 1024 0 0 0 0 0 0 0 0 + 4 68.00 332 112 444 1503 1059 0 0 0 0 0 0 0 0 + 5 68.00 336 115 451 1546 1094 -0 0 0 0 0 0 0 0 + 6 68.00 340 119 459 1590 1132 0 0 0 0 0 0 0 0 + 1 68.00 334 118 452 1583 1131 0 0 0 0 0 0 0 0 + 2 68.00 336 120 457 1613 1157 0 0 0 0 0 0 0 0 + 3 68.00 339 123 462 1644 1182 0 0 0 0 0 0 0 0 + 4 68.00 342 126 468 1675 1207 -0 0 0 0 0 0 0 0 + 5 68.00 343 128 471 1697 1227 0 0 0 0 0 0 0 0 + 6 68.00 346 130 477 1735 1258 0 0 0 0 0 0 0 0 + 1 68.00 356 133 489 1769 1280 0 0 0 0 0 0 0 0 + 2 68.00 359 133 492 1772 1280 0 0 0 0 0 0 0 0 + 3 68.00 359 133 492 1768 1276 0 0 0 0 0 0 0 0 + 4 68.00 362 133 494 1772 1278 0 0 0 0 0 0 0 0 + 5 68.00 362 132 494 1759 1265 0 0 0 0 0 0 0 0 + 6 68.00 362 131 493 1756 1263 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 266 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 1 68.00 372 136 509 1821 1313 0 0 0 0 0 0 0 0 + 2 68.00 373 138 511 1846 1335 0 0 0 0 0 0 0 0 + 3 68.00 373 140 513 1870 1357 0 0 0 0 0 0 0 0 + 4 68.00 375 142 518 1897 1379 0 0 0 0 0 0 0 0 + 5 68.00 377 145 522 1925 1403 0 0 0 0 0 0 0 0 + 6 68.00 379 147 526 1951 1426 0 0 0 0 0 0 0 0 + 1 68.00 402 156 557 2066 1509 0 0 0 0 0 0 0 0 + 2 68.00 405 157 562 2082 1520 0 0 0 0 0 0 0 0 + 3 68.00 407 157 564 2093 1529 -0 0 0 0 0 0 0 0 + 4 68.00 409 158 566 2104 1538 -0 0 0 0 0 0 0 0 + 5 68.00 411 158 569 2113 1544 0 0 0 0 0 0 0 0 + 6 68.00 410 158 568 2105 1538 0 0 0 0 0 0 0 0 + 1 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 + 2 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 + 3 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 + 4 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 + 5 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 + 6 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 267 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +RSYS Heating subhour details for Wed 02-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 2 0 0 35.30 67.94 66.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 1 35.36 67.79 66.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 2 35.42 67.62 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 3 35.48 67.47 66.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 4 35.54 67.31 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 0 5 35.60 67.15 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 0 35.15 67.00 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 1 34.70 66.84 66.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 2 34.25 66.68 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 3 33.80 66.53 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 4 33.35 66.37 66.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 1 5 32.90 66.22 66.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 0 32.72 66.06 66.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 1 32.54 65.91 65.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 2 32.36 65.75 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 3 32.18 65.60 65.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 4 32.00 65.44 65.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 2 5 31.82 65.29 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 0 31.58 65.14 65.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 1 31.34 64.98 65.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 2 31.10 64.83 65.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 3 30.86 64.67 65.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 4 30.62 64.51 65.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 3 5 30.38 64.36 65.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 0 30.47 64.20 65.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 1 30.56 64.04 65.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 2 30.65 63.88 65.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 3 30.74 63.72 65.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 4 30.83 63.56 65.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 4 5 30.92 63.41 65.00 64.81 98.82 96.30 0 0 0 3356 0 0 1.000 0 0 0.0512 64.6 0 2558 0 110 2668 -458 2210 458 -0 0 2805 0 0 0.828 + 12 2 5 0 30.77 63.53 65.00 64.79 98.80 96.31 0 0 0 3556 0 0 1.000 0 0 0.0527 66.5 0 2634 0 113 2747 -471 2276 471 0 0 2884 0 0 0.828 + 12 2 5 1 30.62 63.43 65.00 64.80 98.82 96.32 0 0 0 3971 0 0 1.000 0 0 0.0597 75.3 0 2983 0 128 3111 -533 2578 533 0 0 3248 0 0 0.829 + 12 2 5 2 30.47 63.33 65.00 64.79 98.80 96.30 0 0 0 4531 0 0 1.000 0 0 0.0668 84.3 0 3339 0 144 3483 -598 2885 598 0 0 3620 0 0 0.828 + 12 2 5 3 30.32 63.25 65.00 64.78 98.79 96.28 0 0 0 5118 0 0 1.000 0 0 0.0739 93.3 0 3697 0 159 3856 -664 3192 664 -0 0 3992 0 0 0.828 + 12 2 5 4 30.17 63.16 65.00 64.77 98.78 96.27 0 0 0 5731 0 0 1.000 0 0 0.0815 102.9 0 4076 0 176 4252 -734 3518 734 -0 0 4388 0 0 0.827 + 12 2 5 5 30.02 63.10 65.00 64.75 98.77 96.25 0 0 0 6348 0 0 1.000 0 0 0.0887 112.0 0 4434 0 191 4625 -801 3825 801 0 0 4762 0 0 0.827 + 12 2 6 0 29.90 63.02 65.96 64.74 98.76 96.24 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9046 41790 10364 1318 0 52290 0 0 0.801 + 12 2 6 1 29.78 66.74 66.50 65.56 99.58 96.99 0 0 0 298k 0 0 1.000 0 0 0.824 1040 0 41184 0 1774 42958 -7679 34660 8298 619 0 43095 0 0 0.807 + 12 2 6 2 29.66 66.53 66.50 66.49 100.50 98.04 0 0 0 23155 0 0 1.000 0 0 0.420 530.5 0 21014 0 905 21919 -3625 18294 3625 0 0 22055 0 0 0.835 + 12 2 6 3 29.54 64.97 66.50 66.48 100.49 98.04 0 0 0 23195 0 0 1.000 0 0 0.421 531.7 0 21059 0 907 21966 -3633 18333 3633 0 0 22102 0 0 0.835 + 12 2 6 4 29.42 65.03 66.50 66.29 100.30 97.79 0 0 0 29146 0 0 1.000 0 0 0.423 534.4 0 21166 0 912 22078 -3800 18278 3800 0 0 22214 0 0 0.828 + 12 2 6 5 29.30 65.15 66.50 66.30 100.31 97.80 0 0 0 26428 0 0 1.000 0 0 0.388 490.3 0 19418 0 836 20255 -3480 16775 3480 0 0 20391 0 0 0.828 + 12 2 7 0 29.57 65.08 67.12 66.31 100.32 97.80 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8955 42347 9806 851 0 52290 0 0 0.812 + 12 2 7 1 29.84 67.19 67.57 66.83 100.85 98.29 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9136 42390 9764 628 0 52290 0 0 0.813 + 12 2 7 2 30.11 67.70 67.91 67.49 101.51 99.02 0 0 0 102k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -8760 42926 9228 468 0 52290 0 0 0.823 + 12 2 7 3 30.38 67.75 68.00 67.86 101.87 99.40 0 0 0 49280 0 0 1.000 0 0 0.804 1014 0 40180 0 1731 41911 -6992 34821 7090 99 0 42047 0 0 0.831 + 12 2 7 4 30.65 67.42 68.00 67.95 101.96 99.49 0 0 0 39435 0 0 1.000 0 0 0.697 879.3 0 34826 0 1500 36326 -6054 30272 6054 0 0 36462 0 0 0.833 + 12 2 7 5 30.92 67.16 68.00 67.91 101.92 99.45 0 0 0 36424 0 0 1.000 0 0 0.620 782.7 0 31002 0 1335 32338 -5428 26910 5428 0 0 32474 0 0 0.832 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 268 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 8 0 32.51 67.43 68.00 67.88 101.89 99.39 0 0 0 32957 0 0 1.000 0 0 0.539 680.9 0 26968 0 1162 28130 -4766 23363 4766 0 0 28266 0 0 0.831 + 12 2 8 1 34.10 67.30 68.00 67.91 101.92 99.43 0 0 0 27490 0 0 1.000 0 0 0.466 588.5 0 23310 0 1004 24314 -4093 20222 4093 0 0 24451 0 0 0.832 + 12 2 8 2 35.69 67.16 68.00 67.89 101.91 99.41 0 0 0 24310 0 0 1.000 0 0 0.405 511.2 0 20247 0 872 21119 -3567 17552 3567 -0 0 21256 0 0 0.831 + 12 2 8 3 37.28 67.05 68.00 67.83 98.49 93.53 0 47020 15558 20444 0.434 0.471 0.435 1.000 1.000 0 548.9 17881 0 1627 936 20444 -5123 15321 5123 -0 5702 8402 3.049 3.136 1.854 + 12 2 8 4 38.87 67.58 68.00 67.80 98.58 93.09 0 47205 15065 18480 0.390 0.418 0.391 1.000 1.000 0 494.2 16371 0 1266 843 18480 -4923 13557 4923 -0 5008 7254 3.148 3.269 1.905 + 12 2 8 5 40.46 67.76 68.00 67.89 98.80 92.79 0 47391 14574 16577 0.348 0.369 0.350 1.000 1.000 0 441.5 14876 0 947 753 16576 -4609 11967 4609 0 4340 6177 3.250 3.427 1.981 + 12 2 9 0 41.12 67.79 68.00 67.92 98.88 92.55 0 47468 14370 15472 0.324 0.342 0.326 1.000 1.000 0 411.5 13958 0 812 702 15472 -4429 11043 4429 0 3975 5626 3.293 3.511 2.012 + 12 2 9 1 41.78 67.83 68.00 67.93 98.93 92.11 0 47545 14167 14258 0.298 0.313 0.300 1.000 1.000 0 378.4 12926 0 682 646 14254 -4278 9975 4278 -0 3580 5044 3.337 3.610 2.033 + 12 2 9 2 42.44 67.80 68.00 67.94 98.99 92.00 0 47622 13963 12742 0.266 0.277 0.291 0.919 0.980 0 337.8 11624 0 542 576 12742 -3882 8860 3882 0 2908 4162 3.381 3.998 2.201 + 12 2 9 3 43.10 67.71 68.00 67.93 99.04 91.94 0 47699 13760 11419 0.238 0.247 0.287 0.835 0.959 0 302.2 10483 0 421 516 11419 -3511 7909 3511 -0 2635 3709 3.425 3.978 2.214 + 12 2 9 4 43.76 67.52 68.00 67.92 99.08 91.85 0 47776 13557 10188 0.212 0.219 0.282 0.756 0.939 0 269.2 9412 0 317 459 10188 -3168 7020 3168 -0 2375 3287 3.471 3.963 2.228 + 12 2 9 5 44.42 67.32 68.00 67.89 99.09 91.74 0 47853 13354 9030 0.188 0.193 0.278 0.680 0.920 0 238.2 8396 0 227 406 9030 -2849 6181 2849 0 2124 2893 3.516 3.954 2.242 + 12 2 10 0 44.93 67.10 68.00 67.85 99.10 91.63 0 47912 13197 8591 0.179 0.182 0.274 0.654 0.913 0 226.3 8029 0 175 386 8591 -2743 5848 2743 0 2015 2713 3.552 3.984 2.270 + 12 2 10 1 45.44 66.98 68.00 67.81 98.72 91.23 0 47392 12839 7689 0.162 0.162 0.271 0.599 0.900 0 204.8 7340 0 0 349 7689 -2488 5201 2488 0 1871 2357 3.588 3.923 2.342 + 12 2 10 2 45.95 66.68 68.00 67.79 98.86 91.23 0 47641 12748 6860 0.144 0.144 0.268 0.538 0.885 0 181.8 6550 0 0 310 6860 -2243 4617 2243 0 1663 2110 3.624 3.938 2.339 + 12 2 10 3 46.46 66.53 68.00 67.73 98.97 91.19 0 47890 12658 6081 0.127 0.127 0.264 0.480 0.870 0 160.3 5807 0 0 273 6081 -2018 4063 2018 0 1467 1877 3.661 3.958 2.334 + 12 2 10 4 46.97 66.29 68.00 67.70 99.10 91.17 0 48139 12567 5376 0.112 0.112 0.261 0.428 0.857 0 141.0 5135 0 0 241 5376 -1806 3570 1806 0 1288 1665 3.698 3.987 2.336 + 12 2 10 5 47.48 66.14 68.00 67.66 99.06 91.09 0 48154 12562 4671 .0970 .0970 0.261 0.372 0.843 0 122.4 4462 0 0 209 4671 -1579 3091 1579 0 1136 1482 3.700 3.927 2.298 + 12 2 11 0 48.20 66.04 68.00 67.63 99.03 91.05 0 48154 12562 5009 0.104 0.104 0.261 0.399 0.850 0 131.3 4785 0 0 224 5009 -1701 3309 1701 0 1209 1570 3.700 3.958 2.309 + 12 2 11 1 48.92 66.09 68.00 67.60 99.01 91.01 0 48154 12562 4480 .0930 .0930 0.261 0.357 0.839 0 117.4 4279 0 0 200 4480 -1526 2953 1526 0 1095 1432 3.700 3.909 2.280 + 12 2 11 2 49.64 66.06 68.00 67.61 99.01 91.01 0 48154 12562 3913 .0813 .0813 0.261 0.311 0.828 0 102.6 3738 0 0 175 3913 -1332 2581 1332 -0 969 1281 3.700 3.857 2.255 + 12 2 11 3 50.36 65.99 68.00 67.60 99.01 91.00 0 48154 12562 3393 .0705 .0705 0.261 0.270 0.818 0 88.9 3241 0 0 152 3393 -1157 2236 1157 0 851 1139 3.700 3.808 2.230 + 12 2 11 4 51.08 65.94 68.00 67.59 98.99 90.97 0 48154 12562 2900 .0602 .0602 0.261 0.231 0.808 0 76.0 2771 0 0 130 2900 -991 1909 991 0 736 1003 3.700 3.763 2.204 + 12 2 11 5 51.80 65.87 68.00 67.57 98.98 90.94 0 48154 12562 2411 .0501 .0501 0.261 0.192 0.798 0 63.2 2303 0 0 108 2411 -826 1585 826 0 620 864 3.700 3.717 2.179 + 12 2 12 0 52.70 65.77 68.00 67.56 98.96 90.92 0 48154 12562 1536 .0319 .0319 0.261 0.122 0.781 0 40.3 1467 0 0 69 1536 -527 1009 527 -0 404 472 3.700 3.636 2.136 + 12 2 12 1 53.60 65.58 68.00 67.54 98.94 90.88 0 48154 12562 990 .0206 .0206 0.261 .0788 0.770 0 25.9 945 0 0 44 990 -341 649 341 0 264 308 3.700 3.586 2.108 + 12 2 12 2 54.50 65.44 68.00 67.50 98.91 90.82 0 48154 12562 461 .0096 .0096 0.261 .0367 0.759 0 12.1 441 0 0 21 461 -160 302 160 -0 125 145 3.700 3.537 2.077 + 12 2 12 3 55.40 65.28 68.00 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 4 56.30 65.18 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 12 5 57.20 65.13 68.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 0 57.50 65.11 68.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 1 57.80 65.08 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 2 58.10 65.03 68.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 3 58.40 65.02 68.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 4 58.70 64.99 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 13 5 59.00 64.96 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 0 58.97 64.92 68.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 1 58.94 64.88 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 2 58.91 64.85 68.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 3 58.88 64.81 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 4 58.85 64.77 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 14 5 58.82 64.73 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 0 58.52 64.68 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 1 58.22 64.64 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 2 57.92 64.59 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 3 57.62 64.54 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 4 57.32 64.48 68.40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 15 5 57.02 64.46 68.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 0 56.66 64.41 68.38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 1 56.30 64.36 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 2 55.94 64.31 68.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 3 55.58 64.26 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 4 55.22 64.15 68.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 16 5 54.86 64.09 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 269 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 2 17 0 54.56 64.04 68.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 1 54.26 63.92 68.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 2 53.96 63.85 68.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 3 53.66 63.80 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 4 53.36 63.66 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 2 17 5 53.06 63.58 68.00 67.10 98.50 90.05 0 48154 12562 1031 .0214 .0214 0.261 .0821 0.771 0 27.0 985 0 0 46 1031 -380 652 380 -1 274 321 3.700 3.589 2.033 + 12 2 18 0 53.00 63.67 68.00 67.06 98.47 90.03 0 48154 12562 1672 .0347 .0347 0.261 0.133 0.783 0 43.8 1598 0 0 75 1672 -616 1056 616 0 438 513 3.700 3.649 2.060 + 12 2 18 1 52.94 63.62 68.00 67.08 98.48 90.06 0 48154 12562 2042 .0424 .0424 0.261 0.163 0.791 0 53.5 1951 0 0 91 2042 -751 1291 751 -0 530 621 3.700 3.683 2.079 + 12 2 18 2 52.88 63.62 68.00 67.07 98.47 90.05 0 48154 12562 2204 .0458 .0458 0.261 0.175 0.794 0 57.8 2106 0 0 99 2204 -812 1393 812 0 569 668 3.700 3.698 2.085 + 12 2 18 3 52.82 63.55 68.00 67.07 98.47 90.04 0 48154 12562 2521 .0523 .0523 0.261 0.201 0.800 0 66.1 2408 0 0 113 2521 -928 1592 928 0 646 759 3.700 3.727 2.099 + 12 2 18 4 52.76 63.55 68.00 67.06 98.46 90.02 0 48154 12562 2731 .0567 .0567 0.261 0.217 0.804 0 71.6 2609 0 0 122 2731 -1008 1724 1008 0 696 819 3.700 3.747 2.106 + 12 2 18 5 52.70 63.48 68.00 67.05 98.46 90.01 0 48154 12562 3029 .0629 .0629 0.261 0.241 0.810 0 79.4 2894 0 0 135 3029 -1118 1911 1118 -0 767 902 3.700 3.775 2.118 + 12 2 19 0 52.19 63.49 68.00 67.04 98.44 89.99 0 48154 12562 2998 .0623 .0623 0.261 0.239 0.810 0 78.6 2864 0 0 134 2998 -1109 1889 1109 0 759 893 3.700 3.772 2.115 + 12 2 19 1 51.68 63.38 68.00 67.04 98.44 89.99 0 48154 12562 3345 .0695 .0695 0.261 0.266 0.817 0 87.7 3195 0 0 150 3345 -1237 2108 1237 -0 840 990 3.700 3.804 2.130 + 12 2 19 2 51.17 63.38 68.00 67.02 98.42 89.95 0 48154 12562 3589 .0745 .0745 0.261 0.286 0.821 0 94.1 3429 0 0 161 3589 -1331 2258 1331 0 896 1057 3.700 3.827 2.137 + 12 2 19 3 50.66 63.32 68.00 67.02 98.42 89.95 0 48154 12562 3932 .0816 .0816 0.261 0.313 0.828 0 103.1 3756 0 0 176 3932 -1458 2473 1458 0 973 1149 3.700 3.858 2.152 + 12 2 19 4 50.15 63.36 68.00 67.01 98.41 89.93 0 48154 12562 4171 .0866 .0866 0.261 0.332 0.833 0 109.4 3985 0 0 187 4171 -1550 2622 1550 0 1027 1213 3.700 3.880 2.161 + 12 2 19 5 49.64 63.28 68.00 67.01 98.42 89.94 0 48154 12562 4515 .0938 .0938 0.261 0.359 0.840 0 118.4 4313 0 0 202 4515 -1676 2839 1676 0 1102 1304 3.700 3.912 2.176 + 12 2 20 0 49.13 63.29 68.00 67.00 98.40 89.92 0 48154 12562 5034 0.105 0.105 0.261 0.401 0.850 0 132.0 4809 0 0 225 5034 -1872 3162 1872 0 1214 1576 3.700 3.960 2.197 + 12 2 20 1 48.62 63.38 68.00 67.00 98.40 89.92 0 48154 12562 5390 0.112 0.112 0.261 0.429 0.857 0 141.3 5149 0 0 241 5390 -2004 3386 2004 0 1289 1667 3.700 3.993 2.212 + 12 2 20 2 48.11 63.47 68.00 67.02 98.42 89.95 0 48154 12562 5736 0.119 0.119 0.261 0.457 0.864 0 150.4 5480 0 0 257 5736 -2128 3608 2128 0 1361 1754 3.700 4.026 2.230 + 12 2 20 3 47.60 63.59 68.00 67.03 98.44 89.98 0 48154 12562 5981 0.124 0.124 0.261 0.476 0.869 0 156.8 5713 0 0 267 5981 -2214 3766 2214 -0 1411 1815 3.700 4.048 2.244 + 12 2 20 4 47.09 63.68 68.00 67.05 98.46 90.01 0 48154 12562 6287 0.131 0.131 0.261 0.500 0.875 0 164.8 6006 0 0 281 6287 -2321 3966 2321 0 1473 1891 3.700 4.077 2.261 + 12 2 20 5 46.58 63.86 68.00 67.08 98.35 90.02 0 47949 12636 6576 0.137 0.137 0.264 0.520 0.880 0 173.1 6280 0 0 295 6576 -2408 4167 2408 0 1561 1992 3.669 4.024 2.245 + 12 2 21 0 46.10 63.94 68.00 67.11 98.23 90.04 0 47714 12722 7210 0.151 0.151 0.267 0.567 0.892 0 190.7 6884 0 0 325 7210 -2613 4596 2613 0 1723 2185 3.635 3.995 2.243 + 12 2 21 1 45.62 64.07 68.00 67.14 98.10 90.04 0 47480 12807 7513 0.158 0.158 0.270 0.587 0.897 0 199.7 7172 0 0 341 7513 -2700 4813 2700 0 1821 2299 3.601 3.938 2.226 + 12 2 21 2 45.14 64.17 68.00 67.17 97.98 90.06 0 47245 12892 7802 0.165 0.165 0.273 0.605 0.901 0 208.5 7446 0 0 356 7802 -2776 5026 2776 0 1918 2410 3.567 3.883 2.211 + 12 2 21 3 44.66 64.26 68.00 67.19 98.42 90.49 0 47881 13280 8093 0.168 0.172 0.276 0.612 0.903 0 213.4 7543 0 185 364 8093 -2846 5247 2846 -0 1930 2616 3.533 3.908 2.116 + 12 2 21 4 44.18 64.35 68.00 67.21 98.40 90.58 0 47825 13428 8382 0.174 0.179 0.279 0.628 0.907 0 221.2 7775 0 229 377 8382 -2920 5461 2920 0 2008 2751 3.500 3.872 2.089 + 12 2 21 5 43.70 64.45 68.00 67.24 98.39 90.67 0 47769 13575 8657 0.180 0.186 0.283 0.641 0.910 0 228.8 7993 0 274 390 8657 -2988 5669 2988 0 2084 2884 3.466 3.836 2.063 + 12 2 22 0 43.28 64.54 68.00 67.26 98.38 90.74 0 47720 13705 9610 0.200 0.207 0.285 0.706 0.926 0 254.2 8836 0 339 434 9610 -3291 6319 3291 -0 2289 3198 3.438 3.861 2.064 + 12 2 22 1 42.86 64.73 68.00 67.28 98.37 90.82 0 47671 13834 9901 0.206 0.215 0.288 0.720 0.930 0 262.2 9068 0 386 447 9901 -3361 6540 3361 0 2364 3334 3.409 3.835 2.045 + 12 2 22 2 42.44 64.86 68.00 67.32 98.38 90.93 0 47622 13963 10156 0.212 0.221 0.291 0.732 0.933 0 269.2 9265 0 432 459 10156 -3408 6748 3408 0 2433 3461 3.381 3.808 2.030 + 12 2 22 3 42.02 64.95 68.00 67.35 98.38 91.02 0 47573 14093 10435 0.218 0.228 0.294 0.746 0.936 0 276.9 9482 0 480 472 10435 -3468 6967 3468 0 2507 3596 3.353 3.783 2.014 + 12 2 22 4 41.60 65.06 68.00 67.37 98.37 91.09 0 47524 14222 10703 0.224 0.235 0.297 0.758 0.939 0 284.3 9688 0 529 485 10703 -3525 7177 3525 0 2578 3729 3.325 3.758 1.998 + 12 2 22 5 41.18 65.17 68.00 67.40 98.36 91.18 0 47475 14352 10936 0.229 0.241 0.300 0.768 0.942 0 290.8 9862 0 578 496 10936 -3569 7368 3569 0 2643 3853 3.297 3.732 1.982 + 12 2 23 0 41.27 65.26 67.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 1 41.36 63.78 67.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 2 41.45 63.43 67.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 3 41.54 63.23 67.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 4 41.63 63.10 67.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 2 23 5 41.72 62.94 67.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Thu 03-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 3 0 0 41.24 62.84 67.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 1 40.76 62.79 67.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 2 40.28 62.61 66.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 3 39.80 62.52 66.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 4 39.32 62.36 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 0 5 38.84 62.28 66.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 270 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 1 0 38.45 62.23 66.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 1 38.06 62.09 66.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 2 37.67 62.05 66.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 3 37.28 61.95 66.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 4 36.89 61.95 66.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 1 5 36.50 61.84 66.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 0 35.90 61.77 66.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 1 35.30 61.73 66.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 2 34.70 61.72 66.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 3 34.10 61.64 66.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 4 33.50 61.54 66.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 2 5 32.90 61.44 65.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 0 32.54 61.34 65.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 1 32.18 61.25 65.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 2 31.82 61.15 65.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 3 31.46 61.05 65.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 4 31.10 60.94 65.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 3 5 30.74 60.84 65.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 0 30.59 60.73 65.47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 1 30.44 60.62 65.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 2 30.29 60.51 65.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 3 30.14 60.40 65.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 4 29.99 60.29 65.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 4 5 29.84 60.18 65.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 0 29.54 60.06 65.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 1 29.24 59.95 65.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 5 2 28.94 59.83 65.00 64.36 98.37 95.67 0 0 0 5304 0 0 1.000 0 0 0.0282 35.5 0 1408 0 61 1469 -278 1192 277 -1 0 1605 0 0 0.811 + 12 3 5 3 28.64 59.89 65.00 64.31 98.33 95.62 0 0 0 13067 0 0 1.000 0 0 0.0601 75.9 0 3006 0 129 3136 -595 2541 595 0 0 3272 0 0 0.810 + 12 3 5 4 28.34 59.99 65.00 64.32 98.33 95.63 0 0 0 14969 0 0 1.000 0 0 0.0700 88.4 0 3502 0 151 3653 -693 2960 693 0 0 3789 0 0 0.810 + 12 3 5 5 28.04 59.96 65.00 64.33 98.34 95.64 0 0 0 16213 0 0 1.000 0 0 0.0791 99.8 0 3953 0 170 4124 -780 3343 780 0 0 4260 0 0 0.811 + 12 3 6 0 28.07 59.94 65.95 64.33 98.34 95.65 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9863 40977 11176 1313 0 52290 0 0 0.786 + 12 3 6 1 28.10 64.26 66.50 65.15 99.16 96.41 0 0 0 4786 0 0 1.000 0 0 0.824 1040 0 41190 0 1774 42964 -8341 33999 8964 624 0 43100 0 0 0.791 + 12 3 6 2 28.13 63.95 66.50 66.16 100.17 97.56 0 0 0 36865 0 0 1.000 0 0 0.404 509.7 0 20187 0 870 21057 -3753 17304 3753 0 0 21193 0 0 0.822 + 12 3 6 3 28.16 62.15 66.50 66.13 100.15 97.55 0 0 0 37439 0 0 1.000 0 0 0.405 511.7 0 20267 0 873 21140 -3773 17366 3773 0 0 21276 0 0 0.822 + 12 3 6 4 28.19 62.24 66.50 65.91 99.93 97.25 0 0 0 63815 0 0 1.000 0 0 0.416 524.8 0 20786 0 895 21681 -4038 17643 4038 0 0 21818 0 0 0.814 + 12 3 6 5 28.22 62.41 66.50 65.93 99.94 97.27 0 0 0 56237 0 0 1.000 0 0 0.381 481.5 0 19073 0 822 19894 -3695 16199 3695 -0 0 20031 0 0 0.814 + 12 3 7 0 28.52 62.51 67.13 65.95 99.96 97.29 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9670 41613 10541 870 0 52290 0 0 0.798 + 12 3 7 1 28.82 64.87 67.60 66.50 100.52 97.81 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9817 41690 10464 647 0 52290 0 0 0.799 + 12 3 7 2 29.12 65.38 67.95 67.21 101.22 98.59 0 0 0 244k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9382 42281 9872 490 0 52290 0 0 0.811 + 12 3 7 3 29.42 65.45 68.00 67.59 101.60 98.99 0 0 0 72328 0 0 1.000 0 0 0.739 933.3 0 36966 0 1592 38558 -6893 31619 6939 46 0 38694 0 0 0.820 + 12 3 7 4 29.72 65.07 68.00 67.64 101.65 99.06 0 0 0 59343 0 0 1.000 0 0 0.663 837.2 0 33158 0 1428 34587 -6165 28422 6165 -0 0 34723 0 0 0.822 + 12 3 7 5 30.02 64.98 68.00 67.60 101.61 99.00 0 0 0 56392 0 0 1.000 0 0 0.584 736.9 0 29187 0 1257 30444 -5472 24972 5472 -0 0 30580 0 0 0.820 + 12 3 8 0 31.40 65.08 68.00 67.58 101.60 98.96 0 0 0 50394 0 0 1.000 0 0 0.507 639.9 0 25344 0 1092 26436 -4776 21660 4776 0 0 26572 0 0 0.819 + 12 3 8 1 32.78 64.98 68.00 67.60 101.61 98.98 0 0 0 41902 0 0 1.000 0 0 0.434 547.2 0 21676 0 934 22609 -4073 18536 4073 0 0 22746 0 0 0.820 + 12 3 8 2 34.16 64.91 68.00 67.58 101.60 98.97 0 0 0 37474 0 0 1.000 0 0 0.377 476.3 0 18866 0 813 19678 -3555 16123 3555 0 0 19815 0 0 0.819 + 12 3 8 3 35.54 64.77 68.00 67.58 101.59 98.96 0 0 0 33025 0 0 1.000 0 0 0.328 413.8 0 16389 0 706 17095 -3093 14002 3093 0 0 17231 0 0 0.819 + 12 3 8 4 36.92 64.69 68.00 67.56 101.57 98.93 0 0 0 29923 0 0 1.000 0 0 0.286 361.5 0 14317 0 617 14934 -2711 12222 2711 0 0 15070 0 0 0.818 + 12 3 8 5 38.30 64.56 68.00 67.32 98.06 91.36 0 47139 15242 15671 0.331 0.357 0.332 1.000 1.000 0 419.7 13796 0 1159 716 15671 -4955 10716 4955 0 4231 6242 3.112 3.261 1.755 + 12 3 9 0 38.84 65.35 68.00 67.28 98.06 91.12 0 47202 15074 14818 0.312 0.335 0.317 0.989 0.997 0 396.3 13098 0 1044 676 14818 -4802 10016 4802 0 3480 5336 3.146 3.764 1.926 + 12 3 9 1 39.38 65.47 68.00 67.44 98.26 91.36 0 47265 14907 13362 0.281 0.301 0.313 0.902 0.976 0 356.9 11864 0 889 609 13362 -4247 9115 4247 0 3189 4823 3.180 3.721 1.945 + 12 3 9 2 39.92 65.27 68.00 67.46 98.33 91.37 0 47328 14741 12146 0.255 0.272 0.309 0.830 0.957 0 324.0 10834 0 760 553 12146 -3868 8278 3868 0 2934 4383 3.215 3.692 1.949 + 12 3 9 3 40.46 65.19 68.00 67.42 98.33 91.27 0 47391 14574 11052 0.231 0.246 0.305 0.764 0.941 0 294.4 9904 0 646 502 11052 -3564 7488 3564 0 2699 3983 3.250 3.670 1.947 + 12 3 9 4 41.00 65.05 68.00 67.41 98.36 91.20 0 47454 14407 9917 0.207 0.219 0.301 0.693 0.923 0 263.8 8929 0 538 450 9917 -3226 6692 3226 0 2451 3575 3.285 3.644 1.946 + 12 3 9 5 41.54 64.92 68.00 67.38 98.37 91.11 0 47517 14241 8842 0.185 0.194 0.298 0.625 0.906 0 234.9 7999 0 441 401 8842 -2907 5934 2907 0 2210 3188 3.321 3.620 1.945 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 271 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 10 0 42.32 64.80 68.00 67.36 98.41 90.99 0 47608 14000 9225 0.192 0.201 0.292 0.664 0.916 0 244.6 8406 0 402 417 9225 -3076 6148 3076 0 2256 3211 3.373 3.726 2.000 + 12 3 10 1 43.10 64.97 68.00 67.33 98.44 90.87 0 47699 13760 8380 0.175 0.181 0.287 0.613 0.903 0 221.8 7693 0 309 378 8380 -2834 5546 2834 -0 2053 2877 3.425 3.747 2.024 + 12 3 10 2 43.88 64.99 68.00 67.35 98.52 90.84 0 47790 13520 7497 0.156 0.161 0.281 0.558 0.889 0 198.0 6935 0 225 338 7497 -2552 4946 2552 0 1841 2541 3.479 3.766 2.057 + 12 3 10 3 44.66 64.80 68.00 67.35 98.58 90.77 0 47881 13280 6764 0.141 0.144 0.276 0.512 0.878 0 178.3 6305 0 155 304 6764 -2326 4438 2326 0 1659 2255 3.533 3.799 2.095 + 12 3 10 4 45.44 64.89 68.00 67.32 98.22 90.34 0 47392 12839 6008 0.127 0.127 0.271 0.468 0.867 0 160.0 5735 0 0 273 6008 -2100 3908 2100 0 1517 1927 3.588 3.780 2.183 + 12 3 10 5 46.22 64.73 68.00 67.32 98.48 90.41 0 47773 12700 5273 0.110 0.110 0.266 0.415 0.854 0 139.3 5035 0 0 238 5273 -1859 3414 1859 -0 1310 1684 3.644 3.844 2.206 + 12 3 11 0 46.58 64.85 68.00 67.29 98.56 90.40 0 47949 12636 5194 0.108 0.108 0.264 0.411 0.853 0 136.7 4961 0 0 233 5194 -1846 3348 1846 -0 1272 1642 3.669 3.899 2.224 + 12 3 11 1 46.94 64.74 68.00 67.31 98.69 90.44 0 48124 12572 4822 0.100 0.100 0.261 0.384 0.846 0 126.5 4606 0 0 216 4822 -1719 3103 1719 0 1172 1524 3.696 3.930 2.236 + 12 3 11 2 47.30 65.02 68.00 67.29 98.70 90.43 0 48154 12562 4245 .0882 .0882 0.261 0.338 0.834 0 111.3 4055 0 0 190 4245 -1517 2728 1517 0 1043 1370 3.700 3.887 2.213 + 12 3 11 3 47.66 64.95 68.00 67.34 98.74 90.50 0 48154 12562 3890 .0808 .0808 0.261 0.310 0.827 0 102.0 3716 0 0 174 3890 -1382 2508 1382 0 964 1275 3.700 3.854 2.204 + 12 3 11 4 48.02 65.09 68.00 67.33 98.73 90.48 0 48154 12562 3404 .0707 .0707 0.261 0.271 0.818 0 89.2 3252 0 0 152 3404 -1211 2194 1211 0 854 1142 3.700 3.809 2.181 + 12 3 11 5 48.38 64.75 68.00 67.35 98.75 90.52 0 48154 12562 3075 .0639 .0639 0.261 0.245 0.811 0 80.6 2937 0 0 138 3075 -1090 1985 1090 0 777 1051 3.700 3.779 2.169 + 12 3 12 0 48.86 65.05 68.00 67.30 98.70 90.44 0 48154 12562 2118 .0440 .0440 0.261 0.169 0.792 0 55.5 2024 0 0 95 2118 -756 1362 756 -0 548 780 3.700 3.690 2.118 + 12 3 12 1 49.34 64.73 68.00 67.34 98.75 90.51 0 48154 12562 1768 .0367 .0367 0.261 0.141 0.785 0 46.4 1689 0 0 79 1768 -628 1141 628 0 462 677 3.700 3.658 2.109 + 12 3 12 2 49.82 64.78 68.00 67.29 98.70 90.43 0 48154 12562 1259 .0261 .0261 0.261 0.100 0.775 0 33.0 1203 0 0 56 1259 -450 809 450 0 333 526 3.700 3.610 2.078 + 12 3 12 3 50.30 64.69 68.00 67.30 98.70 90.43 0 48154 12562 878 .0182 .0182 0.261 .0699 0.767 0 23.0 839 0 0 39 878 -314 565 314 0 235 410 3.700 3.575 2.061 + 12 3 12 4 50.78 64.56 68.00 67.29 98.69 90.42 0 48154 12562 497 .0103 .0103 0.261 .0396 0.760 0 13.0 475 0 0 22 497 -178 320 178 0 134 293 3.700 3.540 2.042 + 12 3 12 5 51.26 64.49 68.00 67.26 98.67 90.38 0 48154 12562 161 .0033 .0033 0.261 .0128 0.753 0 4.2 154 0 0 7 161 -58 103 58 0 44 187 3.700 3.509 2.023 + 12 3 13 0 51.59 64.40 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 1 51.92 64.43 68.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 2 52.25 64.40 68.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 3 52.58 64.47 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 4 52.91 64.44 68.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 13 5 53.24 64.51 68.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 0 53.51 64.60 68.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 1 53.78 64.67 68.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 2 54.05 64.52 68.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 3 54.32 64.73 68.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 4 54.59 64.69 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 14 5 54.86 64.77 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 0 54.71 64.87 68.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 1 54.56 64.85 68.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 2 54.41 64.99 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 3 54.26 64.87 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 4 54.11 64.90 68.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 15 5 53.96 64.79 68.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 0 53.54 64.90 68.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 1 53.12 64.89 68.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 2 52.70 64.91 68.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 3 52.28 64.94 68.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 4 51.86 64.95 68.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 16 5 51.44 64.98 68.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 0 51.05 65.01 68.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 1 50.66 64.85 68.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 2 50.27 65.06 68.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + 12 3 17 3 49.88 64.65 68.00 67.37 98.77 90.56 0 48154 12562 2309 .0480 .0480 0.261 0.184 0.796 0 60.5 2206 0 0 103 2309 -817 1493 816 -1 595 698 3.700 3.708 2.138 + 12 3 17 4 49.49 65.40 68.00 67.30 98.70 90.45 0 48154 12562 3215 .0668 .0668 0.261 0.256 0.814 0 84.3 3071 0 0 144 3215 -1146 2069 1146 0 810 954 3.700 3.792 2.169 + 12 3 17 5 49.10 65.34 68.00 67.42 98.82 90.65 0 48154 12562 3578 .0743 .0743 0.261 0.285 0.821 0 93.8 3418 0 0 160 3578 -1255 2323 1255 0 893 1053 3.700 3.825 2.205 + 12 3 18 0 48.05 65.45 68.00 67.42 98.82 90.66 0 48154 12562 3573 .0742 .0742 0.261 0.284 0.821 0 93.7 3413 0 0 160 3573 -1253 2320 1253 0 892 1189 3.700 3.825 2.205 + 12 3 18 1 47.00 65.49 68.00 67.44 98.84 90.69 0 48154 12562 4171 .0866 .0866 0.261 0.332 0.833 0 109.3 3984 0 0 187 4171 -1459 2711 1459 -0 1027 1350 3.700 3.880 2.235 + 12 3 18 2 45.95 65.66 68.00 67.46 98.53 90.63 0 47641 12748 4734 .0994 .0994 0.268 0.371 0.843 0 125.4 4520 0 0 214 4734 -1630 3104 1630 -0 1205 1555 3.624 3.752 2.188 + 12 3 18 3 44.90 65.83 68.00 67.49 98.73 90.99 0 47909 13206 5273 0.110 0.112 0.274 0.401 0.850 0 138.9 4927 0 109 237 5273 -1781 3492 1781 0 1330 1812 3.550 3.705 2.084 + 12 3 18 4 43.85 66.05 68.00 67.53 98.69 91.16 0 47786 13529 5845 0.122 0.125 0.281 0.435 0.859 0 154.4 5405 0 177 263 5845 -1935 3909 1935 0 1488 2065 3.477 3.633 2.028 + 12 3 18 5 42.80 66.29 68.00 67.57 98.66 91.33 0 47664 13852 6404 0.133 0.139 0.289 0.465 0.866 0 169.6 5862 0 253 289 6404 -2078 4326 2078 0 1643 2322 3.405 3.567 1.979 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 272 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 3 19 0 42.65 66.39 68.00 67.62 98.69 91.41 0 47646 13899 6462 0.135 0.140 0.290 0.468 0.867 0 171.2 5906 0 263 292 6462 -2080 4381 2080 0 1661 2353 3.395 3.556 1.977 + 12 3 19 1 42.50 66.41 68.00 67.64 98.70 91.47 0 47629 13945 6721 0.140 0.146 0.291 0.485 0.871 0 178.1 6135 0 282 304 6721 -2151 4570 2151 0 1723 2446 3.385 3.561 1.979 + 12 3 19 2 42.35 66.53 68.00 67.65 98.70 91.50 0 47611 13991 6947 0.145 0.151 0.292 0.500 0.875 0 184.2 6332 0 301 314 6947 -2216 4732 2216 0 1777 2529 3.375 3.563 1.978 + 12 3 19 3 42.20 66.50 68.00 67.67 98.71 91.55 0 47594 14037 7216 0.151 0.158 0.293 0.518 0.879 0 191.4 6569 0 321 327 7216 -2288 4928 2288 0 1841 2625 3.365 3.568 1.980 + 12 3 19 4 42.05 66.55 68.00 67.67 98.70 91.57 0 47576 14083 7403 0.154 0.162 0.294 0.529 0.882 0 196.4 6729 0 339 335 7403 -2342 5061 2342 0 1887 2697 3.355 3.567 1.977 + 12 3 19 5 41.90 66.51 68.00 67.68 98.70 91.60 0 47559 14130 7653 0.160 0.168 0.295 0.546 0.886 0 203.1 6947 0 360 347 7653 -2411 5242 2411 -0 1946 2789 3.345 3.570 1.977 + 12 3 20 0 41.60 66.49 68.00 67.68 98.67 91.63 0 47524 14222 8051 0.168 0.177 0.297 0.570 0.893 0 213.9 7288 0 398 365 8051 -2528 5524 2528 0 2041 2941 3.325 3.570 1.970 + 12 3 20 1 41.30 66.59 68.00 67.68 98.65 91.65 0 47489 14315 8226 0.172 0.181 0.299 0.579 0.895 0 218.7 7426 0 427 373 8226 -2571 5654 2571 0 2089 3025 3.305 3.554 1.957 + 12 3 20 2 41.00 66.51 68.00 67.70 98.65 91.72 0 47454 14407 8525 0.178 0.189 0.301 0.596 0.899 0 226.8 7676 0 462 387 8525 -2646 5879 2646 0 2164 3149 3.285 3.548 1.951 + 12 3 20 3 40.70 66.55 68.00 67.69 98.62 91.73 0 47419 14500 8684 0.182 0.193 0.304 0.603 0.901 0 231.2 7798 0 491 394 8684 -2687 5997 2687 0 2208 3230 3.266 3.531 1.938 + 12 3 20 4 40.40 66.47 68.00 67.70 98.60 91.77 0 47384 14592 8984 0.188 0.200 0.306 0.620 0.905 0 239.3 8047 0 529 408 8984 -2764 6220 2764 0 2283 3357 3.246 3.525 1.932 + 12 3 20 5 40.10 66.49 68.00 67.69 98.57 91.78 0 47349 14685 9118 0.191 0.204 0.308 0.625 0.906 0 243.1 8145 0 558 415 9118 -2797 6320 2797 0 2322 3431 3.227 3.508 1.918 + 12 3 21 0 40.43 66.45 68.00 67.70 98.60 91.76 0 47387 14583 9564 0.200 0.213 0.306 0.661 0.915 0 254.8 8568 0 561 435 9564 -2946 6618 2946 0 2402 3534 3.248 3.567 1.948 + 12 3 21 1 40.76 66.43 68.00 67.69 98.62 91.73 0 47426 14481 9654 0.202 0.214 0.303 0.671 0.918 0 257.0 8674 0 542 438 9654 -2989 6665 2989 0 2407 3524 3.270 3.603 1.968 + 12 3 21 2 41.09 66.39 68.00 67.69 98.64 91.70 0 47464 14379 9724 0.203 0.215 0.301 0.681 0.920 0 258.6 8762 0 520 441 9724 -3024 6700 3024 -0 2408 3506 3.291 3.639 1.988 + 12 3 21 3 41.42 66.33 68.00 67.68 98.66 91.66 0 47503 14278 9774 0.204 0.215 0.298 0.690 0.922 0 259.7 8833 0 497 443 9774 -3055 6719 3055 -0 2404 3481 3.313 3.674 2.009 + 12 3 21 4 41.75 66.22 68.00 67.67 98.68 91.62 0 47541 14176 9816 0.205 0.215 0.296 0.697 0.924 0 260.6 8898 0 473 445 9816 -3087 6730 3087 0 2398 3453 3.335 3.710 2.029 + 12 3 21 5 42.08 66.23 68.00 67.65 98.68 91.56 0 47580 14074 9817 0.205 0.215 0.294 0.702 0.926 0 260.5 8926 0 447 444 9817 -3109 6708 3109 0 2384 3411 3.357 3.744 2.048 + 12 3 22 0 42.05 66.23 68.00 67.65 98.68 91.56 0 47576 14083 10605 0.221 0.232 0.294 0.758 0.940 0 281.4 9640 0 485 480 10605 -3356 7249 3356 0 2538 3640 3.355 3.798 2.069 + 12 3 22 1 42.02 66.30 68.00 67.65 98.68 91.57 0 47573 14093 10765 0.225 0.235 0.294 0.769 0.942 0 285.7 9783 0 495 487 10765 -3406 7360 3406 -0 2570 3689 3.353 3.807 2.072 + 12 3 22 2 41.99 66.34 68.00 67.67 98.69 91.59 0 47569 14102 10901 0.227 0.238 0.294 0.779 0.945 0 289.3 9903 0 504 494 10901 -3440 7461 3440 0 2597 3731 3.351 3.813 2.075 + 12 3 22 3 41.96 66.56 68.00 67.68 98.70 91.61 0 47566 14111 10928 0.228 0.239 0.295 0.780 0.945 0 290.0 9925 0 508 495 10928 -3442 7486 3442 0 2604 3743 3.349 3.812 2.076 + 12 3 22 4 41.93 66.66 68.00 67.71 98.73 91.67 0 47562 14120 11035 0.230 0.242 0.295 0.787 0.947 0 292.9 10020 0 516 500 11035 -3456 7579 3456 0 2625 3778 3.347 3.816 2.082 + 12 3 22 5 41.90 66.74 68.00 67.73 98.75 91.71 0 47559 14130 11130 0.232 0.244 0.295 0.793 0.948 0 295.4 10103 0 523 504 11130 -3474 7656 3474 0 2645 3808 3.345 3.820 2.085 + 12 3 23 0 41.51 66.86 67.80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 1 41.12 65.41 67.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 2 40.73 65.04 67.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 3 40.34 65.08 67.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 4 39.95 64.97 67.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 3 23 5 39.56 64.90 67.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + +RSYS Heating subhour details for Fri 04-Dec + + mon day Hr Sh ToDb Tatt Tzn Tent Tlv Tsup UnMet capFS capMS znLd loadF PLR spdF runF PLF runFAux CFMav qComp qAux qDef qFan qNet qDct qZn qBal1 qBal2 eComp eTot COPfs COPpl COPov + --- --- -- -- ----- ----- ----- ------ ------ ------ ----- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ----- ----- ------ ------ ------ ----- ------ ----- ------ ----- ----- ----- + 12 4 0 0 39.11 64.81 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 1 38.66 64.66 66.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 2 38.21 64.60 66.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 3 37.76 64.51 66.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 4 37.31 64.41 66.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 0 5 36.86 64.26 66.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 0 36.62 64.23 66.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 1 36.38 64.12 66.50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 2 36.14 64.10 66.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 3 35.90 64.00 66.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 4 35.66 63.87 66.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 1 5 35.42 63.76 66.25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 0 34.67 63.65 66.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 1 33.92 63.54 66.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 2 33.17 63.42 66.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 3 32.42 63.31 65.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 4 31.67 63.19 65.90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 2 5 30.92 63.08 65.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 273 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 3 0 30.80 62.96 65.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 1 30.68 62.84 65.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 2 30.56 62.72 65.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 3 30.44 62.59 65.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 4 30.32 62.47 65.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 3 5 30.20 62.34 65.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 0 30.17 62.22 65.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 1 30.14 62.09 65.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 2 30.11 61.97 65.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 3 30.08 61.84 65.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 4 30.05 61.70 65.10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 4 5 30.02 61.56 65.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 5 0 29.99 61.43 65.00 64.58 98.59 95.98 0 0 0 1301 0 0 1.000 0 0 0.0131 16.5 0 655 0 28 683 -124 560 123 -1 0 819 0 0 0.820 + 12 4 5 1 29.96 61.37 65.00 64.53 98.54 95.92 0 0 0 5653 0 0 1.000 0 0 0.0520 65.7 0 2602 0 112 2714 -493 2221 493 -0 0 2851 0 0 0.818 + 12 4 5 2 29.93 61.47 65.00 64.52 98.53 95.91 0 0 0 6589 0 0 1.000 0 0 0.0594 74.9 0 2968 0 128 3096 -564 2532 564 0 0 3233 0 0 0.818 + 12 4 5 3 29.90 61.42 65.00 64.53 98.54 95.92 0 0 0 7239 0 0 1.000 0 0 0.0665 83.9 0 3324 0 143 3467 -630 2836 630 0 0 3603 0 0 0.818 + 12 4 5 4 29.87 61.35 65.00 64.52 98.53 95.91 0 0 0 8175 0 0 1.000 0 0 0.0737 93.0 0 3683 0 159 3842 -700 3142 700 0 0 3979 0 0 0.818 + 12 4 5 5 29.84 61.30 65.00 64.51 98.53 95.90 0 0 0 9192 0 0 1.000 0 0 0.0810 102.3 0 4050 0 174 4225 -771 3454 771 0 0 4361 0 0 0.818 + 12 4 6 0 29.72 61.25 65.96 64.51 98.52 95.90 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9515 41320 10834 1318 0 52290 0 0 0.792 + 12 4 6 1 29.60 65.33 66.50 65.33 99.34 96.66 0 0 0 4786 0 0 1.000 0 0 0.819 1034 0 40962 0 1764 42727 -8016 34095 8631 616 0 42863 0 0 0.798 + 12 4 6 2 29.48 65.04 66.50 66.30 100.31 97.77 0 0 0 29017 0 0 1.000 0 0 0.409 516.1 0 20442 0 881 21322 -3682 17641 3682 0 0 21459 0 0 0.827 + 12 4 6 3 29.36 63.35 66.50 66.28 100.29 97.76 0 0 0 29619 0 0 1.000 0 0 0.413 521.9 0 20673 0 890 21564 -3730 17834 3730 -0 0 21700 0 0 0.827 + 12 4 6 4 29.24 63.44 66.50 66.07 100.09 97.48 0 0 0 42143 0 0 1.000 0 0 0.420 530.3 0 21005 0 905 21910 -3948 17961 3948 0 0 22046 0 0 0.820 + 12 4 6 5 29.12 63.59 66.50 66.08 100.10 97.50 0 0 0 37862 0 0 1.000 0 0 0.387 488.0 0 19330 0 833 20162 -3624 16538 3624 0 0 20299 0 0 0.820 + 12 4 7 0 29.42 63.67 67.11 66.10 100.11 97.51 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9363 41945 10208 845 0 52290 0 0 0.804 + 12 4 7 1 29.72 65.95 67.56 66.64 100.66 98.01 0 0 0 4786 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9509 42026 10127 618 0 52290 0 0 0.806 + 12 4 7 2 30.02 66.43 67.89 67.32 101.33 98.77 0 0 0 161k 0 0 1.000 0 0 1.000 1262 0 50000 0 2154 52154 -9091 42603 9551 460 0 52290 0 0 0.817 + 12 4 7 3 30.32 66.48 68.00 67.67 101.69 99.14 0 0 0 66601 0 0 1.000 0 0 0.832 1050 0 41608 0 1792 43400 -7516 35762 7638 122 0 43537 0 0 0.824 + 12 4 7 4 30.62 66.36 68.00 67.78 101.79 99.25 0 0 0 50808 0 0 1.000 0 0 0.716 903.6 0 35789 0 1542 37331 -6461 30870 6461 0 0 37467 0 0 0.827 + 12 4 7 5 30.92 66.21 68.00 67.77 101.78 99.24 0 0 0 45872 0 0 1.000 0 0 0.640 808.1 0 32006 0 1379 33385 -5787 27598 5787 0 0 33521 0 0 0.827 + 12 4 8 0 32.18 66.30 68.00 67.75 101.76 99.20 0 0 0 41272 0 0 1.000 0 0 0.559 705.5 0 27943 0 1204 29146 -5086 24060 5086 0 0 29283 0 0 0.826 + 12 4 8 1 33.44 66.22 68.00 67.76 101.77 99.21 0 0 0 35369 0 0 1.000 0 0 0.487 615.1 0 24362 0 1049 25412 -4423 20988 4423 0 0 25548 0 0 0.826 + 12 4 8 2 34.70 66.17 68.00 67.75 101.76 99.20 0 0 0 31396 0 0 1.000 0 0 0.426 538.3 0 21321 0 918 22240 -3879 18361 3879 0 0 22376 0 0 0.826 + 12 4 8 3 35.96 66.06 68.00 67.74 101.76 99.19 0 0 0 28495 0 0 1.000 0 0 0.384 484.6 0 19195 0 827 20022 -3496 16526 3496 0 0 20158 0 0 0.825 + 12 4 8 4 37.22 66.01 68.00 67.63 98.29 93.16 0 47013 15576 20296 0.430 0.468 0.432 1.000 1.000 0 545.0 17741 0 1625 930 20296 -5306 14990 5306 -0 5662 8353 3.045 3.133 1.824 + 12 4 8 5 38.48 66.61 68.00 67.61 98.37 92.93 0 47160 15186 19157 0.404 0.435 0.406 1.000 1.000 0 512.8 16919 0 1363 875 19157 -5183 13973 5183 0 5234 7609 3.124 3.232 1.870 + 12 4 9 0 39.11 66.82 68.00 67.72 98.52 93.13 0 47233 14991 18902 0.398 0.427 0.400 1.000 1.000 0 505.2 16783 0 1257 862 18902 -5021 13880 5021 0 5113 7368 3.163 3.283 1.919 + 12 4 9 1 39.74 66.83 68.00 67.76 98.61 93.05 0 47307 14796 18223 0.383 0.409 0.385 1.000 1.000 0 486.3 16264 0 1129 830 18223 -4905 13317 4905 0 4868 6963 3.204 3.341 1.951 + 12 4 9 2 40.37 66.88 68.00 67.76 98.66 92.94 0 47380 14602 17694 0.371 0.394 0.373 1.000 1.000 0 471.4 15877 0 1013 804 17694 -4842 12852 4842 0 4668 6622 3.244 3.401 1.982 + 12 4 9 3 41.00 66.79 68.00 67.77 98.71 92.81 0 47454 14407 17069 0.358 0.377 0.360 1.000 1.000 0 454.1 15397 0 897 775 17069 -4756 12313 4756 -0 4440 6248 3.285 3.468 2.015 + 12 4 9 4 41.63 66.89 68.00 67.75 98.75 92.64 0 47527 14213 16495 0.345 0.362 0.347 1.000 1.000 0 438.1 14960 0 787 747 16495 -4695 11800 4695 -0 4228 5899 3.327 3.539 2.048 + 12 4 9 5 42.26 66.91 68.00 67.77 98.81 92.52 0 47601 14019 15958 0.333 0.348 0.335 1.000 1.000 0 423.2 14553 0 682 722 15958 -4615 11343 4615 0 4026 5567 3.369 3.615 2.089 + 12 4 10 0 42.41 66.89 68.00 67.78 98.83 92.56 0 47618 13972 16038 0.335 0.349 0.337 1.000 1.000 0 425.2 14648 0 665 725 16038 -4622 11416 4622 0 4037 5563 3.379 3.629 2.104 + 12 4 10 1 42.56 67.10 68.00 67.77 98.84 92.44 0 47636 13926 15650 0.327 0.340 0.329 1.000 1.000 0 414.7 14310 0 632 708 15650 -4571 11079 4571 0 3916 5392 3.389 3.655 2.108 + 12 4 10 2 42.71 67.23 68.00 67.81 98.89 92.38 0 47653 13880 15315 0.319 0.333 0.321 1.000 1.000 0 405.7 14021 0 602 692 15314 -4503 10811 4503 0 3809 5239 3.399 3.681 2.119 + 12 4 10 3 42.86 67.29 68.00 67.83 98.92 92.30 0 47671 13834 14983 0.312 0.325 0.314 1.000 1.000 0 396.8 13734 0 572 677 14983 -4442 10541 4442 0 3704 5090 3.409 3.708 2.128 + 12 4 10 4 43.01 67.34 68.00 67.84 98.95 92.20 0 47688 13788 14647 0.305 0.317 0.307 1.000 1.000 0 387.7 13443 0 543 661 14647 -4389 10258 4389 0 3598 4939 3.419 3.736 2.136 + 12 4 10 5 43.16 67.39 68.00 67.86 98.97 92.09 0 47706 13742 14311 0.298 0.309 0.300 1.000 1.000 0 378.7 13150 0 514 646 14311 -4337 9974 4337 0 3492 4789 3.430 3.766 2.144 + 12 4 11 0 43.49 67.67 68.00 67.86 99.00 91.83 0 47744 13640 13637 0.284 0.294 0.286 1.000 1.000 0 360.5 12564 0 456 615 13634 -4244 9390 4244 -0 3277 4484 3.452 3.834 2.160 + 12 4 11 1 43.82 67.74 68.00 67.91 99.08 91.84 0 47783 13538 13170 0.274 0.283 0.282 0.978 0.995 0 347.9 12174 0 402 594 13170 -4101 9069 4101 0 2895 4028 3.475 4.205 2.331 + 12 4 11 2 44.15 67.66 68.00 67.93 99.12 91.85 0 47821 13437 12712 0.264 0.272 0.279 0.951 0.988 0 335.6 11789 0 351 573 12712 -3964 8748 3964 0 2798 3857 3.497 4.214 2.351 + 12 4 11 3 44.48 67.89 68.00 67.92 99.14 91.81 0 47860 13335 12032 0.250 0.256 0.277 0.907 0.977 0 317.4 11195 0 295 541 12032 -3772 8260 3772 0 2662 3636 3.520 4.205 2.361 + 12 4 11 4 44.81 67.89 68.00 67.96 99.20 91.84 0 47898 13234 11514 0.239 0.245 0.275 0.874 0.968 0 303.4 10749 0 247 518 11514 -3604 7910 3604 0 2554 3455 3.543 4.209 2.383 + 12 4 11 5 45.14 67.96 68.00 67.97 98.78 91.48 0 47245 12892 10950 0.232 0.232 0.273 0.849 0.962 0 292.6 10450 0 0 499 10950 -3441 7508 3441 0 2521 3156 3.567 4.146 2.486 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 274 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 12 0 45.29 67.97 68.00 67.98 98.84 91.52 0 47319 12866 9920 0.210 0.210 0.272 0.771 0.943 0 264.6 9468 0 0 451 9920 -3117 6803 3117 0 2317 2905 3.577 4.086 2.457 + 12 4 12 1 45.44 67.85 68.00 67.98 98.89 91.54 0 47392 12839 9283 0.196 0.196 0.271 0.723 0.931 0 247.3 8861 0 0 422 9283 -2920 6362 2920 0 2184 2742 3.588 4.058 2.442 + 12 4 12 2 45.59 67.86 68.00 67.96 98.92 91.52 0 47465 12812 8575 0.181 0.181 0.270 0.669 0.917 0 228.0 8186 0 0 389 8575 -2711 5863 2711 0 2034 2560 3.599 4.024 2.419 + 12 4 12 3 45.74 67.77 68.00 67.97 98.97 91.53 0 47538 12786 7948 0.167 0.167 0.269 0.622 0.905 0 211.1 7588 0 0 360 7948 -2518 5430 2518 0 1899 2396 3.609 3.996 2.404 + 12 4 12 4 45.89 67.77 68.00 67.95 99.00 91.52 0 47612 12759 7451 0.156 0.156 0.268 0.584 0.896 0 197.5 7114 0 0 337 7451 -2370 5080 2370 -0 1788 2261 3.620 3.979 2.391 + 12 4 12 5 46.04 67.69 68.00 67.95 99.05 91.53 0 47685 12732 7020 0.147 0.147 0.267 0.551 0.888 0 185.8 6703 0 0 317 7020 -2239 4781 2239 0 1690 2143 3.631 3.967 2.383 + 12 4 13 0 46.40 67.64 68.00 67.94 99.15 91.54 0 47861 12668 6145 0.128 0.128 0.265 0.485 0.871 0 162.1 5869 0 0 277 6145 -1974 4172 1974 0 1485 1898 3.656 3.953 2.369 + 12 4 13 1 46.76 67.55 68.00 67.93 99.26 91.56 0 48036 12604 5611 0.117 0.117 0.262 0.445 0.861 0 147.5 5360 0 0 252 5611 -1814 3797 1814 0 1350 1738 3.683 3.970 2.371 + 12 4 13 2 47.12 67.47 68.00 67.91 99.32 91.55 0 48154 12562 5114 0.106 0.106 0.261 0.407 0.852 0 134.1 4885 0 0 229 5114 -1663 3451 1663 0 1231 1596 3.700 3.968 2.364 + 12 4 13 3 47.48 67.40 68.00 67.90 99.30 91.52 0 48154 12562 4736 .0984 .0984 0.261 0.377 0.844 0 124.2 4524 0 0 212 4736 -1544 3192 1544 0 1150 1499 3.700 3.933 2.343 + 12 4 13 4 47.84 67.33 68.00 67.88 99.29 91.50 0 48154 12562 4523 .0939 .0939 0.261 0.360 0.840 0 118.6 4321 0 0 202 4523 -1477 3046 1477 -0 1104 1443 3.700 3.913 2.331 + 12 4 13 5 48.20 67.29 68.00 67.87 99.27 91.47 0 48154 12562 4354 .0904 .0904 0.261 0.347 0.837 0 114.2 4160 0 0 195 4354 -1425 2929 1425 0 1067 1399 3.700 3.897 2.321 + 12 4 14 0 48.47 67.28 68.00 67.86 99.27 91.46 0 48154 12562 4385 .0911 .0911 0.261 0.349 0.837 0 114.9 4189 0 0 196 4385 -1436 2948 1436 -0 1074 1407 3.700 3.900 2.321 + 12 4 14 1 48.74 67.22 68.00 67.86 99.26 91.46 0 48154 12562 4414 .0917 .0917 0.261 0.351 0.838 0 115.7 4216 0 0 197 4414 -1447 2967 1447 0 1080 1414 3.700 3.903 2.322 + 12 4 14 2 49.01 67.27 68.00 67.85 99.25 91.44 0 48154 12562 4362 .0906 .0906 0.261 0.347 0.837 0 114.3 4167 0 0 195 4362 -1432 2930 1432 -0 1069 1400 3.700 3.898 2.318 + 12 4 14 3 49.28 67.33 68.00 67.86 99.26 91.45 0 48154 12562 4210 .0874 .0874 0.261 0.335 0.834 0 110.4 4022 0 0 188 4210 -1381 2830 1381 0 1035 1360 3.700 3.884 2.312 + 12 4 14 4 49.55 67.26 68.00 67.87 99.27 91.47 0 48154 12562 4018 .0834 .0834 0.261 0.320 0.830 0 105.3 3839 0 0 180 4018 -1316 2703 1316 -0 993 1309 3.700 3.866 2.305 + 12 4 14 5 49.82 67.25 68.00 67.86 99.26 91.45 0 48154 12562 3796 .0788 .0788 0.261 0.302 0.826 0 99.5 3626 0 0 170 3796 -1245 2551 1245 0 943 1249 3.700 3.846 2.293 + 12 4 15 0 49.67 67.33 68.00 67.85 99.26 91.45 0 48154 12562 2609 .0542 .0542 0.261 0.208 0.802 0 68.4 2492 0 0 117 2609 -856 1753 856 0 667 920 3.700 3.736 2.236 + 12 4 15 1 49.52 67.22 68.00 67.86 99.27 91.46 0 48154 12562 2353 .0489 .0489 0.261 0.187 0.797 0 61.7 2248 0 0 105 2353 -771 1582 771 -0 606 847 3.700 3.712 2.226 + 12 4 15 2 49.37 67.29 68.00 67.84 99.25 91.42 0 48154 12562 2079 .0432 .0432 0.261 0.165 0.791 0 54.5 1986 0 0 93 2079 -684 1395 684 0 539 768 3.700 3.686 2.209 + 12 4 15 3 49.22 67.40 68.00 67.85 99.25 91.43 0 48154 12562 2227 .0463 .0463 0.261 0.177 0.794 0 58.4 2128 0 0 100 2227 -732 1496 732 -0 575 811 3.700 3.700 2.217 + 12 4 15 4 49.07 67.43 68.00 67.87 99.27 91.46 0 48154 12562 2742 .0569 .0569 0.261 0.218 0.805 0 71.9 2620 0 0 123 2742 -899 1843 899 -0 699 958 3.700 3.748 2.244 + 12 4 15 5 48.92 67.70 68.00 67.87 99.28 91.47 0 48154 12562 3246 .0674 .0674 0.261 0.258 0.815 0 85.1 3101 0 0 145 3246 -1063 2183 1063 0 817 1099 3.700 3.795 2.268 + 12 4 16 0 48.59 67.40 68.00 67.92 99.32 91.54 0 48154 12562 4535 .0942 .0942 0.261 0.361 0.840 0 118.9 4332 0 0 203 4535 -1475 3059 1475 0 1107 1446 3.700 3.914 2.336 + 12 4 16 1 48.26 67.86 68.00 67.87 99.28 91.48 0 48154 12562 5143 0.107 0.107 0.261 0.409 0.852 0 134.8 4913 0 0 230 5143 -1683 3460 1683 0 1237 1604 3.700 3.971 2.358 + 12 4 16 2 47.93 67.97 68.00 67.95 99.36 91.61 0 48154 12562 5771 0.120 0.120 0.261 0.459 0.865 0 151.3 5513 0 0 258 5771 -1867 3904 1867 0 1368 1763 3.700 4.029 2.400 + 12 4 16 3 47.60 68.06 68.00 67.98 99.38 91.65 0 48154 12562 6301 0.131 0.131 0.261 0.502 0.875 0 165.2 6019 0 0 282 6301 -2030 4271 2030 -0 1476 1894 3.700 4.078 2.430 + 12 4 16 4 47.27 68.13 68.00 68.00 99.40 91.69 0 48154 12562 6731 0.140 0.140 0.261 0.536 0.884 0 176.5 6430 0 0 301 6731 -2161 4570 2161 -0 1562 1999 3.700 4.118 2.454 + 12 4 16 5 46.94 68.16 68.00 68.02 99.40 91.73 0 48124 12572 7110 0.148 0.148 0.261 0.565 0.891 0 186.5 6792 0 0 318 7110 -2273 4837 2273 0 1640 2095 3.696 4.141 2.470 + 12 4 17 0 46.79 68.32 68.00 68.03 99.36 91.72 0 48051 12599 7439 0.155 0.155 0.262 0.590 0.898 0 195.4 7105 0 0 333 7439 -2370 5068 2370 0 1715 2185 3.685 4.142 2.474 + 12 4 17 1 46.64 68.42 68.00 68.06 99.35 91.77 0 47978 12626 7678 0.160 0.160 0.263 0.608 0.902 0 202.0 7333 0 0 345 7678 -2429 5249 2429 0 1773 2254 3.674 4.135 2.478 + 12 4 17 2 46.49 68.56 68.00 68.08 99.32 91.79 0 47905 12652 7864 0.164 0.164 0.264 0.622 0.905 0 207.2 7510 0 0 354 7864 -2474 5389 2474 0 1821 2311 3.663 4.124 2.478 + 12 4 17 3 46.34 68.63 68.00 68.11 99.30 91.83 0 47831 12679 8094 0.169 0.169 0.265 0.638 0.910 0 213.6 7729 0 0 364 8094 -2530 5564 2530 0 1878 2379 3.652 4.116 2.482 + 12 4 17 4 46.19 68.77 68.00 68.12 99.27 91.84 0 47758 12706 8266 0.173 0.173 0.266 0.651 0.913 0 218.5 7893 0 0 373 8266 -2571 5695 2571 0 1923 2432 3.641 4.104 2.480 + 12 4 17 5 46.04 68.84 68.00 68.15 99.25 91.88 0 47685 12732 8483 0.178 0.178 0.267 0.666 0.917 0 224.6 8100 0 0 383 8483 -2621 5862 2621 -0 1978 2497 3.631 4.096 2.483 + 12 4 18 0 45.47 68.97 68.00 68.16 99.08 91.85 0 47407 12834 8242 0.174 0.174 0.271 0.642 0.911 0 219.5 7868 0 0 374 8242 -2519 5723 2519 -0 1979 2490 3.590 3.975 2.431 + 12 4 18 1 44.90 69.01 68.00 68.19 99.43 92.23 0 47909 13206 8500 0.177 0.180 0.274 0.646 0.912 0 224.0 7943 0 176 382 8500 -2567 5933 2567 0 1999 2694 3.550 3.972 2.320 + 12 4 18 2 44.33 69.12 68.00 68.19 99.39 92.30 0 47842 13382 8766 0.182 0.187 0.278 0.658 0.915 0 231.3 8144 0 227 395 8766 -2622 6144 2622 0 2077 2835 3.510 3.921 2.277 + 12 4 18 3 43.76 69.25 68.00 68.21 99.37 92.39 0 47776 13557 9021 0.188 0.194 0.282 0.669 0.917 0 238.4 8334 0 280 407 9021 -2666 6355 2666 0 2152 2976 3.471 3.872 2.238 + 12 4 18 4 43.19 69.38 68.00 68.24 99.35 92.48 0 47709 13732 9273 0.193 0.200 0.286 0.680 0.920 0 245.4 8520 0 335 419 9273 -2707 6566 2707 -0 2227 3117 3.432 3.825 2.203 + 12 4 18 5 42.62 69.52 68.00 68.26 99.33 92.57 0 47643 13908 9543 0.199 0.207 0.290 0.691 0.923 0 252.9 8720 0 391 431 9543 -2752 6791 2752 0 2306 3265 3.393 3.782 2.171 + 12 4 19 0 42.20 69.58 68.00 68.29 99.32 92.64 0 47594 14037 9499 0.198 0.207 0.293 0.681 0.920 0 251.9 8646 0 423 430 9499 -2712 6787 2712 0 2316 3305 3.365 3.734 2.142 + 12 4 19 1 41.78 69.58 68.00 68.30 99.31 92.70 0 47545 14167 9681 0.202 0.212 0.296 0.688 0.922 0 257.0 8778 0 465 439 9681 -2740 6940 2740 0 2370 3409 3.337 3.704 2.120 + 12 4 19 2 41.36 69.59 68.00 68.30 99.27 92.74 0 47496 14296 9866 0.206 0.217 0.299 0.695 0.924 0 262.2 8912 0 507 447 9866 -2774 7092 2774 0 2425 3516 3.309 3.675 2.099 + 12 4 19 3 40.94 69.60 68.00 68.30 99.25 92.78 0 47447 14426 10049 0.210 0.222 0.302 0.702 0.925 0 267.4 9043 0 550 456 10049 -2806 7243 2806 -0 2480 3622 3.281 3.647 2.078 + 12 4 19 4 40.52 69.68 68.00 68.31 99.22 92.82 0 47398 14555 10184 0.213 0.226 0.305 0.705 0.926 0 271.2 9130 0 590 463 10184 -2824 7360 2824 0 2524 3714 3.254 3.617 2.057 + 12 4 19 5 40.10 69.59 68.00 68.32 99.20 92.88 0 47349 14685 10408 0.218 0.232 0.308 0.714 0.928 0 277.5 9297 0 637 473 10408 -2861 7547 2861 0 2587 3834 3.227 3.593 2.041 + 12 4 20 0 40.37 69.53 68.00 68.31 99.21 92.84 0 47380 14602 10613 0.222 0.236 0.306 0.732 0.933 0 282.8 9503 0 628 482 10613 -2934 7680 2934 0 2617 3863 3.244 3.632 2.061 + 12 4 20 1 40.64 69.56 68.00 68.30 99.22 92.81 0 47412 14518 10630 0.223 0.236 0.304 0.737 0.934 0 283.0 9541 0 606 483 10630 -2953 7677 2953 0 2608 3834 3.262 3.658 2.076 + 12 4 20 2 40.91 69.62 68.00 68.31 99.25 92.81 0 47443 14435 10607 0.222 0.235 0.302 0.740 0.935 0 282.2 9543 0 583 482 10607 -2954 7654 2954 0 2591 3792 3.279 3.682 2.094 + 12 4 20 3 41.18 69.49 68.00 68.32 99.28 92.80 0 47475 14352 10631 0.222 0.235 0.300 0.746 0.937 0 282.7 9588 0 561 482 10631 -2966 7665 2966 0 2584 3764 3.297 3.711 2.113 + 12 4 20 4 41.45 69.64 68.00 68.30 99.29 92.76 0 47506 14268 10555 0.221 0.232 0.298 0.745 0.936 0 280.5 9542 0 535 479 10555 -2964 7591 2964 0 2557 3706 3.315 3.732 2.126 + 12 4 20 5 41.72 69.59 68.00 68.33 99.33 92.77 0 47538 14185 10539 0.220 0.231 0.296 0.748 0.937 0 279.9 9550 0 511 477 10539 -2959 7579 2959 0 2541 3666 3.333 3.759 2.148 + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 275 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + 12 4 21 0 41.30 69.72 68.00 68.32 99.29 92.80 0 47489 14315 10929 0.228 0.241 0.299 0.769 0.942 0 290.5 9867 0 567 496 10929 -3053 7875 3053 0 2636 3835 3.305 3.743 2.130 + 12 4 21 1 40.88 69.78 68.00 68.34 99.28 92.86 0 47440 14444 11078 0.232 0.245 0.302 0.773 0.943 0 294.8 9964 0 611 503 11078 -3067 8011 3067 0 2684 3935 3.277 3.712 2.109 + 12 4 21 2 40.46 69.77 68.00 68.35 99.26 92.91 0 47391 14574 11221 0.235 0.250 0.305 0.775 0.944 0 298.9 10056 0 656 510 11221 -3080 8141 3080 0 2732 4034 3.250 3.681 2.089 + 12 4 21 3 40.04 69.77 68.00 68.35 99.22 92.94 0 47342 14704 11382 0.239 0.254 0.308 0.780 0.945 0 303.5 10163 0 702 518 11382 -3106 8276 3106 0 2782 4138 3.223 3.653 2.068 + 12 4 21 4 39.62 69.77 68.00 68.35 99.19 92.98 0 47293 14833 11547 0.242 0.259 0.312 0.784 0.946 0 308.2 10274 0 748 526 11547 -3131 8416 3131 0 2834 4244 3.196 3.625 2.049 + 12 4 21 5 39.20 69.77 68.00 68.35 99.16 93.01 0 47244 14963 11709 0.246 0.264 0.315 0.788 0.947 0 312.9 10381 0 794 534 11709 -3156 8553 3156 0 2885 4349 3.169 3.599 2.030 + 12 4 22 0 39.29 69.78 68.00 68.35 99.17 93.00 0 47254 14935 12396 0.260 0.279 0.314 0.835 0.959 0 331.1 10998 0 833 565 12396 -3344 9052 3344 0 3013 4547 3.175 3.651 2.052 + 12 4 22 1 39.38 69.88 68.00 68.35 99.18 93.00 0 47265 14907 12494 0.262 0.281 0.313 0.844 0.961 0 333.7 11093 0 831 569 12494 -3373 9121 3373 0 3027 4564 3.180 3.665 2.060 + 12 4 22 2 39.47 69.93 68.00 68.37 99.20 93.03 0 47275 14880 12560 0.264 0.282 0.313 0.850 0.962 0 335.4 11160 0 827 572 12560 -3383 9177 3383 -0 3035 4571 3.186 3.677 2.069 + 12 4 22 3 39.56 69.96 68.00 68.38 99.22 93.04 0 47286 14852 12623 0.265 0.284 0.312 0.856 0.964 0 337.0 11225 0 823 575 12623 -3398 9225 3398 -0 3042 4577 3.192 3.690 2.078 + 12 4 22 4 39.65 69.93 68.00 68.39 99.23 93.05 0 47296 14824 12680 0.266 0.285 0.311 0.861 0.965 0 338.4 11284 0 818 577 12680 -3413 9267 3413 0 3048 4581 3.198 3.702 2.085 + 12 4 22 5 39.74 70.08 68.00 68.39 99.24 93.04 0 47307 14796 12630 0.265 0.283 0.311 0.859 0.965 0 337.0 11249 0 807 575 12630 -3405 9225 3405 0 3035 4553 3.204 3.707 2.089 + 12 4 23 0 39.59 70.17 67.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 1 39.44 68.60 67.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 2 39.29 68.16 67.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 3 39.14 68.02 67.30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 4 38.99 67.75 67.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + 12 4 23 5 38.84 67.60 67.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136 0 0 0 + + + +! Log for Run 010: + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console + + + +Input for Run 010: + + + ALTER RSYS "rsys1" + rsCtrlAuxH = ALTERNATE + rsDefrostModel = "RevCycleAux" + rsASHPLockOutT = 37 + FIXRPTITLES("RSYS -- Aux Alt / Def RevCycleAux / LO 37") + + RUN + + + $EOF + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 276 + + + +CZ12 VC Temp Heat Pump +------------------------------------------------------------------------------ + + + +! CSE 0.899.0+vsashp.91ce9e2b.86 for Win32 console run(s) done: Sat 01-Jan-22 2:52:56 pm + +! Executable: d:\cse\msvc\cse.exe +! 01-Jan-22 2:46 pm (VS 14.29 2902016 bytes) (HPWH 1.16.0) +! Command line: -x! -t1 ashpvc2 +! Input file: D:\cse\test\ashpvc2.cse +! Report file: D:\cse\test\ashpvc2.rep + +! Timing info -- + +! Input: Time = 0.42 Calls = 10 T/C = 0.0421 +! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 +! Simulation: Time = 18.17 Calls = 10 T/C = 1.8167 +! Reports: Time = 0.12 Calls = 10 T/C = 0.0122 +! Total: Time = 18.73 Calls = 1 T/C = 18.7320 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashpvc2 010 Sat 01-Jan-22 2:52:55 pm Page 277 + \ No newline at end of file diff --git a/test/ref/ASHP_DFNG.REP b/test/ref/ASHP_DFNG.REP index 228250cf1..ca6411140 100644 --- a/test/ref/ASHP_DFNG.REP +++ b/test/ref/ASHP_DFNG.REP @@ -48,35 +48,6 @@ Yr 1.520 0 0 0 0 0 0 0 0 0 0 -HVAC Cooling Info - - Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC - ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- - 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 - - - - - - ------------------------------------------------------------------------------- -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 1 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - - -HVAC Heating Info - - Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH - ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- - 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 1.00 - - - @@ -88,21 +59,50 @@ HVAC Heating Info +------------------------------------------------------------------------------ +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 1 + +CZ16 Dual Fuel +------------------------------------------------------------------------------ +RSYSRES Res Alt + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 466.44 28.905 6219.2 561.58 722.63 396.42 7899.8 0 0 0 0 0 0 0 0 0 0 1826.1 561.58 722.63 396.42 98.406 3605.1 0 0 0 0 0 0 0 6362.5 -28.86 0 0 0 0 + Feb 383.66 22.766 5132.4 425.47 569.15 326.06 6453.1 0 0 0 0 0 0 0 0 0 0 1499.1 425.47 569.15 326.06 76.841 2896.7 0 0 0 0 0 0 0 5225.1 -22.12 0 0 0 0 + Mar 332.29 2.593 4688.9 485.84 64.813 282.41 5521.9 0 0 0 0 0 0 0 0 0 0 1327.3 485.84 64.813 282.41 75.886 2236.3 0 0 0 0 0 0 0 4452.6 -24.10 0 0 0 0 + Apr 339.73 7.793 4649.2 487.07 194.82 288.73 5619.8 0 0 0 0 0 0 0 0 0 0 1351.6 487.07 194.82 288.73 86.259 2408.5 0 0 0 0 0 0 0 4609.1 -17.50 0 0 0 0 + May 77.572 0.0167 1156.6 107.06 0.417 65.927 1330.0 0 0 0 0 0 0 0 0 0 0 320.21 107.06 0.417 65.927 29.481 523.10 0 0 0 0 0 0 0 1088.6 -5.353 0 0 0 0 + Jun 29.493 0 314.61 6.277 0 15.089 335.98 -196.3 -12.29 9.989 -186.3 0 0 0 0 0 0 78.002 6.277 0 15.089 6.824 106.19 46.394 9.989 0 56.382 0 0 0 274.60 -1.236 -147.4 -11.15 0 0 + Jul 10.536 0 75.391 0 0 3.420 78.811 -110.0 -11.10 5.542 -104.5 0 0 0 0 0 0 18.169 0 0 3.420 0 21.588 24.767 5.542 0 30.309 0 0 0 66.741 -0.223 -83.95 -10.83 0 0 + Aug 36.171 0 0 0 0 0 0 -620.4 -2.941 30.778 -589.6 0 0 0 0 0 0 0 0 0 0 0 0 139.24 30.778 0 170.02 0 0 0 0 0 -488.2 -4.602 0 0 + Sep 12.967 0 163.73 14.515 0 9.037 187.28 -41.30 0 1.986 -39.31 0 0 0 0 0 0 45.143 14.515 0 9.037 6.347 75.042 8.373 1.986 0.614 10.973 0 0 0 150.19 -0.981 -33.06 -0.175 0 0 + Oct 105.24 0.213 1514.5 123.39 5.323 89.438 1732.7 0 0 0 0 0 0 0 0 0 0 426.19 123.39 5.323 89.438 28.525 672.87 0 0 0 0 0 0 0 1372.2 -7.897 0 0 0 0 + Nov 256.07 1.643 3675.4 341.06 41.071 217.63 4275.1 0 0 0 0 0 0 0 0 0 0 1033.0 341.06 41.071 217.63 55.413 1688.2 0 0 0 0 0 0 0 3418.8 -18.41 0 0 0 0 + Dec 418.26 16.935 5723.4 497.12 423.36 355.47 6999.4 0 0 0 0 0 0 0 0 0 0 1645.1 497.12 423.36 355.47 77.797 2998.9 0 0 0 0 0 0 0 5520.0 -32.40 0 0 0 0 + Yr 2468.4 80.864 33313 3049.4 2021.6 2049.6 40434 -968.0 -26.33 48.295 -919.7 0 0 0 0 0 0 9570.0 3049.4 2021.6 2049.6 541.78 17232 218.77 48.295 0.614 267.68 0 0 0 32540 -159.1 -752.7 -26.76 0 0 +HVAC Cooling Info + Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 +HVAC Heating Info + Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH + ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- + 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 1.00 @@ -123,7 +123,7 @@ HVAC Heating Info ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 2 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 2 @@ -134,71 +134,71 @@ CZ16 Dual Fuel Hourly User-defined Report, Sun 04-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 4 1 18.1 1.000 0.372 11 0 0 1 0 9 - 1 4 2 19.9 1.000 0.375 11 0 0 1 0 9 - 1 4 3 20.1 1.000 0.370 11 0 0 1 0 9 - 1 4 4 20.8 1.000 0.367 11 0 0 1 0 9 - 1 4 5 19.9 1.000 0.370 11 0 0 1 0 9 - 1 4 6 20.1 1.000 0.364 11 0 0 1 0 9 - 1 4 7 21.0 1.000 0.344 11 0 0 1 0 9 - 1 4 8 21.0 1.000 0.286 11 0 0 1 0 7 - 1 4 9 21.9 1.000 0.0868 11 0 0 1 0 2 - 1 4 10 25.2 0.833 0 10 0 0 1 0 0 - 1 4 11 26.8 0.604 0 7 0 0 0 0 0 - 1 4 12 25.2 0.559 0 7 0 0 0 0 0 - 1 4 13 26.2 0.517 0 6 0 0 0 0 0 - 1 4 14 26.4 0.435 0 5 0 0 0 0 0 - 1 4 15 27.0 0.392 0 5 0 0 0 0 0 - 1 4 16 26.8 0.427 0 5 0 0 0 0 0 - 1 4 17 25.9 0.648 0 8 0 0 0 0 0 - 1 4 18 24.8 0.979 0.0182 12 0 0 1 1 0 - 1 4 19 23.9 1.000 0.0735 12 0 0 1 1 2 - 1 4 20 23.0 1.000 0.113 12 0 0 1 0 3 - 1 4 21 23.0 1.000 0.139 12 0 0 1 0 3 - 1 4 22 23.2 1.000 0.164 12 0 0 1 0 4 - 1 4 23 25.2 1.000 0.190 12 0 0 1 1 5 - 1 4 24 26.1 1.000 0.189 12 0 0 1 1 5 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 4 1 18.1 1.000 0.372 11 0 0 1 0 0 9 + 1 4 2 19.9 1.000 0.375 11 0 0 1 0 0 9 + 1 4 3 20.1 1.000 0.370 11 0 0 1 0 0 9 + 1 4 4 20.8 1.000 0.367 11 0 0 1 0 0 9 + 1 4 5 19.9 1.000 0.370 11 0 0 1 0 0 9 + 1 4 6 20.1 1.000 0.364 11 0 0 1 0 0 9 + 1 4 7 21.0 1.000 0.344 11 0 0 1 0 0 9 + 1 4 8 21.0 1.000 0.286 11 0 0 1 0 0 7 + 1 4 9 21.9 1.000 0.0868 11 0 0 1 0 0 2 + 1 4 10 25.2 0.833 0 10 0 0 1 0 0 0 + 1 4 11 26.8 0.604 0 7 0 0 0 0 0 0 + 1 4 12 25.2 0.559 0 7 0 0 0 0 0 0 + 1 4 13 26.2 0.517 0 6 0 0 0 0 0 0 + 1 4 14 26.4 0.435 0 5 0 0 0 0 0 0 + 1 4 15 27.0 0.392 0 5 0 0 0 0 0 0 + 1 4 16 26.8 0.427 0 5 0 0 0 0 0 0 + 1 4 17 25.9 0.648 0 8 0 0 0 0 0 0 + 1 4 18 24.8 0.979 0.0182 12 0 0 1 0 1 0 + 1 4 19 23.9 1.000 0.0735 12 0 0 1 0 1 2 + 1 4 20 23.0 1.000 0.113 12 0 0 1 0 0 3 + 1 4 21 23.0 1.000 0.139 12 0 0 1 0 0 3 + 1 4 22 23.2 1.000 0.164 12 0 0 1 0 0 4 + 1 4 23 25.2 1.000 0.190 12 0 0 1 0 1 5 + 1 4 24 26.1 1.000 0.189 12 0 0 1 0 1 5 Hourly User-defined Report, Mon 05-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 5 1 26.2 1.000 0.200 12 0 0 1 1 5 - 1 5 2 28.2 1.000 0.191 12 0 0 1 1 5 - 1 5 3 29.1 1.000 0.173 12 0 0 1 1 4 - 1 5 4 31.1 1.000 0.146 13 0 0 1 1 4 - 1 5 5 32.2 1.000 0.119 13 0 0 1 1 3 - 1 5 6 32.9 1.000 0.0874 13 0 0 1 1 2 - 1 5 7 32.2 1.000 0.0668 13 0 0 1 1 2 - 1 5 8 33.4 0.985 0.0191 13 0 0 1 1 0 - 1 5 9 36.1 0.634 0 8 0 0 0 1 0 - 1 5 10 38.1 0.356 0 5 0 0 0 1 0 - 1 5 11 40.3 0.236 0 3 0 0 0 0 0 - 1 5 12 41.5 0.185 0 3 0 0 0 0 0 - 1 5 13 38.1 0.169 0 2 0 0 0 0 0 - 1 5 14 39.7 0.148 0 2 0 0 0 0 0 - 1 5 15 39.2 0.119 0 2 0 0 0 0 0 - 1 5 16 39.0 0.256 0 4 0 0 0 0 0 - 1 5 17 38.8 0.386 0 5 0 0 0 1 0 - 1 5 18 37.9 0.551 0 8 0 0 0 1 0 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 5 1 26.2 1.000 0.200 12 0 0 1 0 1 5 + 1 5 2 28.2 1.000 0.191 12 0 0 1 0 1 5 + 1 5 3 29.1 1.000 0.173 12 0 0 1 0 1 4 + 1 5 4 31.1 1.000 0.146 13 0 0 1 0 1 4 + 1 5 5 32.2 1.000 0.119 13 0 0 1 0 1 3 + 1 5 6 32.9 1.000 0.0874 13 0 0 1 0 1 2 + 1 5 7 32.2 1.000 0.0668 13 0 0 1 0 1 2 + 1 5 8 33.4 0.985 0.0191 13 0 0 1 0 1 0 + 1 5 9 36.1 0.634 0 8 0 0 0 0 1 0 + 1 5 10 38.1 0.356 0 5 0 0 0 0 1 0 + 1 5 11 40.3 0.236 0 3 0 0 0 0 0 0 + 1 5 12 41.5 0.185 0 3 0 0 0 0 0 0 + 1 5 13 38.1 0.169 0 2 0 0 0 0 0 0 + 1 5 14 39.7 0.148 0 2 0 0 0 0 0 0 + 1 5 15 39.2 0.119 0 2 0 0 0 0 0 0 + 1 5 16 39.0 0.256 0 4 0 0 0 0 0 0 + 1 5 17 38.8 0.386 0 5 0 0 0 0 1 0 + 1 5 18 37.9 0.551 0 8 0 0 0 0 1 0 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 3 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 3 CZ16 Dual Fuel ------------------------------------------------------------------------------ - 1 5 19 37.9 0.610 0 8 0 0 0 1 0 - 1 5 20 37.8 0.638 0 9 0 0 0 1 0 - 1 5 21 37.0 0.692 0 9 0 0 0 1 0 - 1 5 22 36.9 0.737 0 10 0 0 1 1 0 - 1 5 23 36.1 0.802 0 11 0 0 1 1 0 - 1 5 24 36.9 0.864 0 12 0 0 1 1 0 + 1 5 19 37.9 0.610 0 8 0 0 0 0 1 0 + 1 5 20 37.8 0.638 0 9 0 0 0 0 1 0 + 1 5 21 37.0 0.692 0 9 0 0 0 0 1 0 + 1 5 22 36.9 0.737 0 10 0 0 1 0 1 0 + 1 5 23 36.1 0.802 0 11 0 0 1 0 1 0 + 1 5 24 36.9 0.864 0 12 0 0 1 0 1 0 @@ -249,7 +249,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 4 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 4 @@ -312,7 +312,7 @@ Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan 16 .00024 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00024 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 5 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 5 @@ -334,22 +334,22 @@ Day .00456 0 0 0 0 0 0 0 0 0 0 Monthly User-defined Report - Month hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- ----- -------- ------- ------- ------- ------- ------- ------- - 1 466.4 28.905 6219 0 0 396 562 723 - 2 383.7 22.766 5132 0 0 326 425 569 - 3 332.3 2.593 4689 0 0 282 486 65 - 4 339.7 7.793 4649 0 0 289 487 195 - 5 77.57 0.0167 1157 0 0 66 107 0 - 6 29.49 0 315 -196 -12 25 6 0 - 7 10.54 0 75 -110 -11 9 0 0 - 8 36.17 0 0 -620 -3 31 0 0 - 9 12.97 0 164 -41 0 11 15 0 - 10 105.2 0.213 1515 0 0 89 123 5 - 11 256.1 1.643 3675 0 0 218 341 41 - 12 418.3 16.935 5723 0 0 355 497 423 + Month hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 466.4 28.905 6219 0 0 396 0 562 723 + 2 383.7 22.766 5132 0 0 326 0 425 569 + 3 332.3 2.593 4689 0 0 282 0 486 65 + 4 339.7 7.793 4649 0 0 289 0 487 195 + 5 77.57 0.0167 1157 0 0 66 0 107 0 + 6 29.49 0 315 -196 -12 15 10 6 0 + 7 10.54 0 75 -110 -11 3 6 0 0 + 8 36.17 0 0 -620 -3 0 31 0 0 + 9 12.97 0 164 -41 0 9 2 15 0 + 10 105.2 0.213 1515 0 0 89 0 123 5 + 11 256.1 1.643 3675 0 0 218 0 341 41 + 12 418.3 16.935 5723 0 0 355 0 497 423 - Yr 2468 80.864 33313 -968 -26 2098 3049 2022 + Yr 2468 80.864 33313 -968 -26 2050 48 3049 2022 @@ -375,7 +375,7 @@ Monthly User-defined Report ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 6 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 6 @@ -438,7 +438,7 @@ Subhourly User-defined Report, Sun 04-Jan 1 4 7 5 21.0 68.00 0 12513 3.038 1.000 1.000 1.000 1.000 0.245 3.038 11317 6126 347 850 18640 15495 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 7 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 7 @@ -501,7 +501,7 @@ CZ16 Dual Fuel 1 4 16 5 25.9 68.00 0 13594 3.187 0.775 0.775 1.000 0.975 0 3.107 9288 0 594 659 10541 8747 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 8 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 8 @@ -564,7 +564,7 @@ Subhourly User-defined Report, Mon 05-Jan 1 5 0 5 26.2 68.00 0 13674 3.198 1.000 1.000 1.000 1.000 0.206 3.198 12027 5162 797 850 18837 15488 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 9 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 9 @@ -627,7 +627,7 @@ CZ16 Dual Fuel 1 5 9 5 38.1 68.00 0 16317 3.553 0.278 0.278 1.000 0.919 0 3.265 3793 0 507 236 4535 3630 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 10 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 10 @@ -690,7 +690,7 @@ CZ16 Dual Fuel 1 5 18 5 37.9 68.00 0 16277 3.548 0.629 0.629 1.000 0.958 0 3.400 8566 0 1136 535 10237 8345 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 11 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 11 @@ -753,7 +753,7 @@ Subhourly User-defined Report, Tue 06-Jan 1 6 2 5 37.2 68.00 0 16116 3.527 0.815 0.815 1.000 0.979 0 3.454 11023 0 1422 693 13138 10757 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 12 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 12 @@ -816,7 +816,7 @@ CZ16 Dual Fuel 1 6 11 5 39.9 68.00 0 16717 3.606 0.554 0.554 1.000 0.950 0 3.425 7698 0 1096 471 9265 7626 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 13 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 13 @@ -879,7 +879,7 @@ CZ16 Dual Fuel 1 6 20 5 34.7 68.00 0 15556 3.453 0.748 0.748 1.000 0.972 0 3.355 9852 0 1142 635 11629 9449 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 14 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 14 @@ -942,7 +942,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 15 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 15 @@ -1005,7 +1005,7 @@ Subhourly User-defined Report, Fri 14-Aug 8 14 7 5 77.2 77.60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 16 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 16 @@ -1068,7 +1068,7 @@ CZ16 Dual Fuel 8 14 16 5 85.3 78.00 0 0 0 0.634 0.634 1.000 1.000 0 0 -10773 0 0 540 -10233 -8408 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 17 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 17 @@ -1131,7 +1131,7 @@ Subhourly User-defined Report, Sat 15-Aug 8 15 0 5 73.4 77.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 18 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 18 @@ -1194,7 +1194,7 @@ CZ16 Dual Fuel 8 15 9 5 82.6 78.00 0 0 0 0.271 0.271 1.000 1.000 0 0 -4644 0 0 230 -4414 -3790 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 19 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 19 @@ -1257,7 +1257,7 @@ CZ16 Dual Fuel 8 15 18 5 83.7 78.00 0 0 0 0.566 0.566 1.000 1.000 0 0 -9712 0 0 482 -9230 -7533 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 20 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 20 @@ -1299,7 +1299,7 @@ CZ16 Dual Fuel ! Log for Run 001: -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console @@ -1320,7 +1320,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 21 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 21 @@ -1383,7 +1383,7 @@ Input for Run 001: # #define RefrTemp_WEH hourval( 0.0171,0.0156,0.0155,0.0154,0.0175,0.0181,0.0212,0.0201,0.0130,0.0176,0.0165,0.0171,0.0177,0.0176,0.0182,0.0139,0.0197,0.0180,0.0121,0.0135,0.0154,0.0150,0.0205,0.0129) ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 22 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 22 @@ -1446,7 +1446,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 23 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 23 @@ -1509,7 +1509,7 @@ CZ16 Dual Fuel lrMat = "m-Carpet" // Layer material ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 24 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 24 @@ -1572,7 +1572,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 25 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 25 @@ -1635,7 +1635,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 26 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 26 @@ -1698,7 +1698,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 27 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 27 @@ -1761,7 +1761,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 28 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 28 @@ -1824,7 +1824,7 @@ CZ16 Dual Fuel lrMat = "m-SoftWood" // Layer material ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 29 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 29 @@ -1887,7 +1887,7 @@ CZ16 Dual Fuel CONSTRUCTION "c-Zone1DoorRight-dr" ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 30 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 30 @@ -1950,7 +1950,7 @@ CZ16 Dual Fuel LAYER "cl2-FloorFrmIMass" ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 31 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 31 @@ -2013,7 +2013,7 @@ CZ16 Dual Fuel LAYER "cl2-WallCavIMass" ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 32 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 32 @@ -2076,7 +2076,7 @@ CZ16 Dual Fuel MATERIAL "m-10 PSF Roof" ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 33 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 33 @@ -2139,7 +2139,7 @@ CZ16 Dual Fuel matCond = 1 // Conductivity (always per foot of thickness), Btuh-ft/ft2-°F ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 34 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 34 @@ -2202,7 +2202,7 @@ CZ16 Dual Fuel MATERIAL "m-GarageCarDoorBack-dr" ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 35 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 35 @@ -2265,7 +2265,7 @@ CZ16 Dual Fuel izZn1 = "Zone1-zn" // Name of primary zone (flow rates > 0 are into the primary zone) ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 36 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 36 @@ -2328,7 +2328,7 @@ CZ16 Dual Fuel izNVEff = 1 // Vent discharge coefficient coefficient ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 37 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 37 @@ -2391,7 +2391,7 @@ CZ16 Dual Fuel izHD = 17.4 // Vent center-to-center height difference (for TWOWAY) or vent height above nominal 0 level (for AirNet types), ft ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 38 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 38 @@ -2454,7 +2454,7 @@ CZ16 Dual Fuel izZn1 = "Attic-atc" // Name of primary zone (flow rates > 0 are into the primary zone) ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 39 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 39 @@ -2517,7 +2517,7 @@ CZ16 Dual Fuel gnMeter = "MtrElec" // Meter that tracks internal gain ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 40 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 40 @@ -2580,7 +2580,7 @@ CZ16 Dual Fuel sfAdjZn = "Attic-atc" // Zone that lies on the other side of this surface ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 41 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 41 @@ -2643,7 +2643,7 @@ CZ16 Dual Fuel sfModel = "Forward_Difference" // Modeling option ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 42 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 42 @@ -2706,7 +2706,7 @@ CZ16 Dual Fuel wnExShd = "Inscrn" // Exterior shade type ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 43 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 43 @@ -2769,7 +2769,7 @@ CZ16 Dual Fuel sfTilt = 90 // Surface tilt, deg ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 44 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 44 @@ -2832,7 +2832,7 @@ CZ16 Dual Fuel wnNGlz = 2 // Number of glazing layers ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 45 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 45 @@ -2895,7 +2895,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 46 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 46 @@ -2958,7 +2958,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 47 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 47 @@ -3021,7 +3021,7 @@ CZ16 Dual Fuel sfTilt = 22.619865 // Surface tilt, deg ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 48 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 48 @@ -3084,7 +3084,7 @@ CZ16 Dual Fuel sfArea = 19.795484 // Wall area, ft2 ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 49 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 49 @@ -3147,7 +3147,7 @@ CZ16 Dual Fuel rsFanPwrH = 0.45 // Heating fan power. Heating air flow is estimated based on a 50 ?F temperature rise. ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 50 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 50 @@ -3190,6 +3190,60 @@ CZ16 Dual Fuel REPORT rpType=MTR rpMeter = MtrElec rpFreq=MONTH REPORT rpType=MTR rpMeter = MtrNatGas rpFreq=MONTH +# #define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ +# RXCOL colHead=WhenHead colVal=when colWid=3 \ +# RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ +# RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ +# RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ +# RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ +# RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ +# RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ +# RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ +# RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ +# RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ + +------------------------------------------------------------------------------ +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 51 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + +# RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ +# RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ +# RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ +# RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ +# RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ +# RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ +# RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ +# RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ +# RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ +# RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ +# RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + + REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYSRES Res Alt" + SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.001,3) + REPORT rpType=UDT rpFreq=YEAR rpHeader = No + SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.001,3) + + # #define SYSINFCOOL( s) REPORT rpType = UDT rpFreq=Year rpTitle="HVAC Cooling Info" \ # REPORTCOL colVal = s colHead="Sys #" colDec=0 colWid=5 \ # REPORTCOL colVal = @Rsys[s].name colHead="System" colDec=0 colWid=24 \ @@ -3208,15 +3262,6 @@ CZ16 Dual Fuel # REPORTCOL colVal = s colHead="Sys #" colDec=0 colWid=5 \ # REPORTCOL colVal = @Rsys[s].name colHead="System" colDec=0 colWid=24 \ # REPORTCOL colVal = @Rsys[s].CapH colHead="CapH" colDec=0 colWid=6 \ - ------------------------------------------------------------------------------- -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 51 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - # REPORTCOL colVal = @Rsys[s].fanPwrH colHead="fanPwrH" colDec=3 colWid=7 \ # REPORTCOL colVal = @Rsys[s].fanHeatH colHead="fanElecH" colDec=2 colWid=8 \ # REPORTCOL colVal = @Rsys[s].Cap47 colHead="Cap47" colDec=0 colWid=6 \ @@ -3226,6 +3271,15 @@ CZ16 Dual Fuel # REPORTCOL colVal = @Rsys[s].COP47 colHead="COP47" colDec=2 colWid=5 \ # REPORTCOL colVal = @Rsys[s].COP35 colHead="COP35" colDec=2 colWid=5 \ # REPORTCOL colVal = @Rsys[s].COP17 colHead="COP17" colDec=2 colWid=5 \ + +------------------------------------------------------------------------------ +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 52 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + # REPORTCOL colVal = @Rsys[s].COPmin47 colHead="COPm47" colDec=2 colWid=6 \ # REPORTCOL colVal = @Rsys[s].COPmin35 colHead="COPm35" colDec=2 colWid=6 \ # REPORTCOL colVal = @Rsys[s].COPmin17 colHead="COPm17" colDec=2 colWid=6 \ @@ -3238,12 +3292,13 @@ CZ16 Dual Fuel # #define RSYSHRCOLS( s, IVL) \ # Reportcol colVal=@RsysRes[ s].IVL.hrsOn colHead="hrsOn" colDec=3 colWid=5 \ # Reportcol colVal=@RsysRes[ s].IVL.hrsOnAux colHead="hrsOnAux" colDec=3 colWid=8 \ -# Reportcol colVal=@RsysRes[ s].IVL.qh/1000 colHead="qh" colDec=0 colWid=7 \ +# Reportcol colVal=@RsysRes[ s].IVL.qhPrimary/1000 colHead="qh" colDec=0 colWid=7 \ # Reportcol colVal=@RsysRes[ s].IVL.qcSen/1000 colHead="qcSen" colDec=0 colWid=7 \ # Reportcol colVal=@RsysRes[ s].IVL.qcLat/1000 colHead="qcLat" colDec=0 colWid=7 \ -# Reportcol colVal=@RsysRes[ s].IVL.qFan/1000 colHead="qFan" colDec=0 colWid=7 \ -# Reportcol colVal=@RsysRes[ s].IVL.qDefrost/1000 colHead="qDefrost" colDec=0 colWid=7 \ -# Reportcol colVal=@RsysRes[ s].IVL.qAux/1000 colHead="qAux" colDec=0 colWid=7 +# Reportcol colVal=@RsysRes[ s].IVL.qhFan/1000 colHead="qhFan" colDec=0 colWid=7 \ +# Reportcol colVal=@RsysRes[ s].IVL.qcFan/1000 colHead="qcFan" colDec=0 colWid=7 \ +# Reportcol colVal=@RsysRes[ s].IVL.qhDefrost/1000 colHead="qDefrost" colDec=0 colWid=7 \ +# Reportcol colVal=@RsysRes[ s].IVL.qhAux/1000 colHead="qAux" colDec=0 colWid=7 Report rpType=UDT rpFreq=hour rpDayBeg=jan 4 rpDayEnd=jan 5 reportcol colVal=$Month colHead="Month" colWid = 5 @@ -3271,15 +3326,6 @@ CZ16 Dual Fuel # RXCOL colHead="Tzn" colVal=@Zone[zn].tz colWid=5 colDec=2 \ # RXCOL colHead="UnMet" colVal=@ZnRes[zn].S.unMetHdH colWid=5 colDec=2 \ # RXCOL colHead="capfl" colVal=@RSYS[ rs].capHt colWid=5 colDec=0 \ - ------------------------------------------------------------------------------- -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 52 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - # RXCOL colHead="COPfl" colVal=@RSYS[ rs].effHt colWid=5 colDec=3 \ # RXCOL colHead="loadF" colVal=@RSYS[ rs].loadF colWid=5 colDec=3 \ # RXCOL colHead="runF" colVal=@RSYS[ rs].runF colWid=5 colDec=3 \ @@ -3288,6 +3334,15 @@ CZ16 Dual Fuel # RXCOL colHead="runFAux" colVal=@RSYS[ rs].runFAux colWid=7 colDec=3 \ # RXCOL colHead="COPpl" colVal=@RSYS[ rs].COPHtAdj colWid=5 colDec=3 \ # RXCOL colHead="qComp" colVal=@RSYS[ rs].outSen colWid=6 colDec=0 \ + +------------------------------------------------------------------------------ +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 53 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + # RXCOL colHead="qAux" colVal=@RSYS[ rs].outAux colWid=6 colDec=0 \ # RXCOL colHead="qDef" colVal=@RSYS[ rs].outDefrost colWid=6 colDec=0 \ # RXCOL colHead="qFan" colVal=@RSYS[ rs].outFan colWid=6 colDec=0 \ @@ -3326,6 +3381,14 @@ CZ16 Dual Fuel + + + + + + + + @@ -3336,7 +3399,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 001 Mon 20-Dec-21 10:36:09 am Page 53 +! ashp_dfng 001 Wed 29-Dec-21 2:16:53 pm Page 54 @@ -3387,35 +3450,6 @@ Yr 6.972 0 0 5.453 0 0 0 0 0 0 0 -HVAC Cooling Info - - Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC - ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- - 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 - - - - - - ------------------------------------------------------------------------------- -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 54 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - - -HVAC Heating Info - - Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH - ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- - 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 0.93 - - - @@ -3427,21 +3461,50 @@ HVAC Heating Info +------------------------------------------------------------------------------ +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 55 + +CZ16 Dual Fuel +------------------------------------------------------------------------------ +RSYSRES Furn Cycle + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 466.44 28.905 6219.2 561.58 722.63 396.42 7899.8 0 0 0 0 0 0 603.85 777.02 0 1380.9 1826.1 0 0 396.42 98.406 2320.9 0 0 0 0 0 0 0 6362.5 -28.86 0 0 0 0 + Feb 383.66 22.766 5132.4 425.47 569.15 326.06 6453.1 0 0 0 0 0 0 457.49 611.99 0 1069.5 1499.1 0 0 326.06 76.841 1902.0 0 0 0 0 0 0 0 5225.1 -22.12 0 0 0 0 + Mar 332.29 2.593 4688.9 485.84 64.813 282.41 5521.9 0 0 0 0 0 0 522.41 69.692 0 592.10 1327.3 0 0 282.41 75.886 1685.6 0 0 0 0 0 0 0 4452.6 -24.10 0 0 0 0 + Apr 339.73 7.793 4649.2 487.07 194.82 288.73 5619.8 0 0 0 0 0 0 523.73 209.48 0 733.21 1351.6 0 0 288.73 86.259 1726.6 0 0 0 0 0 0 0 4609.1 -17.50 0 0 0 0 + May 77.572 0.0167 1156.6 107.06 0.417 65.927 1330.0 0 0 0 0 0 0 115.12 0.448 0 115.57 320.21 0 0 65.927 29.481 415.62 0 0 0 0 0 0 0 1088.6 -5.353 0 0 0 0 + Jun 29.493 0 314.61 6.277 0 15.089 335.98 -196.3 -12.29 9.989 -186.3 0 0 6.749 0 0 6.749 78.002 0 0 15.089 6.824 99.915 46.394 9.989 0 56.382 0 0 0 274.60 -1.236 -147.4 -11.15 0 0 + Jul 10.536 0 75.391 0 0 3.420 78.811 -110.0 -11.10 5.542 -104.5 0 0 0 0 0 0 18.169 0 0 3.420 0 21.588 24.767 5.542 0 30.309 0 0 0 66.741 -0.223 -83.95 -10.83 0 0 + Aug 36.171 0 0 0 0 0 0 -620.4 -2.941 30.778 -589.6 0 0 0 0 0 0 0 0 0 0 0 0 139.24 30.778 0 170.02 0 0 0 0 0 -488.2 -4.602 0 0 + Sep 12.967 0 163.73 14.515 0 9.037 187.28 -41.30 0 1.986 -39.31 0 0 15.608 0 0 15.608 45.143 0 0 9.037 6.347 60.527 8.373 1.986 0.614 10.973 0 0 0 150.19 -0.981 -33.06 -0.175 0 0 + Oct 105.24 0.213 1514.5 123.39 5.323 89.438 1732.7 0 0 0 0 0 0 132.68 5.723 0 138.40 426.19 0 0 89.438 28.525 544.16 0 0 0 0 0 0 0 1372.2 -7.897 0 0 0 0 + Nov 256.07 1.643 3675.4 341.06 41.071 217.63 4275.1 0 0 0 0 0 0 366.73 44.162 0 410.89 1033.0 0 0 217.63 55.413 1306.1 0 0 0 0 0 0 0 3418.8 -18.41 0 0 0 0 + Dec 418.26 16.935 5723.4 497.12 423.36 355.47 6999.4 0 0 0 0 0 0 534.54 455.23 0 989.76 1645.1 0 0 355.47 77.797 2078.4 0 0 0 0 0 0 0 5520.0 -32.40 0 0 0 0 + Yr 2468.4 80.864 33313 3049.4 2021.6 2049.6 40434 -968.0 -26.33 48.295 -919.7 0 0 3278.9 2173.8 0 5452.7 9570.0 0 0 2049.6 541.78 12161 218.77 48.295 0.614 267.68 0 0 0 32540 -159.1 -752.7 -26.76 0 0 +HVAC Cooling Info + Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 +HVAC Heating Info + Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH + ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- + 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 0.93 @@ -3462,7 +3525,7 @@ HVAC Heating Info ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 55 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 56 @@ -3473,71 +3536,71 @@ CZ16 Dual Fuel Hourly User-defined Report, Sun 04-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 4 1 18.1 1.000 0.372 11 0 0 1 0 9 - 1 4 2 19.9 1.000 0.375 11 0 0 1 0 9 - 1 4 3 20.1 1.000 0.370 11 0 0 1 0 9 - 1 4 4 20.8 1.000 0.367 11 0 0 1 0 9 - 1 4 5 19.9 1.000 0.370 11 0 0 1 0 9 - 1 4 6 20.1 1.000 0.364 11 0 0 1 0 9 - 1 4 7 21.0 1.000 0.344 11 0 0 1 0 9 - 1 4 8 21.0 1.000 0.286 11 0 0 1 0 7 - 1 4 9 21.9 1.000 0.0868 11 0 0 1 0 2 - 1 4 10 25.2 0.833 0 10 0 0 1 0 0 - 1 4 11 26.8 0.604 0 7 0 0 0 0 0 - 1 4 12 25.2 0.559 0 7 0 0 0 0 0 - 1 4 13 26.2 0.517 0 6 0 0 0 0 0 - 1 4 14 26.4 0.435 0 5 0 0 0 0 0 - 1 4 15 27.0 0.392 0 5 0 0 0 0 0 - 1 4 16 26.8 0.427 0 5 0 0 0 0 0 - 1 4 17 25.9 0.648 0 8 0 0 0 0 0 - 1 4 18 24.8 0.979 0.0182 12 0 0 1 1 0 - 1 4 19 23.9 1.000 0.0735 12 0 0 1 1 2 - 1 4 20 23.0 1.000 0.113 12 0 0 1 0 3 - 1 4 21 23.0 1.000 0.139 12 0 0 1 0 3 - 1 4 22 23.2 1.000 0.164 12 0 0 1 0 4 - 1 4 23 25.2 1.000 0.190 12 0 0 1 1 5 - 1 4 24 26.1 1.000 0.189 12 0 0 1 1 5 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 4 1 18.1 1.000 0.372 11 0 0 1 0 0 9 + 1 4 2 19.9 1.000 0.375 11 0 0 1 0 0 9 + 1 4 3 20.1 1.000 0.370 11 0 0 1 0 0 9 + 1 4 4 20.8 1.000 0.367 11 0 0 1 0 0 9 + 1 4 5 19.9 1.000 0.370 11 0 0 1 0 0 9 + 1 4 6 20.1 1.000 0.364 11 0 0 1 0 0 9 + 1 4 7 21.0 1.000 0.344 11 0 0 1 0 0 9 + 1 4 8 21.0 1.000 0.286 11 0 0 1 0 0 7 + 1 4 9 21.9 1.000 0.0868 11 0 0 1 0 0 2 + 1 4 10 25.2 0.833 0 10 0 0 1 0 0 0 + 1 4 11 26.8 0.604 0 7 0 0 0 0 0 0 + 1 4 12 25.2 0.559 0 7 0 0 0 0 0 0 + 1 4 13 26.2 0.517 0 6 0 0 0 0 0 0 + 1 4 14 26.4 0.435 0 5 0 0 0 0 0 0 + 1 4 15 27.0 0.392 0 5 0 0 0 0 0 0 + 1 4 16 26.8 0.427 0 5 0 0 0 0 0 0 + 1 4 17 25.9 0.648 0 8 0 0 0 0 0 0 + 1 4 18 24.8 0.979 0.0182 12 0 0 1 0 1 0 + 1 4 19 23.9 1.000 0.0735 12 0 0 1 0 1 2 + 1 4 20 23.0 1.000 0.113 12 0 0 1 0 0 3 + 1 4 21 23.0 1.000 0.139 12 0 0 1 0 0 3 + 1 4 22 23.2 1.000 0.164 12 0 0 1 0 0 4 + 1 4 23 25.2 1.000 0.190 12 0 0 1 0 1 5 + 1 4 24 26.1 1.000 0.189 12 0 0 1 0 1 5 Hourly User-defined Report, Mon 05-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 5 1 26.2 1.000 0.200 12 0 0 1 1 5 - 1 5 2 28.2 1.000 0.191 12 0 0 1 1 5 - 1 5 3 29.1 1.000 0.173 12 0 0 1 1 4 - 1 5 4 31.1 1.000 0.146 13 0 0 1 1 4 - 1 5 5 32.2 1.000 0.119 13 0 0 1 1 3 - 1 5 6 32.9 1.000 0.0874 13 0 0 1 1 2 - 1 5 7 32.2 1.000 0.0668 13 0 0 1 1 2 - 1 5 8 33.4 0.985 0.0191 13 0 0 1 1 0 - 1 5 9 36.1 0.634 0 8 0 0 0 1 0 - 1 5 10 38.1 0.356 0 5 0 0 0 1 0 - 1 5 11 40.3 0.236 0 3 0 0 0 0 0 - 1 5 12 41.5 0.185 0 3 0 0 0 0 0 - 1 5 13 38.1 0.169 0 2 0 0 0 0 0 - 1 5 14 39.7 0.148 0 2 0 0 0 0 0 - 1 5 15 39.2 0.119 0 2 0 0 0 0 0 - 1 5 16 39.0 0.256 0 4 0 0 0 0 0 - 1 5 17 38.8 0.386 0 5 0 0 0 1 0 - 1 5 18 37.9 0.551 0 8 0 0 0 1 0 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 5 1 26.2 1.000 0.200 12 0 0 1 0 1 5 + 1 5 2 28.2 1.000 0.191 12 0 0 1 0 1 5 + 1 5 3 29.1 1.000 0.173 12 0 0 1 0 1 4 + 1 5 4 31.1 1.000 0.146 13 0 0 1 0 1 4 + 1 5 5 32.2 1.000 0.119 13 0 0 1 0 1 3 + 1 5 6 32.9 1.000 0.0874 13 0 0 1 0 1 2 + 1 5 7 32.2 1.000 0.0668 13 0 0 1 0 1 2 + 1 5 8 33.4 0.985 0.0191 13 0 0 1 0 1 0 + 1 5 9 36.1 0.634 0 8 0 0 0 0 1 0 + 1 5 10 38.1 0.356 0 5 0 0 0 0 1 0 + 1 5 11 40.3 0.236 0 3 0 0 0 0 0 0 + 1 5 12 41.5 0.185 0 3 0 0 0 0 0 0 + 1 5 13 38.1 0.169 0 2 0 0 0 0 0 0 + 1 5 14 39.7 0.148 0 2 0 0 0 0 0 0 + 1 5 15 39.2 0.119 0 2 0 0 0 0 0 0 + 1 5 16 39.0 0.256 0 4 0 0 0 0 0 0 + 1 5 17 38.8 0.386 0 5 0 0 0 0 1 0 + 1 5 18 37.9 0.551 0 8 0 0 0 0 1 0 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 56 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 57 CZ16 Dual Fuel ------------------------------------------------------------------------------ - 1 5 19 37.9 0.610 0 8 0 0 0 1 0 - 1 5 20 37.8 0.638 0 9 0 0 0 1 0 - 1 5 21 37.0 0.692 0 9 0 0 0 1 0 - 1 5 22 36.9 0.737 0 10 0 0 1 1 0 - 1 5 23 36.1 0.802 0 11 0 0 1 1 0 - 1 5 24 36.9 0.864 0 12 0 0 1 1 0 + 1 5 19 37.9 0.610 0 8 0 0 0 0 1 0 + 1 5 20 37.8 0.638 0 9 0 0 0 0 1 0 + 1 5 21 37.0 0.692 0 9 0 0 0 0 1 0 + 1 5 22 36.9 0.737 0 10 0 0 1 0 1 0 + 1 5 23 36.1 0.802 0 11 0 0 1 0 1 0 + 1 5 24 36.9 0.864 0 12 0 0 1 0 1 0 @@ -3588,7 +3651,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 57 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 58 @@ -3651,7 +3714,7 @@ Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan 16 .00076 0 0 .00053 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00024 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 58 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 59 @@ -3673,22 +3736,22 @@ Day 0.0554 0 0 0.0508 0 0 0 0 0 0 0 Monthly User-defined Report - Month hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- ----- -------- ------- ------- ------- ------- ------- ------- - 1 466.4 28.905 6219 0 0 396 562 723 - 2 383.7 22.766 5132 0 0 326 425 569 - 3 332.3 2.593 4689 0 0 282 486 65 - 4 339.7 7.793 4649 0 0 289 487 195 - 5 77.57 0.0167 1157 0 0 66 107 0 - 6 29.49 0 315 -196 -12 25 6 0 - 7 10.54 0 75 -110 -11 9 0 0 - 8 36.17 0 0 -620 -3 31 0 0 - 9 12.97 0 164 -41 0 11 15 0 - 10 105.2 0.213 1515 0 0 89 123 5 - 11 256.1 1.643 3675 0 0 218 341 41 - 12 418.3 16.935 5723 0 0 355 497 423 + Month hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 466.4 28.905 6219 0 0 396 0 562 723 + 2 383.7 22.766 5132 0 0 326 0 425 569 + 3 332.3 2.593 4689 0 0 282 0 486 65 + 4 339.7 7.793 4649 0 0 289 0 487 195 + 5 77.57 0.0167 1157 0 0 66 0 107 0 + 6 29.49 0 315 -196 -12 15 10 6 0 + 7 10.54 0 75 -110 -11 3 6 0 0 + 8 36.17 0 0 -620 -3 0 31 0 0 + 9 12.97 0 164 -41 0 9 2 15 0 + 10 105.2 0.213 1515 0 0 89 0 123 5 + 11 256.1 1.643 3675 0 0 218 0 341 41 + 12 418.3 16.935 5723 0 0 355 0 497 423 - Yr 2468 80.864 33313 -968 -26 2098 3049 2022 + Yr 2468 80.864 33313 -968 -26 2050 48 3049 2022 @@ -3714,7 +3777,7 @@ Monthly User-defined Report ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 59 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 60 @@ -3777,7 +3840,7 @@ Subhourly User-defined Report, Sun 04-Jan 1 4 7 5 21.0 68.00 0 12513 3.038 1.000 1.000 1.000 1.000 0.245 3.038 11317 6126 347 850 18640 15495 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 60 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 61 @@ -3840,7 +3903,7 @@ CZ16 Dual Fuel 1 4 16 5 25.9 68.00 0 13594 3.187 0.775 0.775 1.000 0.975 0 3.107 9288 0 594 659 10541 8747 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 61 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 62 @@ -3903,7 +3966,7 @@ Subhourly User-defined Report, Mon 05-Jan 1 5 0 5 26.2 68.00 0 13674 3.198 1.000 1.000 1.000 1.000 0.206 3.198 12027 5162 797 850 18837 15488 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 62 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 63 @@ -3966,7 +4029,7 @@ CZ16 Dual Fuel 1 5 9 5 38.1 68.00 0 16317 3.553 0.278 0.278 1.000 0.919 0 3.265 3793 0 507 236 4535 3630 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 63 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 64 @@ -4029,7 +4092,7 @@ CZ16 Dual Fuel 1 5 18 5 37.9 68.00 0 16277 3.548 0.629 0.629 1.000 0.958 0 3.400 8566 0 1136 535 10237 8345 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 64 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 65 @@ -4092,7 +4155,7 @@ Subhourly User-defined Report, Tue 06-Jan 1 6 2 5 37.2 68.00 0 16116 3.527 0.815 0.815 1.000 0.979 0 3.454 11023 0 1422 693 13138 10757 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 65 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 66 @@ -4155,7 +4218,7 @@ CZ16 Dual Fuel 1 6 11 5 39.9 68.00 0 16717 3.606 0.554 0.554 1.000 0.950 0 3.425 7698 0 1096 471 9265 7626 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 66 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 67 @@ -4218,7 +4281,7 @@ CZ16 Dual Fuel 1 6 20 5 34.7 68.00 0 15556 3.453 0.748 0.748 1.000 0.972 0 3.355 9852 0 1142 635 11629 9449 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 67 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 68 @@ -4281,7 +4344,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 68 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 69 @@ -4344,7 +4407,7 @@ Subhourly User-defined Report, Fri 14-Aug 8 14 7 5 77.2 77.60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 69 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 70 @@ -4407,7 +4470,7 @@ CZ16 Dual Fuel 8 14 16 5 85.3 78.00 0 0 0 0.634 0.634 1.000 1.000 0 0 -10773 0 0 540 -10233 -8408 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 70 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 71 @@ -4470,7 +4533,7 @@ Subhourly User-defined Report, Sat 15-Aug 8 15 0 5 73.4 77.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 71 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 72 @@ -4533,7 +4596,7 @@ CZ16 Dual Fuel 8 15 9 5 82.6 78.00 0 0 0 0.271 0.271 1.000 1.000 0 0 -4644 0 0 230 -4414 -3790 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 72 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 73 @@ -4596,7 +4659,7 @@ CZ16 Dual Fuel 8 15 18 5 83.7 78.00 0 0 0 0.566 0.566 1.000 1.000 0 0 -9712 0 0 482 -9230 -7533 ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 73 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 74 @@ -4638,7 +4701,7 @@ CZ16 Dual Fuel ! Log for Run 002: -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console @@ -4650,16 +4713,16 @@ Input for Run 002: rsCtrlAuxH = Cycle rsAFUEAuxH = .93 + ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Furn Cycle" + RUN - - - ------------------------------------------------------------------------------ -! ashp_dfng 002 Mon 20-Dec-21 10:36:12 am Page 74 +! ashp_dfng 002 Wed 29-Dec-21 2:16:56 pm Page 75 @@ -4693,49 +4756,20 @@ Monthly Energy Use, meter "MtrNatGas" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 2.272 0 0 2.130 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.141 0 0 0 0 -Feb 1.809 0 0 1.684 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.124 0 0 0 0 -Mar 0.810 0 0 0.671 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.139 0 0 0 0 -Apr 1.049 0 0 0.938 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.111 0 0 0 0 -May 0.231 0 0 0.116 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.115 0 0 0 0 -Jun 0.124 0 0 .00675 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.117 0 0 0 0 -Jul 0.128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.128 0 0 0 0 -Aug 0.119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.119 0 0 0 0 -Sep 0.131 0 0 0.0156 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.115 0 0 0 0 -Oct 0.264 0 0 0.145 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.119 0 0 0 0 -Nov 0.600 0 0 0.459 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.141 0 0 0 0 -Dec 1.625 0 0 1.474 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.151 0 0 0 0 - -Yr 9.160 0 0 7.640 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.520 0 0 0 0 - - - -HVAC Cooling Info - - Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC - ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- - 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 - +Jan 2.346 0 0 2.130 0 0 0 0 0 0 0 0.0744 0 0 0 0 0 0 0 0 0.141 0 0 0 0 +Feb 1.876 0 0 1.684 0 0 0 0 0 0 0 0.0672 0 0 0 0 0 0 0 0 0.124 0 0 0 0 +Mar 0.884 0 0 0.671 0 0 0 0 0 0 0 0.0743 0 0 0 0 0 0 0 0 0.139 0 0 0 0 +Apr 1.121 0 0 0.938 0 0 0 0 0 0 0 0.0720 0 0 0 0 0 0 0 0 0.111 0 0 0 0 +May 0.306 0 0 0.116 0 0 0 0 0 0 0 0.0744 0 0 0 0 0 0 0 0 0.115 0 0 0 0 +Jun 0.196 0 0 .00675 0 0 0 0 0 0 0 0.0720 0 0 0 0 0 0 0 0 0.117 0 0 0 0 +Jul 0.203 0 0 0 0 0 0 0 0 0 0 0.0744 0 0 0 0 0 0 0 0 0.128 0 0 0 0 +Aug 0.193 0 0 0 0 0 0 0 0 0 0 0.0744 0 0 0 0 0 0 0 0 0.119 0 0 0 0 +Sep 0.203 0 0 0.0156 0 0 0 0 0 0 0 0.0720 0 0 0 0 0 0 0 0 0.115 0 0 0 0 +Oct 0.338 0 0 0.145 0 0 0 0 0 0 0 0.0744 0 0 0 0 0 0 0 0 0.119 0 0 0 0 +Nov 0.672 0 0 0.459 0 0 0 0 0 0 0 0.0721 0 0 0 0 0 0 0 0 0.141 0 0 0 0 +Dec 1.699 0 0 1.474 0 0 0 0 0 0 0 0.0744 0 0 0 0 0 0 0 0 0.151 0 0 0 0 - - - - ------------------------------------------------------------------------------- -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 75 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - - -HVAC Heating Info - - Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH - ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- - 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 0.93 +Yr 10.036 0 0 7.640 0 0 0 0 0 0 0 0.876 0 0 0 0 0 0 0 0 1.520 0 0 0 0 @@ -4750,21 +4784,50 @@ HVAC Heating Info +------------------------------------------------------------------------------ +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 76 + +CZ16 Dual Fuel +------------------------------------------------------------------------------ +RSYSRES Furn Alt + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 407.94 58.493 5522.0 519.00 1462.3 396.42 7899.8 0 0 0 0 0 0 558.07 1572.4 74.400 2204.9 1621.1 0 0 396.42 98.406 2115.9 0 0 0 0 0 0 0 6362.5 -28.86 0 0 0 0 + Feb 336.42 47.241 4560.5 385.47 1181.0 326.06 6453.1 0 0 0 0 0 0 414.48 1269.9 67.200 1751.6 1334.4 0 0 326.06 76.841 1737.3 0 0 0 0 0 0 0 5225.1 -22.12 0 0 0 0 + Mar 326.47 5.826 4615.0 478.82 145.66 282.41 5521.9 0 0 0 0 0 0 514.86 156.62 74.300 745.79 1307.3 0 0 282.41 75.886 1665.6 0 0 0 0 0 0 0 4452.6 -24.10 0 0 0 0 + Apr 323.82 15.911 4458.5 474.81 397.77 288.73 5619.8 0 0 0 0 0 0 510.55 427.71 72.000 1010.3 1296.3 0 0 288.73 86.259 1671.3 0 0 0 0 0 0 0 4609.1 -17.50 0 0 0 0 + May 77.534 0.0378 1156.1 107.02 0.944 65.927 1330.0 0 0 0 0 0 0 115.07 1.015 74.400 190.49 320.09 0 0 65.927 29.481 415.49 0 0 0 0 0 0 0 1088.6 -5.353 0 0 0 0 + Jun 29.493 0 314.61 6.277 0 15.089 335.98 -196.3 -12.29 9.989 -186.3 0 0 6.749 0 72.000 78.749 78.002 0 0 15.089 6.824 99.915 46.394 9.989 0 56.382 0 0 0 274.60 -1.236 -147.4 -11.15 0 0 + Jul 10.536 0 75.391 0 0 3.420 78.811 -110.0 -11.10 5.542 -104.5 0 0 0 0 74.400 74.400 18.169 0 0 3.420 0 21.588 24.767 5.542 0 30.309 0 0 0 66.741 -0.223 -83.95 -10.83 0 0 + Aug 36.171 0 0 0 0 0 0 -620.4 -2.941 30.778 -589.6 0 0 0 0 74.400 74.400 0 0 0 0 0 0 139.24 30.778 0 170.02 0 0 0 0 0 -488.2 -4.602 0 0 + Sep 12.967 0 163.73 14.515 0 9.037 187.28 -41.30 0 1.986 -39.31 0 0 15.608 0 72.000 87.608 45.143 0 0 9.037 6.347 60.527 8.373 1.986 0.614 10.973 0 0 0 150.19 -0.981 -33.06 -0.175 0 0 + Oct 104.76 0.479 1508.5 122.82 11.968 89.438 1732.7 0 0 0 0 0 0 132.06 12.869 74.400 219.33 424.57 0 0 89.438 28.525 542.53 0 0 0 0 0 0 0 1372.2 -7.897 0 0 0 0 + Nov 252.50 3.569 3631.0 337.29 89.213 217.63 4275.1 0 0 0 0 0 0 362.68 95.928 72.100 530.71 1020.8 0 0 217.63 55.413 1293.9 0 0 0 0 0 0 0 3418.8 -18.41 0 0 0 0 + Dec 381.85 36.410 5273.3 460.35 910.24 355.47 6999.4 0 0 0 0 0 0 495.00 978.75 74.400 1548.2 1519.2 0 0 355.47 77.797 1952.4 0 0 0 0 0 0 0 5520.0 -32.40 0 0 0 0 + Yr 2300.5 167.97 31279 2906.4 4199.2 2049.6 40434 -968.0 -26.33 48.295 -919.7 0 0 3125.1 4515.2 876.00 8516.3 8985.1 0 0 2049.6 541.78 11577 218.77 48.295 0.614 267.68 0 0 0 32540 -159.1 -752.7 -26.76 0 0 +HVAC Cooling Info + Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 +HVAC Heating Info + Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH + ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- + 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 0.93 @@ -4785,7 +4848,7 @@ HVAC Heating Info ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 76 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 77 @@ -4796,71 +4859,71 @@ CZ16 Dual Fuel Hourly User-defined Report, Sun 04-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 4 1 18.1 0.331 0.669 4 0 0 1 0 17 - 1 4 2 19.9 0.318 0.682 4 0 0 1 0 17 - 1 4 3 20.1 0.318 0.682 4 0 0 1 0 17 - 1 4 4 20.8 0.318 0.682 4 0 0 1 0 17 - 1 4 5 19.9 0.314 0.686 4 0 0 1 0 17 - 1 4 6 20.1 0.328 0.672 4 0 0 1 0 17 - 1 4 7 21.0 0.359 0.641 4 0 0 1 0 16 - 1 4 8 21.0 0.464 0.536 5 0 0 1 0 13 - 1 4 9 21.9 0.836 0.164 10 0 0 1 0 4 - 1 4 10 25.2 0.833 0 10 0 0 1 0 0 - 1 4 11 26.8 0.604 0 7 0 0 0 0 0 - 1 4 12 25.2 0.559 0 7 0 0 0 0 0 - 1 4 13 26.2 0.517 0 6 0 0 0 0 0 - 1 4 14 26.4 0.435 0 5 0 0 0 0 0 - 1 4 15 27.0 0.392 0 5 0 0 0 0 0 - 1 4 16 26.8 0.427 0 5 0 0 0 0 0 - 1 4 17 25.9 0.648 0 8 0 0 0 0 0 - 1 4 18 24.8 0.943 0.0365 11 0 0 1 1 1 - 1 4 19 23.9 0.855 0.145 10 0 0 1 0 4 - 1 4 20 23.0 0.780 0.220 9 0 0 1 0 6 - 1 4 21 23.0 0.731 0.269 8 0 0 1 0 7 - 1 4 22 23.2 0.681 0.319 8 0 0 1 0 8 - 1 4 23 25.2 0.623 0.377 7 0 0 1 0 9 - 1 4 24 26.1 0.615 0.385 7 0 0 1 0 10 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 4 1 18.1 0.331 0.669 4 0 0 1 0 0 17 + 1 4 2 19.9 0.318 0.682 4 0 0 1 0 0 17 + 1 4 3 20.1 0.318 0.682 4 0 0 1 0 0 17 + 1 4 4 20.8 0.318 0.682 4 0 0 1 0 0 17 + 1 4 5 19.9 0.314 0.686 4 0 0 1 0 0 17 + 1 4 6 20.1 0.328 0.672 4 0 0 1 0 0 17 + 1 4 7 21.0 0.359 0.641 4 0 0 1 0 0 16 + 1 4 8 21.0 0.464 0.536 5 0 0 1 0 0 13 + 1 4 9 21.9 0.836 0.164 10 0 0 1 0 0 4 + 1 4 10 25.2 0.833 0 10 0 0 1 0 0 0 + 1 4 11 26.8 0.604 0 7 0 0 0 0 0 0 + 1 4 12 25.2 0.559 0 7 0 0 0 0 0 0 + 1 4 13 26.2 0.517 0 6 0 0 0 0 0 0 + 1 4 14 26.4 0.435 0 5 0 0 0 0 0 0 + 1 4 15 27.0 0.392 0 5 0 0 0 0 0 0 + 1 4 16 26.8 0.427 0 5 0 0 0 0 0 0 + 1 4 17 25.9 0.648 0 8 0 0 0 0 0 0 + 1 4 18 24.8 0.943 0.0365 11 0 0 1 0 1 1 + 1 4 19 23.9 0.855 0.145 10 0 0 1 0 0 4 + 1 4 20 23.0 0.780 0.220 9 0 0 1 0 0 6 + 1 4 21 23.0 0.731 0.269 8 0 0 1 0 0 7 + 1 4 22 23.2 0.681 0.319 8 0 0 1 0 0 8 + 1 4 23 25.2 0.623 0.377 7 0 0 1 0 0 9 + 1 4 24 26.1 0.615 0.385 7 0 0 1 0 0 10 Hourly User-defined Report, Mon 05-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 5 1 26.2 0.591 0.409 7 0 0 1 0 10 - 1 5 2 28.2 0.600 0.400 7 0 0 1 0 10 - 1 5 3 29.1 0.628 0.372 8 0 0 1 1 9 - 1 5 4 31.1 0.676 0.324 9 0 0 1 1 8 - 1 5 5 32.2 0.728 0.272 9 0 0 1 1 7 - 1 5 6 32.9 0.797 0.203 10 0 0 1 1 5 - 1 5 7 32.2 0.845 0.155 11 0 0 1 1 4 - 1 5 8 33.4 0.941 0.0443 12 0 0 1 1 1 - 1 5 9 36.1 0.634 0 8 0 0 0 1 0 - 1 5 10 38.1 0.356 0 5 0 0 0 1 0 - 1 5 11 40.3 0.236 0 3 0 0 0 0 0 - 1 5 12 41.5 0.185 0 3 0 0 0 0 0 - 1 5 13 38.1 0.169 0 2 0 0 0 0 0 - 1 5 14 39.7 0.148 0 2 0 0 0 0 0 - 1 5 15 39.2 0.119 0 2 0 0 0 0 0 - 1 5 16 39.0 0.256 0 4 0 0 0 0 0 - 1 5 17 38.8 0.386 0 5 0 0 0 1 0 - 1 5 18 37.9 0.551 0 8 0 0 0 1 0 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 5 1 26.2 0.591 0.409 7 0 0 1 0 0 10 + 1 5 2 28.2 0.600 0.400 7 0 0 1 0 0 10 + 1 5 3 29.1 0.628 0.372 8 0 0 1 0 1 9 + 1 5 4 31.1 0.676 0.324 9 0 0 1 0 1 8 + 1 5 5 32.2 0.728 0.272 9 0 0 1 0 1 7 + 1 5 6 32.9 0.797 0.203 10 0 0 1 0 1 5 + 1 5 7 32.2 0.845 0.155 11 0 0 1 0 1 4 + 1 5 8 33.4 0.941 0.0443 12 0 0 1 0 1 1 + 1 5 9 36.1 0.634 0 8 0 0 0 0 1 0 + 1 5 10 38.1 0.356 0 5 0 0 0 0 1 0 + 1 5 11 40.3 0.236 0 3 0 0 0 0 0 0 + 1 5 12 41.5 0.185 0 3 0 0 0 0 0 0 + 1 5 13 38.1 0.169 0 2 0 0 0 0 0 0 + 1 5 14 39.7 0.148 0 2 0 0 0 0 0 0 + 1 5 15 39.2 0.119 0 2 0 0 0 0 0 0 + 1 5 16 39.0 0.256 0 4 0 0 0 0 0 0 + 1 5 17 38.8 0.386 0 5 0 0 0 0 1 0 + 1 5 18 37.9 0.551 0 8 0 0 0 0 1 0 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 77 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 78 CZ16 Dual Fuel ------------------------------------------------------------------------------ - 1 5 19 37.9 0.610 0 8 0 0 0 1 0 - 1 5 20 37.8 0.638 0 9 0 0 0 1 0 - 1 5 21 37.0 0.692 0 9 0 0 0 1 0 - 1 5 22 36.9 0.737 0 10 0 0 1 1 0 - 1 5 23 36.1 0.802 0 11 0 0 1 1 0 - 1 5 24 36.9 0.864 0 12 0 0 1 1 0 + 1 5 19 37.9 0.610 0 8 0 0 0 0 1 0 + 1 5 20 37.8 0.638 0 9 0 0 0 0 1 0 + 1 5 21 37.0 0.692 0 9 0 0 0 0 1 0 + 1 5 22 36.9 0.737 0 10 0 0 1 0 1 0 + 1 5 23 36.1 0.802 0 11 0 0 1 0 1 0 + 1 5 24 36.9 0.864 0 12 0 0 1 0 1 0 @@ -4911,7 +4974,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 78 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 79 @@ -4924,94 +4987,94 @@ Hourly Energy Use, meter "MtrNatGas", Sun 04-Jan Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ - 1 0.0180 0 0 0.0180 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 2 0.0184 0 0 0.0184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 3 0.0184 0 0 0.0184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00001 0 0 0 0 - 4 0.0184 0 0 0.0184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00001 0 0 0 0 - 5 0.0186 0 0 0.0185 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00001 0 0 0 0 - 6 0.0182 0 0 0.0182 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 7 0.0174 0 0 0.0174 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00005 0 0 0 0 - 8 0.0147 0 0 0.0146 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00012 0 0 0 0 - 9 .00498 0 0 .00476 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00022 0 0 0 0 - 10 .00074 0 0 .00052 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00022 0 0 0 0 - 11 .00072 0 0 .00051 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00021 0 0 0 0 - 12 .00071 0 0 .00046 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00025 0 0 0 0 - 13 .00071 0 0 .00042 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00029 0 0 0 0 - 14 .00065 0 0 .00038 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00027 0 0 0 0 - 15 .00064 0 0 .00035 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00028 0 0 0 0 - 16 .00070 0 0 .00039 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00031 0 0 0 0 - 17 .00097 0 0 .00055 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00041 0 0 0 0 - 18 .00234 0 0 .00170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00063 0 0 0 0 - 19 .00508 0 0 .00449 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00059 0 0 0 0 - 20 .00671 0 0 .00638 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00033 0 0 0 0 - 21 .00779 0 0 .00765 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00015 0 0 0 0 - 22 .00902 0 0 .00896 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00006 0 0 0 0 - 23 0.0106 0 0 0.0106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00004 0 0 0 0 - 24 0.0109 0 0 0.0108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - -Day 0.205 0 0 0.201 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00456 0 0 0 0 + 1 0.0181 0 0 0.0180 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 2 0.0185 0 0 0.0184 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 3 0.0185 0 0 0.0184 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00001 0 0 0 0 + 4 0.0185 0 0 0.0184 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00001 0 0 0 0 + 5 0.0187 0 0 0.0185 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00001 0 0 0 0 + 6 0.0183 0 0 0.0182 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 7 0.0175 0 0 0.0174 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00005 0 0 0 0 + 8 0.0148 0 0 0.0146 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00012 0 0 0 0 + 9 .00508 0 0 .00476 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00022 0 0 0 0 + 10 .00084 0 0 .00052 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00022 0 0 0 0 + 11 .00082 0 0 .00051 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00021 0 0 0 0 + 12 .00081 0 0 .00046 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00025 0 0 0 0 + 13 .00081 0 0 .00042 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00029 0 0 0 0 + 14 .00075 0 0 .00038 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00027 0 0 0 0 + 15 .00074 0 0 .00035 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00028 0 0 0 0 + 16 .00080 0 0 .00039 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00031 0 0 0 0 + 17 .00107 0 0 .00055 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00041 0 0 0 0 + 18 .00244 0 0 .00170 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00063 0 0 0 0 + 19 .00518 0 0 .00449 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00059 0 0 0 0 + 20 .00681 0 0 .00638 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00033 0 0 0 0 + 21 .00789 0 0 .00765 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00015 0 0 0 0 + 22 .00912 0 0 .00896 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00006 0 0 0 0 + 23 0.0107 0 0 0.0106 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00004 0 0 0 0 + 24 0.0110 0 0 0.0108 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + +Day 0.208 0 0 0.201 0 0 0 0 0 0 0 .00240 0 0 0 0 0 0 0 0 .00456 0 0 0 0 Hourly Energy Use, meter "MtrNatGas", Mon 05-Jan Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ - 1 0.0115 0 0 0.0115 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 2 0.0114 0 0 0.0113 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 3 0.0107 0 0 0.0107 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 4 .00957 0 0 .00955 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 5 .00833 0 0 .00831 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00002 0 0 0 0 - 6 .00668 0 0 .00661 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00006 0 0 0 0 - 7 .00546 0 0 .00538 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00009 0 0 0 0 - 8 .00269 0 0 .00258 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00011 0 0 0 0 - 9 .00117 0 0 .00105 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00012 0 0 0 0 - 10 .00077 0 0 .00067 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00010 0 0 0 0 - 11 .00058 0 0 .00049 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00010 0 0 0 0 - 12 .00054 0 0 .00041 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00013 0 0 0 0 - 13 .00051 0 0 .00035 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00016 0 0 0 0 - 14 .00045 0 0 .00030 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00015 0 0 0 0 - 15 .00040 0 0 .00025 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00015 0 0 0 0 - 16 .00076 0 0 .00053 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00024 0 0 0 0 + 1 0.0116 0 0 0.0115 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 2 0.0115 0 0 0.0113 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 3 0.0108 0 0 0.0107 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 4 .00967 0 0 .00955 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 5 .00843 0 0 .00831 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00002 0 0 0 0 + 6 .00678 0 0 .00661 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00006 0 0 0 0 + 7 .00556 0 0 .00538 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00009 0 0 0 0 + 8 .00279 0 0 .00258 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00011 0 0 0 0 + 9 .00127 0 0 .00105 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00012 0 0 0 0 + 10 .00087 0 0 .00067 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00010 0 0 0 0 + 11 .00068 0 0 .00049 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00010 0 0 0 0 + 12 .00064 0 0 .00041 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00013 0 0 0 0 + 13 .00061 0 0 .00035 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00016 0 0 0 0 + 14 .00055 0 0 .00030 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00015 0 0 0 0 + 15 .00050 0 0 .00025 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00015 0 0 0 0 + 16 .00086 0 0 .00053 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00024 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 79 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 80 CZ16 Dual Fuel ------------------------------------------------------------------------------ - 17 .00131 0 0 .00078 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00052 0 0 0 0 - 18 .00197 0 0 .00109 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00088 0 0 0 0 - 19 .00200 0 0 .00118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00082 0 0 0 0 - 20 .00168 0 0 .00123 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00045 0 0 0 0 - 21 .00150 0 0 .00131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00019 0 0 0 0 - 22 .00145 0 0 .00136 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00009 0 0 0 0 - 23 .00150 0 0 .00145 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00005 0 0 0 0 - 24 .00161 0 0 .00157 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00005 0 0 0 0 + 17 .00141 0 0 .00078 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00052 0 0 0 0 + 18 .00207 0 0 .00109 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00088 0 0 0 0 + 19 .00210 0 0 .00118 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00082 0 0 0 0 + 20 .00178 0 0 .00123 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00045 0 0 0 0 + 21 .00160 0 0 .00131 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00019 0 0 0 0 + 22 .00155 0 0 .00136 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00009 0 0 0 0 + 23 .00160 0 0 .00145 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00005 0 0 0 0 + 24 .00171 0 0 .00157 0 0 0 0 0 0 0 .00010 0 0 0 0 0 0 0 0 .00005 0 0 0 0 -Day 0.0845 0 0 0.0800 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00456 0 0 0 0 +Day 0.0869 0 0 0.0800 0 0 0 0 0 0 0 .00240 0 0 0 0 0 0 0 0 .00456 0 0 0 0 Monthly User-defined Report - Month hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- ----- -------- ------- ------- ------- ------- ------- ------- - 1 407.9 58.493 5522 0 0 396 519 1462 - 2 336.4 47.241 4560 0 0 326 385 1181 - 3 326.5 5.826 4615 0 0 282 479 146 - 4 323.8 15.911 4458 0 0 289 475 398 - 5 77.53 0.0378 1156 0 0 66 107 1 - 6 29.49 0 315 -196 -12 25 6 0 - 7 10.54 0 75 -110 -11 9 0 0 - 8 36.17 0 0 -620 -3 31 0 0 - 9 12.97 0 164 -41 0 11 15 0 - 10 104.8 0.479 1508 0 0 89 123 12 - 11 252.5 3.569 3631 0 0 218 337 89 - 12 381.9 36.410 5273 0 0 355 460 910 + Month hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 407.9 58.493 5522 0 0 396 0 519 1462 + 2 336.4 47.241 4560 0 0 326 0 385 1181 + 3 326.5 5.826 4615 0 0 282 0 479 146 + 4 323.8 15.911 4458 0 0 289 0 475 398 + 5 77.53 0.0378 1156 0 0 66 0 107 1 + 6 29.49 0 315 -196 -12 15 10 6 0 + 7 10.54 0 75 -110 -11 3 6 0 0 + 8 36.17 0 0 -620 -3 0 31 0 0 + 9 12.97 0 164 -41 0 9 2 15 0 + 10 104.8 0.479 1508 0 0 89 0 123 12 + 11 252.5 3.569 3631 0 0 218 0 337 89 + 12 381.9 36.410 5273 0 0 355 0 460 910 - Yr 2300 167.966 31279 -968 -26 2098 2906 4199 + Yr 2300 167.966 31279 -968 -26 2050 48 2906 4199 @@ -5037,7 +5100,7 @@ Monthly User-defined Report ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 80 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 81 @@ -5050,69 +5113,69 @@ Subhourly User-defined Report, Sun 04-Jan mon day Hr Sh ToDb Tzn UnMet capfl COPfl loadF runF spdF PLF runFAux COPpl qComp qAux qDef qFan qTot qsZn --- --- -- -- ---- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ------ ------ ------ ------ - 1 4 0 0 18.7 68.00 0 12006 2.966 1.000 0.348 1.000 0.927 0.652 2.749 3828 16305 52 850 21035 17599 - 1 4 0 1 18.6 68.00 0 11980 2.963 1.000 0.341 1.000 0.926 0.659 2.743 3743 16485 48 850 21126 17671 - 1 4 0 2 18.5 68.00 0 11953 2.959 1.000 0.335 1.000 0.925 0.665 2.738 3674 16630 43 850 21197 17735 - 1 4 0 3 18.4 68.00 0 11926 2.955 1.000 0.327 1.000 0.924 0.673 2.732 3586 16817 39 850 21293 17822 - 1 4 0 4 18.3 68.00 0 11900 2.951 1.000 0.322 1.000 0.924 0.678 2.726 3519 16959 35 850 21363 17881 - 1 4 0 5 18.1 68.00 0 11873 2.948 1.000 0.317 1.000 0.923 0.683 2.721 3459 17084 31 850 21424 17936 - 1 4 1 0 18.4 68.00 0 11940 2.957 1.000 0.314 1.000 0.923 0.686 2.729 3447 17142 39 850 21478 17985 - 1 4 1 1 18.7 68.00 0 12006 2.966 1.000 0.313 1.000 0.923 0.687 2.737 3450 17163 47 850 21510 18001 - 1 4 1 2 19.0 68.00 0 12073 2.976 1.000 0.313 1.000 0.923 0.687 2.746 3462 17165 55 850 21532 17999 - 1 4 1 3 19.3 68.00 0 12140 2.985 1.000 0.318 1.000 0.923 0.682 2.756 3530 17040 64 850 21485 17948 - 1 4 1 4 19.6 68.00 0 12207 2.995 1.000 0.320 1.000 0.923 0.680 2.765 3556 17011 73 850 21490 17949 - 1 4 1 5 19.9 68.00 0 12273 3.004 1.000 0.327 1.000 0.924 0.673 2.776 3649 16833 83 850 21415 17871 - 1 4 2 0 20.0 68.00 0 12280 3.005 1.000 0.320 1.000 0.923 0.680 2.775 3574 17003 82 850 21509 17948 - 1 4 2 1 20.0 68.00 0 12287 3.006 1.000 0.321 1.000 0.924 0.679 2.776 3590 16971 83 850 21494 17938 - 1 4 2 2 20.0 68.00 0 12293 3.007 1.000 0.319 1.000 0.923 0.681 2.776 3562 17037 83 850 21532 17984 - 1 4 2 3 20.1 68.00 0 12300 3.008 1.000 0.317 1.000 0.923 0.683 2.776 3541 17087 84 850 21561 18020 - 1 4 2 4 20.1 68.00 0 12307 3.009 1.000 0.315 1.000 0.923 0.685 2.777 3528 17119 84 850 21581 18051 - 1 4 2 5 20.1 68.00 0 12313 3.010 1.000 0.314 1.000 0.923 0.686 2.777 3518 17144 85 850 21596 18075 - 1 4 3 0 20.2 68.00 0 12340 3.013 1.000 0.317 1.000 0.923 0.683 2.782 3553 17077 89 850 21568 18052 - 1 4 3 1 20.4 68.00 0 12367 3.017 1.000 0.316 1.000 0.923 0.684 2.785 3553 17088 92 850 21583 18068 - 1 4 3 2 20.5 68.00 0 12393 3.021 1.000 0.316 1.000 0.923 0.684 2.788 3554 17097 95 850 21596 18082 - 1 4 3 3 20.6 68.00 0 12420 3.025 1.000 0.316 1.000 0.923 0.684 2.792 3555 17107 98 850 21610 18097 - 1 4 3 4 20.7 68.00 0 12447 3.028 1.000 0.315 1.000 0.923 0.685 2.795 3553 17123 101 850 21627 18113 - 1 4 3 5 20.8 68.00 0 12473 3.032 1.000 0.330 1.000 0.925 0.670 2.803 3724 16755 109 850 21438 17932 - 1 4 4 0 20.7 68.00 0 12440 3.027 1.000 0.326 1.000 0.924 0.674 2.798 3670 16859 104 850 21483 17993 - 1 4 4 1 20.5 68.00 0 12407 3.023 1.000 0.322 1.000 0.924 0.678 2.792 3623 16951 98 850 21522 18031 - 1 4 4 2 20.4 68.00 0 12373 3.018 1.000 0.318 1.000 0.923 0.682 2.786 3568 17058 93 850 21568 18066 - 1 4 4 3 20.2 68.00 0 12340 3.013 1.000 0.310 1.000 0.922 0.690 2.779 3474 17252 87 850 21663 18148 - 1 4 4 4 20.1 68.00 0 12307 3.009 1.000 0.306 1.000 0.922 0.694 2.774 3420 17358 81 850 21710 18188 - 1 4 4 5 19.9 68.00 0 12273 3.004 1.000 0.302 1.000 0.921 0.698 2.768 3371 17455 77 850 21752 18226 - 1 4 5 0 20.0 68.00 0 12280 3.005 1.000 0.326 1.000 0.924 0.674 2.777 3647 16839 84 850 21420 17943 - 1 4 5 1 20.0 68.00 0 12287 3.006 1.000 0.327 1.000 0.924 0.673 2.778 3659 16816 85 850 21410 17936 - 1 4 5 2 20.0 68.00 0 12293 3.007 1.000 0.328 1.000 0.924 0.672 2.779 3666 16804 86 850 21406 17930 - 1 4 5 3 20.1 68.00 0 12300 3.008 1.000 0.329 1.000 0.924 0.671 2.781 3677 16782 87 850 21396 17923 - 1 4 5 4 20.1 68.00 0 12307 3.009 1.000 0.329 1.000 0.925 0.671 2.782 3684 16771 88 850 21392 17912 - 1 4 5 5 20.1 68.00 0 12313 3.010 1.000 0.329 1.000 0.925 0.671 2.783 3685 16771 89 850 21394 17896 - 1 4 6 0 20.3 68.00 0 12347 3.014 1.000 0.355 1.000 0.927 0.645 2.796 3987 16113 100 850 21050 17588 - 1 4 6 1 20.4 68.00 0 12380 3.019 1.000 0.353 1.000 0.927 0.647 2.799 3968 16170 104 850 21092 17611 - 1 4 6 2 20.6 68.00 0 12413 3.024 1.000 0.355 1.000 0.927 0.645 2.804 3996 16125 109 850 21080 17593 - 1 4 6 3 20.7 68.00 0 12447 3.028 1.000 0.359 1.000 0.928 0.641 2.810 4053 16013 115 850 21032 17543 - 1 4 6 4 20.9 68.00 0 12480 3.033 1.000 0.362 1.000 0.928 0.638 2.815 4086 15957 121 850 21014 17526 - 1 4 6 5 21.0 68.00 0 12513 3.038 1.000 0.367 1.000 0.929 0.633 2.821 4158 15814 127 850 20950 17465 - 1 4 7 0 21.0 68.00 0 12513 3.038 1.000 0.418 1.000 0.935 0.582 2.839 4733 14544 145 850 20272 16894 - 1 4 7 1 21.0 68.00 0 12513 3.038 1.000 0.426 1.000 0.935 0.574 2.842 4824 14344 148 850 20166 16802 - 1 4 7 2 21.0 68.00 0 12513 3.038 1.000 0.437 1.000 0.937 0.563 2.845 4942 14082 151 850 20026 16676 - 1 4 7 3 21.0 68.00 0 12513 3.038 1.000 0.461 1.000 0.939 0.539 2.854 5220 13467 160 850 19698 16393 - 1 4 7 4 21.0 68.00 0 12513 3.038 1.000 0.500 1.000 0.944 0.500 2.867 5657 12504 173 850 19184 15958 - 1 4 7 5 21.0 68.00 0 12513 3.038 1.000 0.541 1.000 0.948 0.459 2.881 6118 11485 188 850 18640 15495 - ------------------------------------------------------------------------------- -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 81 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - 1 4 8 0 21.2 68.00 0 12547 3.042 1.000 0.663 1.000 0.962 0.337 2.927 7514 8430 238 850 17032 14143 - 1 4 8 1 21.3 68.00 0 12580 3.047 1.000 0.743 1.000 0.971 0.257 2.959 8438 6427 277 850 15991 13263 - 1 4 8 2 21.5 68.00 0 12614 3.052 1.000 0.817 1.000 0.979 0.183 2.989 9295 4578 315 850 15037 12450 - 1 4 8 3 21.6 68.00 0 12647 3.056 1.000 0.884 1.000 0.987 0.116 3.017 10080 2891 353 850 14174 11714 - 1 4 8 4 21.8 68.00 0 12680 3.061 1.000 0.931 1.000 0.992 0.0689 3.037 10633 1722 383 850 13587 11214 - 1 4 8 5 21.9 68.00 0 12714 3.066 1.000 0.979 1.000 0.998 0.0206 3.058 11203 515 416 850 12984 10698 + 1 4 0 0 18.7 68.00 0 12006 2.966 0.395 0.348 1.000 0.927 0.652 2.749 3828 16305 52 850 21035 17599 + 1 4 0 1 18.6 68.00 0 11980 2.963 0.388 0.341 1.000 0.926 0.659 2.743 3743 16485 48 850 21126 17671 + 1 4 0 2 18.5 68.00 0 11953 2.959 0.383 0.335 1.000 0.925 0.665 2.738 3674 16630 43 850 21197 17735 + 1 4 0 3 18.4 68.00 0 11926 2.955 0.376 0.327 1.000 0.924 0.673 2.732 3586 16817 39 850 21293 17822 + 1 4 0 4 18.3 68.00 0 11900 2.951 0.371 0.322 1.000 0.924 0.678 2.726 3519 16959 35 850 21363 17881 + 1 4 0 5 18.1 68.00 0 11873 2.948 0.366 0.317 1.000 0.923 0.683 2.721 3459 17084 31 850 21424 17936 + 1 4 1 0 18.4 68.00 0 11940 2.957 0.364 0.314 1.000 0.923 0.686 2.729 3447 17142 39 850 21478 17985 + 1 4 1 1 18.7 68.00 0 12006 2.966 0.363 0.313 1.000 0.923 0.687 2.737 3450 17163 47 850 21510 18001 + 1 4 1 2 19.0 68.00 0 12073 2.976 0.362 0.313 1.000 0.923 0.687 2.746 3462 17165 55 850 21532 17999 + 1 4 1 3 19.3 68.00 0 12140 2.985 0.367 0.318 1.000 0.923 0.682 2.756 3530 17040 64 850 21485 17948 + 1 4 1 4 19.6 68.00 0 12207 2.995 0.368 0.320 1.000 0.923 0.680 2.765 3556 17011 73 850 21490 17949 + 1 4 1 5 19.9 68.00 0 12273 3.004 0.374 0.327 1.000 0.924 0.673 2.776 3649 16833 83 850 21415 17871 + 1 4 2 0 20.0 68.00 0 12280 3.005 0.368 0.320 1.000 0.923 0.680 2.775 3574 17003 82 850 21509 17948 + 1 4 2 1 20.0 68.00 0 12287 3.006 0.369 0.321 1.000 0.924 0.679 2.776 3590 16971 83 850 21494 17938 + 1 4 2 2 20.0 68.00 0 12293 3.007 0.367 0.319 1.000 0.923 0.681 2.776 3562 17037 83 850 21532 17984 + 1 4 2 3 20.1 68.00 0 12300 3.008 0.365 0.317 1.000 0.923 0.683 2.776 3541 17087 84 850 21561 18020 + 1 4 2 4 20.1 68.00 0 12307 3.009 0.364 0.315 1.000 0.923 0.685 2.777 3528 17119 84 850 21581 18051 + 1 4 2 5 20.1 68.00 0 12313 3.010 0.363 0.314 1.000 0.923 0.686 2.777 3518 17144 85 850 21596 18075 + 1 4 3 0 20.2 68.00 0 12340 3.013 0.365 0.317 1.000 0.923 0.683 2.782 3553 17077 89 850 21568 18052 + 1 4 3 1 20.4 68.00 0 12367 3.017 0.365 0.316 1.000 0.923 0.684 2.785 3553 17088 92 850 21583 18068 + 1 4 3 2 20.5 68.00 0 12393 3.021 0.364 0.316 1.000 0.923 0.684 2.788 3554 17097 95 850 21596 18082 + 1 4 3 3 20.6 68.00 0 12420 3.025 0.364 0.316 1.000 0.923 0.684 2.792 3555 17107 98 850 21610 18097 + 1 4 3 4 20.7 68.00 0 12447 3.028 0.363 0.315 1.000 0.923 0.685 2.795 3553 17123 101 850 21627 18113 + 1 4 3 5 20.8 68.00 0 12473 3.032 0.377 0.330 1.000 0.925 0.670 2.803 3724 16755 109 850 21438 17932 + 1 4 4 0 20.7 68.00 0 12440 3.027 0.373 0.326 1.000 0.924 0.674 2.798 3670 16859 104 850 21483 17993 + 1 4 4 1 20.5 68.00 0 12407 3.023 0.370 0.322 1.000 0.924 0.678 2.792 3623 16951 98 850 21522 18031 + 1 4 4 2 20.4 68.00 0 12373 3.018 0.366 0.318 1.000 0.923 0.682 2.786 3568 17058 93 850 21568 18066 + 1 4 4 3 20.2 68.00 0 12340 3.013 0.359 0.310 1.000 0.922 0.690 2.779 3474 17252 87 850 21663 18148 + 1 4 4 4 20.1 68.00 0 12307 3.009 0.355 0.306 1.000 0.922 0.694 2.774 3420 17358 81 850 21710 18188 + 1 4 4 5 19.9 68.00 0 12273 3.004 0.351 0.302 1.000 0.921 0.698 2.768 3371 17455 77 850 21752 18226 + 1 4 5 0 20.0 68.00 0 12280 3.005 0.374 0.326 1.000 0.924 0.674 2.777 3647 16839 84 850 21420 17943 + 1 4 5 1 20.0 68.00 0 12287 3.006 0.375 0.327 1.000 0.924 0.673 2.778 3659 16816 85 850 21410 17936 + 1 4 5 2 20.0 68.00 0 12293 3.007 0.375 0.328 1.000 0.924 0.672 2.779 3666 16804 86 850 21406 17930 + 1 4 5 3 20.1 68.00 0 12300 3.008 0.376 0.329 1.000 0.924 0.671 2.781 3677 16782 87 850 21396 17923 + 1 4 5 4 20.1 68.00 0 12307 3.009 0.377 0.329 1.000 0.925 0.671 2.782 3684 16771 88 850 21392 17912 + 1 4 5 5 20.1 68.00 0 12313 3.010 0.377 0.329 1.000 0.925 0.671 2.783 3685 16771 89 850 21394 17896 + 1 4 6 0 20.3 68.00 0 12347 3.014 0.401 0.355 1.000 0.927 0.645 2.796 3987 16113 100 850 21050 17588 + 1 4 6 1 20.4 68.00 0 12380 3.019 0.399 0.353 1.000 0.927 0.647 2.799 3968 16170 104 850 21092 17611 + 1 4 6 2 20.6 68.00 0 12413 3.024 0.400 0.355 1.000 0.927 0.645 2.804 3996 16125 109 850 21080 17593 + 1 4 6 3 20.7 68.00 0 12447 3.028 0.404 0.359 1.000 0.928 0.641 2.810 4053 16013 115 850 21032 17543 + 1 4 6 4 20.9 68.00 0 12480 3.033 0.406 0.362 1.000 0.928 0.638 2.815 4086 15957 121 850 21014 17526 + 1 4 6 5 21.0 68.00 0 12513 3.038 0.412 0.367 1.000 0.929 0.633 2.821 4158 15814 127 850 20950 17465 + 1 4 7 0 21.0 68.00 0 12513 3.038 0.459 0.418 1.000 0.935 0.582 2.839 4733 14544 145 850 20272 16894 + 1 4 7 1 21.0 68.00 0 12513 3.038 0.466 0.426 1.000 0.935 0.574 2.842 4824 14344 148 850 20166 16802 + 1 4 7 2 21.0 68.00 0 12513 3.038 0.476 0.437 1.000 0.937 0.563 2.845 4942 14082 151 850 20026 16676 + 1 4 7 3 21.0 68.00 0 12513 3.038 0.499 0.461 1.000 0.939 0.539 2.854 5220 13467 160 850 19698 16393 + 1 4 7 4 21.0 68.00 0 12513 3.038 0.535 0.500 1.000 0.944 0.500 2.867 5657 12504 173 850 19184 15958 + 1 4 7 5 21.0 68.00 0 12513 3.038 0.573 0.541 1.000 0.948 0.459 2.881 6118 11485 188 850 18640 15495 + +------------------------------------------------------------------------------ +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 82 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + + 1 4 8 0 21.2 68.00 0 12547 3.042 0.686 0.663 1.000 0.962 0.337 2.927 7514 8430 238 850 17032 14143 + 1 4 8 1 21.3 68.00 0 12580 3.047 0.761 0.743 1.000 0.971 0.257 2.959 8438 6427 277 850 15991 13263 + 1 4 8 2 21.5 68.00 0 12614 3.052 0.830 0.817 1.000 0.979 0.183 2.989 9295 4578 315 850 15037 12450 + 1 4 8 3 21.6 68.00 0 12647 3.056 0.892 0.884 1.000 0.987 0.116 3.017 10080 2891 353 850 14174 11714 + 1 4 8 4 21.8 68.00 0 12680 3.061 0.936 0.931 1.000 0.992 0.0689 3.037 10633 1722 383 850 13587 11214 + 1 4 8 5 21.9 68.00 0 12714 3.066 0.981 0.979 1.000 0.998 0.0206 3.058 11203 515 416 850 12984 10698 1 4 9 0 22.5 68.00 0 12834 3.082 0.984 0.984 1.000 0.998 0 3.077 11333 0 464 837 12633 10423 1 4 9 1 23.0 68.00 0 12954 3.099 0.925 0.925 1.000 0.992 0 3.073 10717 0 479 786 11982 9880 1 4 9 2 23.5 68.00 0 13074 3.116 0.861 0.861 1.000 0.984 0 3.067 10041 0 486 732 11259 9280 @@ -5163,7 +5226,7 @@ CZ16 Dual Fuel 1 4 16 5 25.9 68.00 0 13594 3.187 0.775 0.775 1.000 0.975 0 3.107 9288 0 594 659 10541 8747 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 82 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 83 @@ -5173,106 +5236,106 @@ CZ16 Dual Fuel 1 4 17 0 25.7 68.00 0 13554 3.182 0.916 0.916 1.000 0.991 0 3.152 10948 0 688 778 12414 10308 1 4 17 1 25.5 68.00 0 13514 3.176 0.961 0.961 1.000 0.996 0 3.163 11470 0 707 817 12994 10799 1 4 17 2 25.3 68.00 0 13474 3.171 0.998 0.998 1.000 1.000 0 3.170 11885 0 718 848 13452 11188 - 1 4 17 3 25.2 68.00 0 13434 3.165 1.000 0.959 1.000 0.995 0.0414 3.151 11389 1034 675 850 13948 11618 - 1 4 17 4 25.0 68.00 0 13394 3.160 1.000 0.925 1.000 0.992 0.0755 3.133 10961 1887 637 850 14334 11945 - 1 4 17 5 24.8 68.00 0 13354 3.154 1.000 0.898 1.000 0.989 0.102 3.118 10626 2546 604 850 14627 12199 - 1 4 18 0 24.6 68.00 0 13321 3.150 1.000 0.902 1.000 0.989 0.0983 3.115 10650 2457 595 850 14552 12139 - 1 4 18 1 24.5 68.00 0 13287 3.145 1.000 0.883 1.000 0.987 0.117 3.104 10411 2925 571 850 14757 12307 - 1 4 18 2 24.3 68.00 0 13254 3.141 1.000 0.866 1.000 0.985 0.134 3.093 10188 3360 549 850 14947 12467 - 1 4 18 3 24.2 68.00 0 13221 3.136 1.000 0.842 1.000 0.982 0.158 3.080 9888 3961 523 850 15222 12704 - 1 4 18 4 24.0 68.00 0 13187 3.131 1.000 0.825 1.000 0.980 0.175 3.070 9677 4373 502 850 15402 12850 - 1 4 18 5 23.9 68.00 0 13154 3.127 1.000 0.810 1.000 0.979 0.190 3.060 9485 4748 482 850 15565 12988 - 1 4 19 0 23.8 68.00 0 13121 3.122 1.000 0.815 1.000 0.979 0.185 3.057 9530 4617 475 850 15471 12906 - 1 4 19 1 23.6 68.00 0 13087 3.117 1.000 0.794 1.000 0.977 0.206 3.045 9267 5144 452 850 15713 13113 - 1 4 19 2 23.5 68.00 0 13054 3.113 1.000 0.782 1.000 0.976 0.218 3.037 9113 5441 435 850 15839 13204 - 1 4 19 3 23.3 68.00 0 13021 3.108 1.000 0.772 1.000 0.974 0.228 3.028 8973 5707 419 850 15949 13292 - 1 4 19 4 23.1 68.00 0 12987 3.104 1.000 0.762 1.000 0.973 0.238 3.021 8845 5949 404 850 16048 13373 - 1 4 19 5 23.0 68.00 0 12954 3.099 1.000 0.753 1.000 0.972 0.247 3.013 8721 6183 390 850 16144 13451 - 1 4 20 0 23.0 68.00 0 12954 3.099 1.000 0.741 1.000 0.971 0.259 3.009 8587 6472 384 850 16293 13571 - 1 4 20 1 23.0 68.00 0 12954 3.099 1.000 0.737 1.000 0.970 0.263 3.007 8534 6585 381 850 16351 13613 - 1 4 20 2 23.0 68.00 0 12954 3.099 1.000 0.732 1.000 0.970 0.268 3.006 8485 6692 379 850 16406 13651 - 1 4 20 3 23.0 68.00 0 12954 3.099 1.000 0.728 1.000 0.969 0.272 3.004 8438 6794 377 850 16459 13685 - 1 4 20 4 23.0 68.00 0 12954 3.099 1.000 0.724 1.000 0.969 0.276 3.003 8394 6888 375 850 16507 13715 - 1 4 20 5 23.0 68.00 0 12954 3.099 1.000 0.721 1.000 0.969 0.279 3.002 8355 6973 373 850 16551 13741 - 1 4 21 0 23.0 68.00 0 12961 3.100 1.000 0.694 1.000 0.966 0.306 2.993 8045 7647 361 850 16903 14027 - 1 4 21 1 23.1 68.00 0 12967 3.101 1.000 0.688 1.000 0.965 0.312 2.992 7980 7793 360 850 16983 14086 - 1 4 21 2 23.1 68.00 0 12974 3.102 1.000 0.683 1.000 0.964 0.317 2.991 7925 7919 359 850 17052 14138 - 1 4 21 3 23.1 68.00 0 12981 3.103 1.000 0.678 1.000 0.964 0.322 2.990 7870 8042 358 850 17120 14188 - 1 4 21 4 23.1 68.00 0 12987 3.104 1.000 0.674 1.000 0.963 0.326 2.990 7818 8161 357 850 17186 14236 - 1 4 21 5 23.2 68.00 0 12994 3.105 1.000 0.669 1.000 0.963 0.331 2.989 7768 8274 357 850 17249 14281 - 1 4 22 0 23.5 68.00 0 13067 3.115 1.000 0.629 1.000 0.958 0.371 2.985 7337 9264 354 850 17804 14740 - 1 4 22 1 23.8 68.00 0 13141 3.125 1.000 0.614 1.000 0.957 0.386 2.989 7182 9655 362 850 18049 14938 - 1 4 22 2 24.2 68.00 0 13214 3.135 1.000 0.617 1.000 0.957 0.383 3.000 7253 9563 382 850 18047 14930 - 1 4 22 3 24.5 68.00 0 13287 3.145 1.000 0.618 1.000 0.957 0.382 3.010 7287 9548 400 850 18085 14958 - 1 4 22 4 24.8 68.00 0 13361 3.155 1.000 0.628 1.000 0.958 0.372 3.023 7436 9293 424 850 18003 14874 - 1 4 22 5 25.2 68.00 0 13434 3.165 1.000 0.631 1.000 0.958 0.369 3.034 7491 9236 444 850 18021 14890 - 1 4 23 0 25.3 68.00 0 13468 3.170 1.000 0.606 1.000 0.956 0.394 3.029 7208 9858 434 850 18350 15154 - 1 4 23 1 25.5 68.00 0 13501 3.175 1.000 0.608 1.000 0.956 0.392 3.034 7243 9810 444 850 18346 15148 - 1 4 23 2 25.6 68.00 0 13534 3.179 1.000 0.611 1.000 0.956 0.389 3.040 7296 9726 454 850 18326 15125 - 1 4 23 3 25.8 68.00 0 13568 3.184 1.000 0.618 1.000 0.957 0.382 3.047 7391 9552 467 850 18261 15059 - 1 4 23 4 25.9 68.00 0 13601 3.188 1.000 0.622 1.000 0.958 0.378 3.053 7458 9440 478 850 18226 15024 - 1 4 23 5 26.1 68.00 0 13634 3.193 1.000 0.627 1.000 0.958 0.373 3.059 7524 9330 490 850 18193 14985 + 1 4 17 3 25.2 68.00 0 13434 3.165 0.961 0.959 1.000 0.995 0.0414 3.151 11389 1034 675 850 13948 11618 + 1 4 17 4 25.0 68.00 0 13394 3.160 0.930 0.925 1.000 0.992 0.0755 3.133 10961 1887 637 850 14334 11945 + 1 4 17 5 24.8 68.00 0 13354 3.154 0.905 0.898 1.000 0.989 0.102 3.118 10626 2546 604 850 14627 12199 + 1 4 18 0 24.6 68.00 0 13321 3.150 0.908 0.902 1.000 0.989 0.0983 3.115 10650 2457 595 850 14552 12139 + 1 4 18 1 24.5 68.00 0 13287 3.145 0.891 0.883 1.000 0.987 0.117 3.104 10411 2925 571 850 14757 12307 + 1 4 18 2 24.3 68.00 0 13254 3.141 0.875 0.866 1.000 0.985 0.134 3.093 10188 3360 549 850 14947 12467 + 1 4 18 3 24.2 68.00 0 13221 3.136 0.852 0.842 1.000 0.982 0.158 3.080 9888 3961 523 850 15222 12704 + 1 4 18 4 24.0 68.00 0 13187 3.131 0.837 0.825 1.000 0.980 0.175 3.070 9677 4373 502 850 15402 12850 + 1 4 18 5 23.9 68.00 0 13154 3.127 0.823 0.810 1.000 0.979 0.190 3.060 9485 4748 482 850 15565 12988 + 1 4 19 0 23.8 68.00 0 13121 3.122 0.828 0.815 1.000 0.979 0.185 3.057 9530 4617 475 850 15471 12906 + 1 4 19 1 23.6 68.00 0 13087 3.117 0.808 0.794 1.000 0.977 0.206 3.045 9267 5144 452 850 15713 13113 + 1 4 19 2 23.5 68.00 0 13054 3.113 0.797 0.782 1.000 0.976 0.218 3.037 9113 5441 435 850 15839 13204 + 1 4 19 3 23.3 68.00 0 13021 3.108 0.787 0.772 1.000 0.974 0.228 3.028 8973 5707 419 850 15949 13292 + 1 4 19 4 23.1 68.00 0 12987 3.104 0.778 0.762 1.000 0.973 0.238 3.021 8845 5949 404 850 16048 13373 + 1 4 19 5 23.0 68.00 0 12954 3.099 0.770 0.753 1.000 0.972 0.247 3.013 8721 6183 390 850 16144 13451 + 1 4 20 0 23.0 68.00 0 12954 3.099 0.759 0.741 1.000 0.971 0.259 3.009 8587 6472 384 850 16293 13571 + 1 4 20 1 23.0 68.00 0 12954 3.099 0.755 0.737 1.000 0.970 0.263 3.007 8534 6585 381 850 16351 13613 + 1 4 20 2 23.0 68.00 0 12954 3.099 0.751 0.732 1.000 0.970 0.268 3.006 8485 6692 379 850 16406 13651 + 1 4 20 3 23.0 68.00 0 12954 3.099 0.747 0.728 1.000 0.969 0.272 3.004 8438 6794 377 850 16459 13685 + 1 4 20 4 23.0 68.00 0 12954 3.099 0.743 0.724 1.000 0.969 0.276 3.003 8394 6888 375 850 16507 13715 + 1 4 20 5 23.0 68.00 0 12954 3.099 0.740 0.721 1.000 0.969 0.279 3.002 8355 6973 373 850 16551 13741 + 1 4 21 0 23.0 68.00 0 12961 3.100 0.715 0.694 1.000 0.966 0.306 2.993 8045 7647 361 850 16903 14027 + 1 4 21 1 23.1 68.00 0 12967 3.101 0.710 0.688 1.000 0.965 0.312 2.992 7980 7793 360 850 16983 14086 + 1 4 21 2 23.1 68.00 0 12974 3.102 0.705 0.683 1.000 0.964 0.317 2.991 7925 7919 359 850 17052 14138 + 1 4 21 3 23.1 68.00 0 12981 3.103 0.700 0.678 1.000 0.964 0.322 2.990 7870 8042 358 850 17120 14188 + 1 4 21 4 23.1 68.00 0 12987 3.104 0.696 0.674 1.000 0.963 0.326 2.990 7818 8161 357 850 17186 14236 + 1 4 21 5 23.2 68.00 0 12994 3.105 0.692 0.669 1.000 0.963 0.331 2.989 7768 8274 357 850 17249 14281 + 1 4 22 0 23.5 68.00 0 13067 3.115 0.655 0.629 1.000 0.958 0.371 2.985 7337 9264 354 850 17804 14740 + 1 4 22 1 23.8 68.00 0 13141 3.125 0.640 0.614 1.000 0.957 0.386 2.989 7182 9655 362 850 18049 14938 + 1 4 22 2 24.2 68.00 0 13214 3.135 0.643 0.617 1.000 0.957 0.383 3.000 7253 9563 382 850 18047 14930 + 1 4 22 3 24.5 68.00 0 13287 3.145 0.644 0.618 1.000 0.957 0.382 3.010 7287 9548 400 850 18085 14958 + 1 4 22 4 24.8 68.00 0 13361 3.155 0.653 0.628 1.000 0.958 0.372 3.023 7436 9293 424 850 18003 14874 + 1 4 22 5 25.2 68.00 0 13434 3.165 0.655 0.631 1.000 0.958 0.369 3.034 7491 9236 444 850 18021 14890 + 1 4 23 0 25.3 68.00 0 13468 3.170 0.632 0.606 1.000 0.956 0.394 3.029 7208 9858 434 850 18350 15154 + 1 4 23 1 25.5 68.00 0 13501 3.175 0.634 0.608 1.000 0.956 0.392 3.034 7243 9810 444 850 18346 15148 + 1 4 23 2 25.6 68.00 0 13534 3.179 0.637 0.611 1.000 0.956 0.389 3.040 7296 9726 454 850 18326 15125 + 1 4 23 3 25.8 68.00 0 13568 3.184 0.643 0.618 1.000 0.957 0.382 3.047 7391 9552 467 850 18261 15059 + 1 4 23 4 25.9 68.00 0 13601 3.188 0.647 0.622 1.000 0.958 0.378 3.053 7458 9440 478 850 18226 15024 + 1 4 23 5 26.1 68.00 0 13634 3.193 0.651 0.627 1.000 0.958 0.373 3.059 7524 9330 490 850 18193 14985 Subhourly User-defined Report, Mon 05-Jan mon day Hr Sh ToDb Tzn UnMet capfl COPfl loadF runF spdF PLF runFAux COPpl qComp qAux qDef qFan qTot qsZn --- --- -- -- ---- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ------ ------ ------ ------ - 1 5 0 0 26.1 68.00 0 13641 3.194 1.000 0.606 1.000 0.956 0.394 3.052 7271 9862 475 850 18457 15197 - 1 5 0 1 26.1 68.00 0 13648 3.195 1.000 0.599 1.000 0.955 0.401 3.051 7197 10019 472 850 18538 15262 - 1 5 0 2 26.1 68.00 0 13654 3.196 1.000 0.593 1.000 0.954 0.407 3.049 7129 10167 468 850 18614 15321 - 1 5 0 3 26.2 68.00 0 13661 3.197 1.000 0.587 1.000 0.954 0.413 3.048 7060 10314 465 850 18690 15378 - 1 5 0 4 26.2 68.00 0 13668 3.197 1.000 0.582 1.000 0.953 0.418 3.047 6995 10455 462 850 18762 15432 - 1 5 0 5 26.2 68.00 0 13674 3.198 1.000 0.576 1.000 0.952 0.424 3.046 6928 10600 459 850 18837 15488 - ------------------------------------------------------------------------------- -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 83 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - 1 5 1 0 26.6 68.00 0 13748 3.208 1.000 0.582 1.000 0.953 0.418 3.058 7028 10446 481 850 18805 15447 - 1 5 1 1 26.9 68.00 0 13821 3.218 1.000 0.588 1.000 0.954 0.412 3.069 7123 10304 502 850 18779 15422 - 1 5 1 2 27.2 68.00 0 13895 3.229 1.000 0.593 1.000 0.954 0.407 3.081 7218 10163 524 850 18755 15391 - 1 5 1 3 27.6 68.00 0 13968 3.239 1.000 0.605 1.000 0.956 0.395 3.095 7382 9882 551 850 18665 15295 - 1 5 1 4 27.9 68.00 0 14041 3.249 1.000 0.612 1.000 0.956 0.388 3.107 7497 9702 575 850 18624 15258 - 1 5 1 5 28.2 68.00 0 14115 3.259 1.000 0.619 1.000 0.957 0.381 3.119 7608 9532 599 850 18589 15217 - 1 5 2 0 28.4 68.00 0 14148 3.263 1.000 0.622 1.000 0.958 0.378 3.124 7666 9440 611 850 18567 15183 - 1 5 2 1 28.5 68.00 0 14182 3.268 1.000 0.623 1.000 0.958 0.377 3.129 7688 9421 619 850 18579 15191 - 1 5 2 2 28.7 68.00 0 14215 3.272 1.000 0.624 1.000 0.958 0.376 3.134 7706 9412 628 850 18595 15198 - 1 5 2 3 28.8 68.00 0 14248 3.277 1.000 0.631 1.000 0.958 0.369 3.141 7810 9227 643 850 18530 15128 - 1 5 2 4 29.0 68.00 0 14282 3.281 1.000 0.633 1.000 0.959 0.367 3.146 7846 9181 654 850 18530 15128 - 1 5 2 5 29.1 68.00 0 14315 3.286 1.000 0.634 1.000 0.959 0.366 3.150 7873 9152 663 850 18538 15128 - 1 5 3 0 29.5 68.00 0 14388 3.296 1.000 0.651 1.000 0.961 0.349 3.166 8115 8722 699 850 18387 14988 - 1 5 3 1 29.8 68.00 0 14462 3.306 1.000 0.656 1.000 0.961 0.344 3.178 8209 8594 724 850 18377 14982 - 1 5 3 2 30.1 68.00 0 14535 3.316 1.000 0.672 1.000 0.963 0.328 3.193 8439 8194 760 850 18244 14856 - 1 5 3 3 30.4 68.00 0 14609 3.326 1.000 0.678 1.000 0.964 0.322 3.205 8545 8045 786 850 18226 14845 - 1 5 3 4 30.8 68.00 0 14682 3.335 1.000 0.695 1.000 0.966 0.305 3.221 8791 7618 826 850 18085 14714 - 1 5 3 5 31.1 68.00 0 14755 3.345 1.000 0.702 1.000 0.966 0.298 3.233 8901 7462 853 850 18067 14703 - 1 5 4 0 31.3 68.00 0 14795 3.351 1.000 0.715 1.000 0.968 0.285 3.243 9092 7122 881 850 17944 14592 - 1 5 4 1 31.5 68.00 0 14835 3.356 1.000 0.715 1.000 0.968 0.285 3.249 9110 7120 892 850 17972 14622 - 1 5 4 2 31.6 68.00 0 14875 3.362 1.000 0.729 1.000 0.969 0.271 3.259 9300 6782 921 850 17852 14516 - 1 5 4 3 31.8 68.00 0 14915 3.367 1.000 0.729 1.000 0.970 0.271 3.264 9323 6772 932 850 17877 14543 - 1 5 4 4 32.0 68.00 0 14955 3.372 1.000 0.732 1.000 0.970 0.268 3.271 9375 6705 947 850 17877 14539 - 1 5 4 5 32.2 68.00 0 14996 3.378 1.000 0.746 1.000 0.971 0.254 3.281 9580 6341 978 850 17749 14418 - 1 5 5 0 32.3 68.00 0 15022 3.381 1.000 0.782 1.000 0.975 0.218 3.298 10052 5447 1033 850 17381 14125 - 1 5 5 1 32.4 68.00 0 15049 3.385 1.000 0.785 1.000 0.976 0.215 3.303 10108 5363 1045 850 17366 14114 - 1 5 5 2 32.5 68.00 0 15076 3.388 1.000 0.790 1.000 0.976 0.210 3.308 10174 5259 1059 850 17342 14086 - 1 5 5 3 32.7 68.00 0 15102 3.392 1.000 0.806 1.000 0.978 0.194 3.318 10404 4840 1090 850 17183 13942 - 1 5 5 4 32.8 68.00 0 15129 3.396 1.000 0.807 1.000 0.978 0.193 3.322 10429 4817 1099 850 17195 13966 - 1 5 5 5 32.9 68.00 0 15156 3.399 1.000 0.811 1.000 0.979 0.189 3.327 10485 4733 1112 850 17180 13959 - 1 5 6 0 32.8 68.00 0 15129 3.396 1.000 0.846 1.000 0.983 0.154 3.337 10931 3845 1152 850 16778 13616 - 1 5 6 1 32.7 68.00 0 15102 3.392 1.000 0.846 1.000 0.983 0.154 3.333 10920 3839 1144 850 16753 13596 - 1 5 6 2 32.5 68.00 0 15076 3.388 1.000 0.844 1.000 0.982 0.156 3.329 10875 3901 1132 850 16757 13602 - 1 5 6 3 32.4 68.00 0 15049 3.385 1.000 0.843 1.000 0.982 0.157 3.325 10843 3935 1121 850 16749 13597 - 1 5 6 4 32.3 68.00 0 15022 3.381 1.000 0.846 1.000 0.983 0.154 3.323 10875 3846 1117 850 16688 13546 - 1 5 6 5 32.2 68.00 0 14996 3.378 1.000 0.845 1.000 0.983 0.155 3.319 10850 3868 1107 850 16675 13534 - 1 5 7 0 32.4 68.00 0 15042 3.384 1.000 0.897 1.000 0.988 0.103 3.345 11544 2567 1192 850 16152 13094 - 1 5 7 1 32.6 68.00 0 15089 3.390 1.000 0.917 1.000 0.991 0.0830 3.359 11823 2075 1234 850 15982 12946 - 1 5 7 2 32.8 68.00 0 15136 3.396 1.000 0.942 1.000 0.994 0.0577 3.374 12176 1443 1285 850 15754 12744 - 1 5 7 3 33.0 68.00 0 15182 3.403 1.000 0.978 1.000 0.997 0.0223 3.394 12661 558 1351 850 15420 12449 + 1 5 0 0 26.1 68.00 0 13641 3.194 0.632 0.606 1.000 0.956 0.394 3.052 7271 9862 475 850 18457 15197 + 1 5 0 1 26.1 68.00 0 13648 3.195 0.626 0.599 1.000 0.955 0.401 3.051 7197 10019 472 850 18538 15262 + 1 5 0 2 26.1 68.00 0 13654 3.196 0.620 0.593 1.000 0.954 0.407 3.049 7129 10167 468 850 18614 15321 + 1 5 0 3 26.2 68.00 0 13661 3.197 0.615 0.587 1.000 0.954 0.413 3.048 7060 10314 465 850 18690 15378 + 1 5 0 4 26.2 68.00 0 13668 3.197 0.609 0.582 1.000 0.953 0.418 3.047 6995 10455 462 850 18762 15432 + 1 5 0 5 26.2 68.00 0 13674 3.198 0.604 0.576 1.000 0.952 0.424 3.046 6928 10600 459 850 18837 15488 + +------------------------------------------------------------------------------ +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 84 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + + 1 5 1 0 26.6 68.00 0 13748 3.208 0.610 0.582 1.000 0.953 0.418 3.058 7028 10446 481 850 18805 15447 + 1 5 1 1 26.9 68.00 0 13821 3.218 0.615 0.588 1.000 0.954 0.412 3.069 7123 10304 502 850 18779 15422 + 1 5 1 2 27.2 68.00 0 13895 3.229 0.620 0.593 1.000 0.954 0.407 3.081 7218 10163 524 850 18755 15391 + 1 5 1 3 27.6 68.00 0 13968 3.239 0.630 0.605 1.000 0.956 0.395 3.095 7382 9882 551 850 18665 15295 + 1 5 1 4 27.9 68.00 0 14041 3.249 0.637 0.612 1.000 0.956 0.388 3.107 7497 9702 575 850 18624 15258 + 1 5 1 5 28.2 68.00 0 14115 3.259 0.643 0.619 1.000 0.957 0.381 3.119 7608 9532 599 850 18589 15217 + 1 5 2 0 28.4 68.00 0 14148 3.263 0.647 0.622 1.000 0.958 0.378 3.124 7666 9440 611 850 18567 15183 + 1 5 2 1 28.5 68.00 0 14182 3.268 0.647 0.623 1.000 0.958 0.377 3.129 7688 9421 619 850 18579 15191 + 1 5 2 2 28.7 68.00 0 14215 3.272 0.648 0.624 1.000 0.958 0.376 3.134 7706 9412 628 850 18595 15198 + 1 5 2 3 28.8 68.00 0 14248 3.277 0.655 0.631 1.000 0.958 0.369 3.141 7810 9227 643 850 18530 15128 + 1 5 2 4 29.0 68.00 0 14282 3.281 0.656 0.633 1.000 0.959 0.367 3.146 7846 9181 654 850 18530 15128 + 1 5 2 5 29.1 68.00 0 14315 3.286 0.657 0.634 1.000 0.959 0.366 3.150 7873 9152 663 850 18538 15128 + 1 5 3 0 29.5 68.00 0 14388 3.296 0.673 0.651 1.000 0.961 0.349 3.166 8115 8722 699 850 18387 14988 + 1 5 3 1 29.8 68.00 0 14462 3.306 0.678 0.656 1.000 0.961 0.344 3.178 8209 8594 724 850 18377 14982 + 1 5 3 2 30.1 68.00 0 14535 3.316 0.693 0.672 1.000 0.963 0.328 3.193 8439 8194 760 850 18244 14856 + 1 5 3 3 30.4 68.00 0 14609 3.326 0.699 0.678 1.000 0.964 0.322 3.205 8545 8045 786 850 18226 14845 + 1 5 3 4 30.8 68.00 0 14682 3.335 0.714 0.695 1.000 0.966 0.305 3.221 8791 7618 826 850 18085 14714 + 1 5 3 5 31.1 68.00 0 14755 3.345 0.720 0.702 1.000 0.966 0.298 3.233 8901 7462 853 850 18067 14703 + 1 5 4 0 31.3 68.00 0 14795 3.351 0.733 0.715 1.000 0.968 0.285 3.243 9092 7122 881 850 17944 14592 + 1 5 4 1 31.5 68.00 0 14835 3.356 0.733 0.715 1.000 0.968 0.285 3.249 9110 7120 892 850 17972 14622 + 1 5 4 2 31.6 68.00 0 14875 3.362 0.746 0.729 1.000 0.969 0.271 3.259 9300 6782 921 850 17852 14516 + 1 5 4 3 31.8 68.00 0 14915 3.367 0.746 0.729 1.000 0.970 0.271 3.264 9323 6772 932 850 17877 14543 + 1 5 4 4 32.0 68.00 0 14955 3.372 0.748 0.732 1.000 0.970 0.268 3.271 9375 6705 947 850 17877 14539 + 1 5 4 5 32.2 68.00 0 14996 3.378 0.762 0.746 1.000 0.971 0.254 3.281 9580 6341 978 850 17749 14418 + 1 5 5 0 32.3 68.00 0 15022 3.381 0.796 0.782 1.000 0.975 0.218 3.298 10052 5447 1033 850 17381 14125 + 1 5 5 1 32.4 68.00 0 15049 3.385 0.799 0.785 1.000 0.976 0.215 3.303 10108 5363 1045 850 17366 14114 + 1 5 5 2 32.5 68.00 0 15076 3.388 0.803 0.790 1.000 0.976 0.210 3.308 10174 5259 1059 850 17342 14086 + 1 5 5 3 32.7 68.00 0 15102 3.392 0.818 0.806 1.000 0.978 0.194 3.318 10404 4840 1090 850 17183 13942 + 1 5 5 4 32.8 68.00 0 15129 3.396 0.819 0.807 1.000 0.978 0.193 3.322 10429 4817 1099 850 17195 13966 + 1 5 5 5 32.9 68.00 0 15156 3.399 0.822 0.811 1.000 0.979 0.189 3.327 10485 4733 1112 850 17180 13959 + 1 5 6 0 32.8 68.00 0 15129 3.396 0.856 0.846 1.000 0.983 0.154 3.337 10931 3845 1152 850 16778 13616 + 1 5 6 1 32.7 68.00 0 15102 3.392 0.856 0.846 1.000 0.983 0.154 3.333 10920 3839 1144 850 16753 13596 + 1 5 6 2 32.5 68.00 0 15076 3.388 0.854 0.844 1.000 0.982 0.156 3.329 10875 3901 1132 850 16757 13602 + 1 5 6 3 32.4 68.00 0 15049 3.385 0.852 0.843 1.000 0.982 0.157 3.325 10843 3935 1121 850 16749 13597 + 1 5 6 4 32.3 68.00 0 15022 3.381 0.856 0.846 1.000 0.983 0.154 3.323 10875 3846 1117 850 16688 13546 + 1 5 6 5 32.2 68.00 0 14996 3.378 0.855 0.845 1.000 0.983 0.155 3.319 10850 3868 1107 850 16675 13534 + 1 5 7 0 32.4 68.00 0 15042 3.384 0.904 0.897 1.000 0.988 0.103 3.345 11544 2567 1192 850 16152 13094 + 1 5 7 1 32.6 68.00 0 15089 3.390 0.922 0.917 1.000 0.991 0.0830 3.359 11823 2075 1234 850 15982 12946 + 1 5 7 2 32.8 68.00 0 15136 3.396 0.946 0.942 1.000 0.994 0.0577 3.374 12176 1443 1285 850 15754 12744 + 1 5 7 3 33.0 68.00 0 15182 3.403 0.979 0.978 1.000 0.997 0.0223 3.394 12661 558 1351 850 15420 12449 1 5 7 4 33.2 68.00 0 15229 3.409 0.976 0.976 1.000 0.997 0 3.400 12667 0 1367 829 14863 11989 1 5 7 5 33.4 68.00 0 15276 3.415 0.933 0.933 1.000 0.992 0 3.390 12138 0 1324 793 14255 11493 1 5 8 0 33.9 68.00 0 15376 3.429 0.829 0.829 1.000 0.981 0 3.363 10831 0 1208 704 12743 10271 @@ -5289,7 +5352,7 @@ CZ16 Dual Fuel 1 5 9 5 38.1 68.00 0 16317 3.553 0.278 0.278 1.000 0.919 0 3.265 3793 0 507 236 4535 3630 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 84 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 85 @@ -5352,7 +5415,7 @@ CZ16 Dual Fuel 1 5 18 5 37.9 68.00 0 16277 3.548 0.629 0.629 1.000 0.958 0 3.400 8566 0 1136 535 10237 8345 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 85 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 86 @@ -5415,7 +5478,7 @@ Subhourly User-defined Report, Tue 06-Jan 1 6 2 5 37.2 68.00 0 16116 3.527 0.815 0.815 1.000 0.979 0 3.454 11023 0 1422 693 13138 10757 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 86 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 87 @@ -5478,7 +5541,7 @@ CZ16 Dual Fuel 1 6 11 5 39.9 68.00 0 16717 3.606 0.554 0.554 1.000 0.950 0 3.425 7698 0 1096 471 9265 7626 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 87 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 88 @@ -5541,7 +5604,7 @@ CZ16 Dual Fuel 1 6 20 5 34.7 68.00 0 15556 3.453 0.748 0.748 1.000 0.972 0 3.355 9852 0 1142 635 11629 9449 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 88 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 89 @@ -5558,14 +5621,14 @@ CZ16 Dual Fuel 1 6 22 1 31.4 68.00 0 14822 3.354 0.954 0.954 1.000 0.995 0 3.337 12141 0 1185 811 14136 11375 1 6 22 2 31.1 68.00 0 14755 3.345 0.970 0.970 1.000 0.997 0 3.334 12313 0 1181 825 14318 11512 1 6 22 3 30.8 68.00 0 14689 3.336 0.987 0.987 1.000 0.999 0 3.332 12486 0 1176 839 14501 11650 - 1 6 22 4 30.5 68.00 0 14622 3.327 1.000 0.994 1.000 0.999 0.00591 3.325 12533 148 1158 850 14688 11795 - 1 6 22 5 30.2 68.00 0 14555 3.318 1.000 0.976 1.000 0.997 0.0245 3.309 12259 612 1111 850 14831 11911 - 1 6 23 0 30.2 68.00 0 14555 3.318 1.000 0.920 1.000 0.991 0.0803 3.288 11557 2007 1047 850 15462 12443 - 1 6 23 1 30.2 68.00 0 14555 3.318 1.000 0.908 1.000 0.990 0.0924 3.284 11405 2310 1034 850 15599 12555 - 1 6 23 2 30.2 68.00 0 14555 3.318 1.000 0.898 1.000 0.989 0.102 3.280 11289 2541 1023 850 15703 12643 - 1 6 23 3 30.2 68.00 0 14555 3.318 1.000 0.889 1.000 0.988 0.111 3.277 11175 2768 1013 850 15806 12728 - 1 6 23 4 30.2 68.00 0 14555 3.318 1.000 0.881 1.000 0.987 0.119 3.274 11077 2963 1004 850 15894 12800 - 1 6 23 5 30.2 68.00 0 14555 3.318 1.000 0.882 1.000 0.987 0.118 3.274 11086 2946 1005 850 15886 12788 + 1 6 22 4 30.5 68.00 0 14622 3.327 0.994 0.994 1.000 0.999 0.00591 3.325 12533 148 1158 850 14688 11795 + 1 6 22 5 30.2 68.00 0 14555 3.318 0.977 0.976 1.000 0.997 0.0245 3.309 12259 612 1111 850 14831 11911 + 1 6 23 0 30.2 68.00 0 14555 3.318 0.925 0.920 1.000 0.991 0.0803 3.288 11557 2007 1047 850 15462 12443 + 1 6 23 1 30.2 68.00 0 14555 3.318 0.913 0.908 1.000 0.990 0.0924 3.284 11405 2310 1034 850 15599 12555 + 1 6 23 2 30.2 68.00 0 14555 3.318 0.905 0.898 1.000 0.989 0.102 3.280 11289 2541 1023 850 15703 12643 + 1 6 23 3 30.2 68.00 0 14555 3.318 0.896 0.889 1.000 0.988 0.111 3.277 11175 2768 1013 850 15806 12728 + 1 6 23 4 30.2 68.00 0 14555 3.318 0.889 0.881 1.000 0.987 0.119 3.274 11077 2963 1004 850 15894 12800 + 1 6 23 5 30.2 68.00 0 14555 3.318 0.890 0.882 1.000 0.987 0.118 3.274 11086 2946 1005 850 15886 12788 @@ -5604,7 +5667,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 89 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 90 @@ -5667,7 +5730,7 @@ Subhourly User-defined Report, Fri 14-Aug 8 14 7 5 77.2 77.60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 90 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 91 @@ -5730,7 +5793,7 @@ CZ16 Dual Fuel 8 14 16 5 85.3 78.00 0 0 0 0.634 0.634 1.000 1.000 0 0 -10773 0 0 540 -10233 -8408 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 91 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 92 @@ -5793,7 +5856,7 @@ Subhourly User-defined Report, Sat 15-Aug 8 15 0 5 73.4 77.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 92 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 93 @@ -5856,7 +5919,7 @@ CZ16 Dual Fuel 8 15 9 5 82.6 78.00 0 0 0 0.271 0.271 1.000 1.000 0 0 -4644 0 0 230 -4414 -3790 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 93 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 94 @@ -5919,7 +5982,7 @@ CZ16 Dual Fuel 8 15 18 5 83.7 78.00 0 0 0 0.566 0.566 1.000 1.000 0 0 -9712 0 0 482 -9230 -7533 ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 94 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 95 @@ -5961,7 +6024,7 @@ CZ16 Dual Fuel ! Log for Run 003: -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console @@ -5971,18 +6034,18 @@ Input for Run 003: ALTER RSYS "rsys1" rsTypeAuxH = Furnace rsCtrlAuxH = Alternate + rsParFuel = 100 rsAFUEAuxH = .93 + ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Furn Alt" + RUN - - - - ------------------------------------------------------------------------------ -! ashp_dfng 003 Mon 20-Dec-21 10:36:15 am Page 95 +! ashp_dfng 003 Wed 29-Dec-21 2:16:58 pm Page 96 @@ -6033,35 +6096,6 @@ Yr 16.117 0 0 14.597 0 0 0 0 0 0 0 -HVAC Cooling Info - - Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC - ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- - 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 - - - - - - ------------------------------------------------------------------------------- -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 96 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - - -HVAC Heating Info - - Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH - ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- - 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 0.93 - - - @@ -6073,21 +6107,50 @@ HVAC Heating Info +------------------------------------------------------------------------------ +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 97 + +CZ16 Dual Fuel +------------------------------------------------------------------------------ +RSYSRES Furn Lockout + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 279.86 126.70 3949.6 396.24 3167.4 345.52 7858.8 0 0 0 0 0 0 426.06 3405.8 0 3831.9 1122.9 0 0 345.52 98.406 1566.8 0 0 0 0 0 0 0 6351.0 -26.81 0 0 0 0 + Feb 200.16 120.29 2878.5 248.68 3007.2 272.35 6406.8 0 0 0 0 0 0 267.39 3233.6 0 3501.0 806.47 0 0 272.35 76.841 1155.7 0 0 0 0 0 0 0 5209.8 -19.71 0 0 0 0 + Mar 288.03 27.312 4125.9 431.07 682.80 268.01 5507.8 0 0 0 0 0 0 463.52 734.20 0 1197.7 1159.1 0 0 268.01 75.886 1503.0 0 0 0 0 0 0 0 4446.7 -23.34 0 0 0 0 + Apr 274.59 42.340 3856.7 428.29 1058.5 269.35 5612.8 0 0 0 0 0 0 460.53 1138.2 0 1598.7 1106.1 0 0 269.35 86.259 1461.7 0 0 0 0 0 0 0 4606.5 -17.16 0 0 0 0 + May 76.965 0.380 1148.9 106.34 9.493 65.734 1330.5 0 0 0 0 0 0 114.34 10.207 0 124.55 317.93 0 0 65.734 29.481 413.14 0 0 0 0 0 0 0 1089.1 -5.338 0 0 0 0 + Jun 29.482 0 314.33 6.277 0 15.076 335.68 -196.4 -12.29 9.993 -186.4 0 0 6.750 0 0 6.750 77.933 0 0 15.076 6.824 99.833 46.413 9.993 0 56.406 0 0 0 274.39 -1.235 -147.5 -11.16 0 0 + Jul 10.545 0 75.563 0 0 3.428 78.990 -110.0 -11.10 5.541 -104.5 0 0 0 0 0 0 18.209 0 0 3.428 0 21.637 24.763 5.541 0 30.304 0 0 0 66.889 -0.223 -83.93 -10.83 0 0 + Aug 36.171 0 0 0 0 0 0 -620.4 -2.941 30.778 -589.6 0 0 0 0 0 0 0 0 0 0 0 0 139.24 30.778 0 170.02 0 0 0 0 0 -488.2 -4.602 0 0 + Sep 12.967 0 163.73 14.515 0 9.037 187.28 -41.30 0 1.986 -39.31 0 0 15.608 0 0 15.608 45.144 0 0 9.037 6.347 60.527 8.373 1.986 0.614 10.973 0 0 0 150.19 -0.981 -33.06 -0.175 0 0 + Oct 97.381 4.535 1415.1 113.92 113.36 86.616 1729.0 0 0 0 0 0 0 122.49 121.90 0 244.39 396.36 0 0 86.616 28.525 511.50 0 0 0 0 0 0 0 1371.7 -7.701 0 0 0 0 + Nov 227.62 17.143 3321.0 310.66 428.57 208.02 4268.2 0 0 0 0 0 0 334.04 460.82 0 794.86 925.30 0 0 208.02 55.413 1188.7 0 0 0 0 0 0 0 3415.7 -18.09 0 0 0 0 + Dec 245.53 109.58 3573.1 312.69 2739.5 301.80 6927.1 0 0 0 0 0 0 336.23 2945.7 0 3281.9 991.61 0 0 301.80 77.797 1371.2 0 0 0 0 0 0 0 5499.1 -29.00 0 0 0 0 + Yr 1779.3 448.27 24823 2368.7 11207 1844.9 40243 -968.0 -26.33 48.298 -919.7 0 0 2547.0 12050 0 14597 6967.0 0 0 1844.9 541.78 9353.7 218.79 48.298 0.614 267.70 0 0 0 32481 -149.6 -752.7 -26.76 0 0 +HVAC Cooling Info + Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 +HVAC Heating Info + Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH + ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- + 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 0.93 @@ -6108,7 +6171,7 @@ HVAC Heating Info ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 97 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 98 @@ -6119,71 +6182,71 @@ CZ16 Dual Fuel Hourly User-defined Report, Sun 04-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 4 1 18.1 0 0.828 0 0 0 1 0 21 - 1 4 2 19.9 0 0.837 0 0 0 1 0 21 - 1 4 3 20.1 0 0.838 0 0 0 1 0 21 - 1 4 4 20.8 0 0.837 0 0 0 1 0 21 - 1 4 5 19.9 0 0.837 0 0 0 1 0 21 - 1 4 6 20.1 0 0.831 0 0 0 1 0 21 - 1 4 7 21.0 0 0.813 0 0 0 1 0 20 - 1 4 8 21.0 0 0.749 0 0 0 1 0 19 - 1 4 9 21.9 0.163 0.472 2 0 0 0 0 12 - 1 4 10 25.2 0.872 0 10 0 0 1 0 0 - 1 4 11 26.8 0.648 0 8 0 0 0 0 0 - 1 4 12 25.2 0.588 0 7 0 0 0 0 0 - 1 4 13 26.2 0.538 0 6 0 0 0 0 0 - 1 4 14 26.4 0.450 0 5 0 0 0 0 0 - 1 4 15 27.0 0.402 0 5 0 0 0 0 0 - 1 4 16 26.8 0.440 0 5 0 0 0 0 0 - 1 4 17 25.9 0.658 0 8 0 0 0 0 0 - 1 4 18 24.8 0.316 0.352 4 0 0 0 0 9 - 1 4 19 23.9 0 0.543 0 0 0 0 0 14 - 1 4 20 23.0 0 0.585 0 0 0 0 0 15 - 1 4 21 23.0 0 0.615 0 0 0 0 0 15 - 1 4 22 23.2 0 0.645 0 0 0 0 0 16 - 1 4 23 25.2 0 0.687 0 0 0 0 0 17 - 1 4 24 26.1 0 0.700 0 0 0 0 0 18 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 4 1 18.1 0 0.828 0 0 0 1 0 0 21 + 1 4 2 19.9 0 0.837 0 0 0 1 0 0 21 + 1 4 3 20.1 0 0.838 0 0 0 1 0 0 21 + 1 4 4 20.8 0 0.837 0 0 0 1 0 0 21 + 1 4 5 19.9 0 0.837 0 0 0 1 0 0 21 + 1 4 6 20.1 0 0.831 0 0 0 1 0 0 21 + 1 4 7 21.0 0 0.813 0 0 0 1 0 0 20 + 1 4 8 21.0 0 0.749 0 0 0 1 0 0 19 + 1 4 9 21.9 0.163 0.472 2 0 0 0 0 0 12 + 1 4 10 25.2 0.872 0 10 0 0 1 0 0 0 + 1 4 11 26.8 0.648 0 8 0 0 0 0 0 0 + 1 4 12 25.2 0.588 0 7 0 0 0 0 0 0 + 1 4 13 26.2 0.538 0 6 0 0 0 0 0 0 + 1 4 14 26.4 0.450 0 5 0 0 0 0 0 0 + 1 4 15 27.0 0.402 0 5 0 0 0 0 0 0 + 1 4 16 26.8 0.440 0 5 0 0 0 0 0 0 + 1 4 17 25.9 0.658 0 8 0 0 0 0 0 0 + 1 4 18 24.8 0.316 0.352 4 0 0 0 0 0 9 + 1 4 19 23.9 0 0.543 0 0 0 0 0 0 14 + 1 4 20 23.0 0 0.585 0 0 0 0 0 0 15 + 1 4 21 23.0 0 0.615 0 0 0 0 0 0 15 + 1 4 22 23.2 0 0.645 0 0 0 0 0 0 16 + 1 4 23 25.2 0 0.687 0 0 0 0 0 0 17 + 1 4 24 26.1 0 0.700 0 0 0 0 0 0 18 Hourly User-defined Report, Mon 05-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 5 1 26.2 0 0.714 0 0 0 1 0 18 - 1 5 2 28.2 0 0.717 0 0 0 1 0 18 - 1 5 3 29.1 0 0.709 0 0 0 1 0 18 - 1 5 4 31.1 0 0.694 0 0 0 0 0 17 - 1 5 5 32.2 0 0.677 0 0 0 0 0 17 - 1 5 6 32.9 0 0.651 0 0 0 0 0 16 - 1 5 7 32.2 0 0.627 0 0 0 0 0 16 - 1 5 8 33.4 0.490 0.294 6 0 0 1 1 7 - 1 5 9 36.1 0.708 0 9 0 0 1 1 0 - 1 5 10 38.1 0.397 0 5 0 0 0 1 0 - 1 5 11 40.3 0.259 0 4 0 0 0 0 0 - 1 5 12 41.5 0.207 0 3 0 0 0 0 0 - 1 5 13 38.1 0.185 0 3 0 0 0 0 0 - 1 5 14 39.7 0.161 0 2 0 0 0 0 0 - 1 5 15 39.2 0.129 0 2 0 0 0 0 0 - 1 5 16 39.0 0.267 0 4 0 0 0 0 0 - 1 5 17 38.8 0.397 0 5 0 0 0 1 0 - 1 5 18 37.9 0.563 0 8 0 0 0 1 0 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 5 1 26.2 0 0.714 0 0 0 1 0 0 18 + 1 5 2 28.2 0 0.717 0 0 0 1 0 0 18 + 1 5 3 29.1 0 0.709 0 0 0 1 0 0 18 + 1 5 4 31.1 0 0.694 0 0 0 0 0 0 17 + 1 5 5 32.2 0 0.677 0 0 0 0 0 0 17 + 1 5 6 32.9 0 0.651 0 0 0 0 0 0 16 + 1 5 7 32.2 0 0.627 0 0 0 0 0 0 16 + 1 5 8 33.4 0.490 0.294 6 0 0 1 0 1 7 + 1 5 9 36.1 0.708 0 9 0 0 1 0 1 0 + 1 5 10 38.1 0.397 0 5 0 0 0 0 1 0 + 1 5 11 40.3 0.259 0 4 0 0 0 0 0 0 + 1 5 12 41.5 0.207 0 3 0 0 0 0 0 0 + 1 5 13 38.1 0.185 0 3 0 0 0 0 0 0 + 1 5 14 39.7 0.161 0 2 0 0 0 0 0 0 + 1 5 15 39.2 0.129 0 2 0 0 0 0 0 0 + 1 5 16 39.0 0.267 0 4 0 0 0 0 0 0 + 1 5 17 38.8 0.397 0 5 0 0 0 0 1 0 + 1 5 18 37.9 0.563 0 8 0 0 0 0 1 0 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 98 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 99 CZ16 Dual Fuel ------------------------------------------------------------------------------ - 1 5 19 37.9 0.618 0 8 0 0 0 1 0 - 1 5 20 37.8 0.648 0 9 0 0 0 1 0 - 1 5 21 37.0 0.699 0 9 0 0 0 1 0 - 1 5 22 36.9 0.742 0 10 0 0 1 1 0 - 1 5 23 36.1 0.809 0 11 0 0 1 1 0 - 1 5 24 36.9 0.875 0 12 0 0 1 1 0 + 1 5 19 37.9 0.618 0 8 0 0 0 0 1 0 + 1 5 20 37.8 0.648 0 9 0 0 0 0 1 0 + 1 5 21 37.0 0.699 0 9 0 0 0 0 1 0 + 1 5 22 36.9 0.742 0 10 0 0 1 0 1 0 + 1 5 23 36.1 0.809 0 11 0 0 1 0 1 0 + 1 5 24 36.9 0.875 0 12 0 0 1 0 1 0 @@ -6234,7 +6297,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 99 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 100 @@ -6297,7 +6360,7 @@ Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan 16 .00078 0 0 .00055 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00024 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 100 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 101 @@ -6319,22 +6382,22 @@ Day 0.157 0 0 0.152 0 0 0 0 0 0 0 Monthly User-defined Report - Month hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- ----- -------- ------- ------- ------- ------- ------- ------- - 1 279.9 126.696 3950 0 0 346 396 3167 - 2 200.2 120.289 2879 0 0 272 249 3007 - 3 288.0 27.312 4126 0 0 268 431 683 - 4 274.6 42.340 3857 0 0 269 428 1058 - 5 76.97 0.380 1149 0 0 66 106 9 - 6 29.48 0 314 -196 -12 25 6 0 - 7 10.54 0 76 -110 -11 9 0 0 - 8 36.17 0 0 -620 -3 31 0 0 - 9 12.97 0 164 -41 0 11 15 0 - 10 97.38 4.535 1415 0 0 87 114 113 - 11 227.6 17.143 3321 0 0 208 311 429 - 12 245.5 109.579 3573 0 0 302 313 2739 + Month hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 279.9 126.696 3950 0 0 346 0 396 3167 + 2 200.2 120.289 2879 0 0 272 0 249 3007 + 3 288.0 27.312 4126 0 0 268 0 431 683 + 4 274.6 42.340 3857 0 0 269 0 428 1058 + 5 76.97 0.380 1149 0 0 66 0 106 9 + 6 29.48 0 314 -196 -12 15 10 6 0 + 7 10.54 0 76 -110 -11 3 6 0 0 + 8 36.17 0 0 -620 -3 0 31 0 0 + 9 12.97 0 164 -41 0 9 2 15 0 + 10 97.38 4.535 1415 0 0 87 0 114 113 + 11 227.6 17.143 3321 0 0 208 0 311 429 + 12 245.5 109.579 3573 0 0 302 0 313 2739 - Yr 1779 448.273 24823 -968 -26 1893 2369 11207 + Yr 1779 448.273 24823 -968 -26 1845 48 2369 11207 @@ -6360,7 +6423,7 @@ Monthly User-defined Report ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 101 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 102 @@ -6373,68 +6436,68 @@ Subhourly User-defined Report, Sun 04-Jan mon day Hr Sh ToDb Tzn UnMet capfl COPfl loadF runF spdF PLF runFAux COPpl qComp qAux qDef qFan qTot qsZn --- --- -- -- ---- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ------ ------ ------ ------ - 1 4 0 0 18.7 68.00 0 12006 0 0 0 1.000 0 0.819 0 0 20475 0 696 21171 17684 - 1 4 0 1 18.6 68.00 0 11980 0 0 0 1.000 0 0.823 0 0 20576 0 699 21276 17764 - 1 4 0 2 18.5 68.00 0 11953 0 0 0 1.000 0 0.826 0 0 20659 0 702 21362 17836 - 1 4 0 3 18.4 68.00 0 11926 0 0 0 1.000 0 0.829 0 0 20733 0 705 21438 17904 - 1 4 0 4 18.3 68.00 0 11900 0 0 0 1.000 0 0.833 0 0 20817 0 708 21524 17983 - 1 4 0 5 18.1 68.00 0 11873 0 0 0 1.000 0 0.836 0 0 20906 0 711 21617 18065 - 1 4 1 0 18.4 68.00 0 11940 0 0 0 1.000 0 0.838 0 0 20961 0 713 21674 18110 - 1 4 1 1 18.7 68.00 0 12006 0 0 0 1.000 0 0.840 0 0 20993 0 714 21706 18126 - 1 4 1 2 19.0 68.00 0 12073 0 0 0 1.000 0 0.838 0 0 20958 0 712 21671 18082 - 1 4 1 3 19.3 68.00 0 12140 0 0 0 1.000 0 0.838 0 0 20962 0 713 21674 18083 - 1 4 1 4 19.6 68.00 0 12207 0 0 0 1.000 0 0.835 0 0 20880 0 710 21590 18003 - 1 4 1 5 19.9 68.00 0 12273 0 0 0 1.000 0 0.835 0 0 20866 0 709 21575 17987 - 1 4 2 0 20.0 68.00 0 12280 0 0 0 1.000 0 0.834 0 0 20862 0 709 21572 17977 - 1 4 2 1 20.0 68.00 0 12287 0 0 0 1.000 0 0.836 0 0 20906 0 711 21617 18023 - 1 4 2 2 20.0 68.00 0 12293 0 0 0 1.000 0 0.838 0 0 20940 0 712 21652 18061 - 1 4 2 3 20.1 68.00 0 12300 0 0 0 1.000 0 0.839 0 0 20975 0 713 21688 18098 - 1 4 2 4 20.1 68.00 0 12307 0 0 0 1.000 0 0.840 0 0 20998 0 714 21711 18128 - 1 4 2 5 20.1 68.00 0 12313 0 0 0 1.000 0 0.840 0 0 21011 0 714 21726 18154 - 1 4 3 0 20.2 68.00 0 12340 0 0 0 1.000 0 0.839 0 0 20977 0 713 21690 18127 - 1 4 3 1 20.4 68.00 0 12367 0 0 0 1.000 0 0.840 0 0 20989 0 714 21702 18140 - 1 4 3 2 20.5 68.00 0 12393 0 0 0 1.000 0 0.840 0 0 20997 0 714 21710 18151 - 1 4 3 3 20.6 68.00 0 12420 0 0 0 1.000 0 0.837 0 0 20918 0 711 21629 18085 - 1 4 3 4 20.7 68.00 0 12447 0 0 0 1.000 0 0.837 0 0 20921 0 711 21632 18092 - 1 4 3 5 20.8 68.00 0 12473 0 0 0 1.000 0 0.831 0 0 20778 0 706 21484 17964 - 1 4 4 0 20.7 68.00 0 12440 0 0 0 1.000 0 0.832 0 0 20791 0 707 21498 17980 - 1 4 4 1 20.5 68.00 0 12407 0 0 0 1.000 0 0.833 0 0 20821 0 708 21529 18007 - 1 4 4 2 20.4 68.00 0 12373 0 0 0 1.000 0 0.836 0 0 20910 0 711 21621 18084 - 1 4 4 3 20.2 68.00 0 12340 0 0 0 1.000 0 0.838 0 0 20948 0 712 21660 18118 - 1 4 4 4 20.1 68.00 0 12307 0 0 0 1.000 0 0.840 0 0 20997 0 714 21711 18162 - 1 4 4 5 19.9 68.00 0 12273 0 0 0 1.000 0 0.845 0 0 21120 0 718 21838 18270 - 1 4 5 0 20.0 68.00 0 12280 0 0 0 1.000 0 0.832 0 0 20804 0 707 21512 17998 - 1 4 5 1 20.0 68.00 0 12287 0 0 0 1.000 0 0.831 0 0 20787 0 707 21494 17985 - 1 4 5 2 20.0 68.00 0 12293 0 0 0 1.000 0 0.831 0 0 20776 0 706 21482 17974 - 1 4 5 3 20.1 68.00 0 12300 0 0 0 1.000 0 0.831 0 0 20768 0 706 21474 17958 - 1 4 5 4 20.1 68.00 0 12307 0 0 0 1.000 0 0.830 0 0 20756 0 706 21462 17934 - 1 4 5 5 20.1 68.00 0 12313 0 0 0 1.000 0 0.830 0 0 20752 0 705 21458 17916 - 1 4 6 0 20.3 68.00 0 12347 0 0 0 1.000 0 0.818 0 0 20455 0 695 21150 17647 - 1 4 6 1 20.4 68.00 0 12380 0 0 0 1.000 0 0.817 0 0 20416 0 694 21110 17610 - 1 4 6 2 20.6 68.00 0 12413 0 0 0 1.000 0 0.814 0 0 20347 0 692 21038 17542 - 1 4 6 3 20.7 68.00 0 12447 0 0 0 1.000 0 0.813 0 0 20313 0 691 21004 17511 - 1 4 6 4 20.9 68.00 0 12480 0 0 0 1.000 0 0.809 0 0 20234 0 688 20922 17437 - 1 4 6 5 21.0 68.00 0 12513 0 0 0 1.000 0 0.808 0 0 20209 0 687 20896 17413 - 1 4 7 0 21.0 68.00 0 12513 0 0 0 1.000 0 0.777 0 0 19417 0 660 20077 16727 - 1 4 7 1 21.0 68.00 0 12513 0 0 0 1.000 0 0.770 0 0 19245 0 654 19900 16575 - 1 4 7 2 21.0 68.00 0 12513 0 0 0 1.000 0 0.763 0 0 19065 0 648 19713 16418 - 1 4 7 3 21.0 68.00 0 12513 0 0 0 1.000 0 0.749 0 0 18733 0 637 19370 16130 - 1 4 7 4 21.0 68.00 0 12513 0 0 0 1.000 0 0.728 0 0 18200 0 619 18818 15667 - 1 4 7 5 21.0 68.00 0 12513 0 0 0 1.000 0 0.707 0 0 17663 0 600 18263 15201 - ------------------------------------------------------------------------------- -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 102 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - 1 4 8 0 21.2 68.00 0 12547 0 0 0 1.000 0 0.646 0 0 16144 0 549 16693 13890 - 1 4 8 1 21.3 68.00 0 12580 0 0 0 1.000 0 0.603 0 0 15074 0 512 15587 12969 - 1 4 8 2 21.5 68.00 0 12614 0 0 0 1.000 0 0.563 0 0 14077 0 479 14555 12108 - 1 4 8 3 21.6 68.00 0 12647 0 0 0 1.000 0 0.525 0 0 13121 0 446 13567 11282 - 1 4 8 4 21.8 68.00 0 12680 0 0 0 1.000 0 0.497 0 0 12435 0 423 12858 10689 + 1 4 0 0 18.7 68.00 0 0 0 0 0 1.000 0 0.819 0 0 20475 0 696 21171 17684 + 1 4 0 1 18.6 68.00 0 0 0 0 0 1.000 0 0.823 0 0 20576 0 699 21276 17764 + 1 4 0 2 18.5 68.00 0 0 0 0 0 1.000 0 0.826 0 0 20659 0 702 21362 17836 + 1 4 0 3 18.4 68.00 0 0 0 0 0 1.000 0 0.829 0 0 20733 0 705 21438 17904 + 1 4 0 4 18.3 68.00 0 0 0 0 0 1.000 0 0.833 0 0 20817 0 708 21524 17983 + 1 4 0 5 18.1 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20906 0 711 21617 18065 + 1 4 1 0 18.4 68.00 0 0 0 0 0 1.000 0 0.838 0 0 20961 0 713 21674 18110 + 1 4 1 1 18.7 68.00 0 0 0 0 0 1.000 0 0.840 0 0 20993 0 714 21706 18126 + 1 4 1 2 19.0 68.00 0 0 0 0 0 1.000 0 0.838 0 0 20958 0 712 21671 18082 + 1 4 1 3 19.3 68.00 0 0 0 0 0 1.000 0 0.838 0 0 20962 0 713 21674 18083 + 1 4 1 4 19.6 68.00 0 0 0 0 0 1.000 0 0.835 0 0 20880 0 710 21590 18003 + 1 4 1 5 19.9 68.00 0 0 0 0 0 1.000 0 0.835 0 0 20866 0 709 21575 17987 + 1 4 2 0 20.0 68.00 0 0 0 0 0 1.000 0 0.834 0 0 20862 0 709 21572 17977 + 1 4 2 1 20.0 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20906 0 711 21617 18023 + 1 4 2 2 20.0 68.00 0 0 0 0 0 1.000 0 0.838 0 0 20940 0 712 21652 18061 + 1 4 2 3 20.1 68.00 0 0 0 0 0 1.000 0 0.839 0 0 20975 0 713 21688 18098 + 1 4 2 4 20.1 68.00 0 0 0 0 0 1.000 0 0.840 0 0 20998 0 714 21711 18128 + 1 4 2 5 20.1 68.00 0 0 0 0 0 1.000 0 0.840 0 0 21011 0 714 21726 18154 + 1 4 3 0 20.2 68.00 0 0 0 0 0 1.000 0 0.839 0 0 20977 0 713 21690 18127 + 1 4 3 1 20.4 68.00 0 0 0 0 0 1.000 0 0.840 0 0 20989 0 714 21702 18140 + 1 4 3 2 20.5 68.00 0 0 0 0 0 1.000 0 0.840 0 0 20997 0 714 21710 18151 + 1 4 3 3 20.6 68.00 0 0 0 0 0 1.000 0 0.837 0 0 20918 0 711 21629 18085 + 1 4 3 4 20.7 68.00 0 0 0 0 0 1.000 0 0.837 0 0 20921 0 711 21632 18092 + 1 4 3 5 20.8 68.00 0 0 0 0 0 1.000 0 0.831 0 0 20778 0 706 21484 17964 + 1 4 4 0 20.7 68.00 0 0 0 0 0 1.000 0 0.832 0 0 20791 0 707 21498 17980 + 1 4 4 1 20.5 68.00 0 0 0 0 0 1.000 0 0.833 0 0 20821 0 708 21529 18007 + 1 4 4 2 20.4 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20910 0 711 21621 18084 + 1 4 4 3 20.2 68.00 0 0 0 0 0 1.000 0 0.838 0 0 20948 0 712 21660 18118 + 1 4 4 4 20.1 68.00 0 0 0 0 0 1.000 0 0.840 0 0 20997 0 714 21711 18162 + 1 4 4 5 19.9 68.00 0 0 0 0 0 1.000 0 0.845 0 0 21120 0 718 21838 18270 + 1 4 5 0 20.0 68.00 0 0 0 0 0 1.000 0 0.832 0 0 20804 0 707 21512 17998 + 1 4 5 1 20.0 68.00 0 0 0 0 0 1.000 0 0.831 0 0 20787 0 707 21494 17985 + 1 4 5 2 20.0 68.00 0 0 0 0 0 1.000 0 0.831 0 0 20776 0 706 21482 17974 + 1 4 5 3 20.1 68.00 0 0 0 0 0 1.000 0 0.831 0 0 20768 0 706 21474 17958 + 1 4 5 4 20.1 68.00 0 0 0 0 0 1.000 0 0.830 0 0 20756 0 706 21462 17934 + 1 4 5 5 20.1 68.00 0 0 0 0 0 1.000 0 0.830 0 0 20752 0 705 21458 17916 + 1 4 6 0 20.3 68.00 0 0 0 0 0 1.000 0 0.818 0 0 20455 0 695 21150 17647 + 1 4 6 1 20.4 68.00 0 0 0 0 0 1.000 0 0.817 0 0 20416 0 694 21110 17610 + 1 4 6 2 20.6 68.00 0 0 0 0 0 1.000 0 0.814 0 0 20347 0 692 21038 17542 + 1 4 6 3 20.7 68.00 0 0 0 0 0 1.000 0 0.813 0 0 20313 0 691 21004 17511 + 1 4 6 4 20.9 68.00 0 0 0 0 0 1.000 0 0.809 0 0 20234 0 688 20922 17437 + 1 4 6 5 21.0 68.00 0 0 0 0 0 1.000 0 0.808 0 0 20209 0 687 20896 17413 + 1 4 7 0 21.0 68.00 0 0 0 0 0 1.000 0 0.777 0 0 19417 0 660 20077 16727 + 1 4 7 1 21.0 68.00 0 0 0 0 0 1.000 0 0.770 0 0 19245 0 654 19900 16575 + 1 4 7 2 21.0 68.00 0 0 0 0 0 1.000 0 0.763 0 0 19065 0 648 19713 16418 + 1 4 7 3 21.0 68.00 0 0 0 0 0 1.000 0 0.749 0 0 18733 0 637 19370 16130 + 1 4 7 4 21.0 68.00 0 0 0 0 0 1.000 0 0.728 0 0 18200 0 619 18818 15667 + 1 4 7 5 21.0 68.00 0 0 0 0 0 1.000 0 0.707 0 0 17663 0 600 18263 15201 + +------------------------------------------------------------------------------ +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 103 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + + 1 4 8 0 21.2 68.00 0 0 0 0 0 1.000 0 0.646 0 0 16144 0 549 16693 13890 + 1 4 8 1 21.3 68.00 0 0 0 0 0 1.000 0 0.603 0 0 15074 0 512 15587 12969 + 1 4 8 2 21.5 68.00 0 0 0 0 0 1.000 0 0.563 0 0 14077 0 479 14555 12108 + 1 4 8 3 21.6 68.00 0 0 0 0 0 1.000 0 0.525 0 0 13121 0 446 13567 11282 + 1 4 8 4 21.8 68.00 0 0 0 0 0 1.000 0 0.497 0 0 12435 0 423 12858 10689 1 4 8 5 21.9 68.00 0 12714 3.066 0.979 0.979 1.000 0.998 0 3.058 11197 0 416 832 12444 10176 1 4 9 0 22.5 68.00 0 12834 3.082 0.968 0.968 1.000 0.996 0 3.071 11144 0 456 823 12422 10208 1 4 9 1 23.0 68.00 0 12954 3.099 0.940 0.940 1.000 0.993 0 3.078 10890 0 487 799 12175 10006 @@ -6486,7 +6549,7 @@ CZ16 Dual Fuel 1 4 16 5 25.9 68.00 0 13594 3.187 0.787 0.787 1.000 0.976 0 3.111 9433 0 603 669 10706 8883 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 103 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 104 @@ -6495,106 +6558,106 @@ CZ16 Dual Fuel 1 4 17 0 25.7 68.00 0 13554 3.182 0.930 0.930 1.000 0.992 0 3.157 11113 0 698 790 12601 10455 1 4 17 1 25.5 68.00 0 13514 3.176 0.968 0.968 1.000 0.996 0 3.165 11543 0 711 822 13077 10857 - 1 4 17 2 25.3 68.00 0 13474 0 0 0 1.000 0 0.523 0 0 13063 0 444 13507 11337 - 1 4 17 3 25.2 68.00 0 13434 0 0 0 1.000 0 0.527 0 0 13181 0 448 13629 11439 - 1 4 17 4 25.0 68.00 0 13394 0 0 0 1.000 0 0.530 0 0 13260 0 451 13711 11508 - 1 4 17 5 24.8 68.00 0 13354 0 0 0 1.000 0 0.533 0 0 13329 0 453 13782 11571 - 1 4 18 0 24.6 68.00 0 13321 0 0 0 1.000 0 0.518 0 0 12939 0 440 13379 11176 - 1 4 18 1 24.5 68.00 0 13287 0 0 0 1.000 0 0.527 0 0 13176 0 448 13624 11381 - 1 4 18 2 24.3 68.00 0 13254 0 0 0 1.000 0 0.536 0 0 13401 0 456 13857 11576 - 1 4 18 3 24.2 68.00 0 13221 0 0 0 1.000 0 0.549 0 0 13733 0 467 14200 11865 - 1 4 18 4 24.0 68.00 0 13187 0 0 0 1.000 0 0.558 0 0 13953 0 474 14427 12048 - 1 4 18 5 23.9 68.00 0 13154 0 0 0 1.000 0 0.567 0 0 14174 0 482 14656 12238 - 1 4 19 0 23.8 68.00 0 13121 0 0 0 1.000 0 0.566 0 0 14146 0 481 14627 12216 - 1 4 19 1 23.6 68.00 0 13087 0 0 0 1.000 0 0.578 0 0 14439 0 491 14929 12469 - 1 4 19 2 23.5 68.00 0 13054 0 0 0 1.000 0 0.584 0 0 14598 0 496 15095 12597 - 1 4 19 3 23.3 68.00 0 13021 0 0 0 1.000 0 0.590 0 0 14742 0 501 15243 12717 - 1 4 19 4 23.1 68.00 0 12987 0 0 0 1.000 0 0.595 0 0 14872 0 506 15378 12828 - 1 4 19 5 23.0 68.00 0 12954 0 0 0 1.000 0 0.600 0 0 15003 0 510 15513 12938 - 1 4 20 0 23.0 68.00 0 12954 0 0 0 1.000 0 0.607 0 0 15179 0 516 15695 13089 - 1 4 20 1 23.0 68.00 0 12954 0 0 0 1.000 0 0.611 0 0 15263 0 519 15782 13156 - 1 4 20 2 23.0 68.00 0 12954 0 0 0 1.000 0 0.614 0 0 15341 0 522 15863 13217 - 1 4 20 3 23.0 68.00 0 12954 0 0 0 1.000 0 0.617 0 0 15413 0 524 15937 13272 - 1 4 20 4 23.0 68.00 0 12954 0 0 0 1.000 0 0.619 0 0 15477 0 526 16004 13321 - 1 4 20 5 23.0 68.00 0 12954 0 0 0 1.000 0 0.621 0 0 15533 0 528 16061 13361 - 1 4 21 0 23.0 68.00 0 12961 0 0 0 1.000 0 0.635 0 0 15887 0 540 16427 13660 - 1 4 21 1 23.1 68.00 0 12967 0 0 0 1.000 0 0.640 0 0 15988 0 544 16531 13740 - 1 4 21 2 23.1 68.00 0 12974 0 0 0 1.000 0 0.643 0 0 16080 0 547 16627 13815 - 1 4 21 3 23.1 68.00 0 12981 0 0 0 1.000 0 0.647 0 0 16172 0 550 16721 13888 - 1 4 21 4 23.1 68.00 0 12987 0 0 0 1.000 0 0.650 0 0 16261 0 553 16814 13960 - 1 4 21 5 23.2 68.00 0 12994 0 0 0 1.000 0 0.653 0 0 16336 0 555 16892 14018 - 1 4 22 0 23.5 68.00 0 13067 0 0 0 1.000 0 0.675 0 0 16887 0 574 17461 14487 - 1 4 22 1 23.8 68.00 0 13141 0 0 0 1.000 0 0.686 0 0 17161 0 583 17745 14715 - 1 4 22 2 24.2 68.00 0 13214 0 0 0 1.000 0 0.688 0 0 17203 0 585 17788 14746 - 1 4 22 3 24.5 68.00 0 13287 0 0 0 1.000 0 0.691 0 0 17275 0 587 17862 14806 - 1 4 22 4 24.8 68.00 0 13361 0 0 0 1.000 0 0.689 0 0 17226 0 586 17811 14753 - 1 4 22 5 25.2 68.00 0 13434 0 0 0 1.000 0 0.690 0 0 17252 0 587 17839 14777 - 1 4 23 0 25.3 68.00 0 13468 0 0 0 1.000 0 0.702 0 0 17559 0 597 18156 15033 - 1 4 23 1 25.5 68.00 0 13501 0 0 0 1.000 0 0.702 0 0 17562 0 597 18160 15033 - 1 4 23 2 25.6 68.00 0 13534 0 0 0 1.000 0 0.702 0 0 17547 0 597 18143 15016 - 1 4 23 3 25.8 68.00 0 13568 0 0 0 1.000 0 0.700 0 0 17489 0 595 18083 14958 - 1 4 23 4 25.9 68.00 0 13601 0 0 0 1.000 0 0.698 0 0 17459 0 594 18052 14928 - 1 4 23 5 26.1 68.00 0 13634 0 0 0 1.000 0 0.697 0 0 17415 0 592 18008 14884 + 1 4 17 2 25.3 68.00 0 0 0 0 0 1.000 0 0.523 0 0 13063 0 444 13507 11337 + 1 4 17 3 25.2 68.00 0 0 0 0 0 1.000 0 0.527 0 0 13181 0 448 13629 11439 + 1 4 17 4 25.0 68.00 0 0 0 0 0 1.000 0 0.530 0 0 13260 0 451 13711 11508 + 1 4 17 5 24.8 68.00 0 0 0 0 0 1.000 0 0.533 0 0 13329 0 453 13782 11571 + 1 4 18 0 24.6 68.00 0 0 0 0 0 1.000 0 0.518 0 0 12939 0 440 13379 11176 + 1 4 18 1 24.5 68.00 0 0 0 0 0 1.000 0 0.527 0 0 13176 0 448 13624 11381 + 1 4 18 2 24.3 68.00 0 0 0 0 0 1.000 0 0.536 0 0 13401 0 456 13857 11576 + 1 4 18 3 24.2 68.00 0 0 0 0 0 1.000 0 0.549 0 0 13733 0 467 14200 11865 + 1 4 18 4 24.0 68.00 0 0 0 0 0 1.000 0 0.558 0 0 13953 0 474 14427 12048 + 1 4 18 5 23.9 68.00 0 0 0 0 0 1.000 0 0.567 0 0 14174 0 482 14656 12238 + 1 4 19 0 23.8 68.00 0 0 0 0 0 1.000 0 0.566 0 0 14146 0 481 14627 12216 + 1 4 19 1 23.6 68.00 0 0 0 0 0 1.000 0 0.578 0 0 14439 0 491 14929 12469 + 1 4 19 2 23.5 68.00 0 0 0 0 0 1.000 0 0.584 0 0 14598 0 496 15095 12597 + 1 4 19 3 23.3 68.00 0 0 0 0 0 1.000 0 0.590 0 0 14742 0 501 15243 12717 + 1 4 19 4 23.1 68.00 0 0 0 0 0 1.000 0 0.595 0 0 14872 0 506 15378 12828 + 1 4 19 5 23.0 68.00 0 0 0 0 0 1.000 0 0.600 0 0 15003 0 510 15513 12938 + 1 4 20 0 23.0 68.00 0 0 0 0 0 1.000 0 0.607 0 0 15179 0 516 15695 13089 + 1 4 20 1 23.0 68.00 0 0 0 0 0 1.000 0 0.611 0 0 15263 0 519 15782 13156 + 1 4 20 2 23.0 68.00 0 0 0 0 0 1.000 0 0.614 0 0 15341 0 522 15863 13217 + 1 4 20 3 23.0 68.00 0 0 0 0 0 1.000 0 0.617 0 0 15413 0 524 15937 13272 + 1 4 20 4 23.0 68.00 0 0 0 0 0 1.000 0 0.619 0 0 15477 0 526 16004 13321 + 1 4 20 5 23.0 68.00 0 0 0 0 0 1.000 0 0.621 0 0 15533 0 528 16061 13361 + 1 4 21 0 23.0 68.00 0 0 0 0 0 1.000 0 0.635 0 0 15887 0 540 16427 13660 + 1 4 21 1 23.1 68.00 0 0 0 0 0 1.000 0 0.640 0 0 15988 0 544 16531 13740 + 1 4 21 2 23.1 68.00 0 0 0 0 0 1.000 0 0.643 0 0 16080 0 547 16627 13815 + 1 4 21 3 23.1 68.00 0 0 0 0 0 1.000 0 0.647 0 0 16172 0 550 16721 13888 + 1 4 21 4 23.1 68.00 0 0 0 0 0 1.000 0 0.650 0 0 16261 0 553 16814 13960 + 1 4 21 5 23.2 68.00 0 0 0 0 0 1.000 0 0.653 0 0 16336 0 555 16892 14018 + 1 4 22 0 23.5 68.00 0 0 0 0 0 1.000 0 0.675 0 0 16887 0 574 17461 14487 + 1 4 22 1 23.8 68.00 0 0 0 0 0 1.000 0 0.686 0 0 17161 0 583 17745 14715 + 1 4 22 2 24.2 68.00 0 0 0 0 0 1.000 0 0.688 0 0 17203 0 585 17788 14746 + 1 4 22 3 24.5 68.00 0 0 0 0 0 1.000 0 0.691 0 0 17275 0 587 17862 14806 + 1 4 22 4 24.8 68.00 0 0 0 0 0 1.000 0 0.689 0 0 17226 0 586 17811 14753 + 1 4 22 5 25.2 68.00 0 0 0 0 0 1.000 0 0.690 0 0 17252 0 587 17839 14777 + 1 4 23 0 25.3 68.00 0 0 0 0 0 1.000 0 0.702 0 0 17559 0 597 18156 15033 + 1 4 23 1 25.5 68.00 0 0 0 0 0 1.000 0 0.702 0 0 17562 0 597 18160 15033 + 1 4 23 2 25.6 68.00 0 0 0 0 0 1.000 0 0.702 0 0 17547 0 597 18143 15016 + 1 4 23 3 25.8 68.00 0 0 0 0 0 1.000 0 0.700 0 0 17489 0 595 18083 14958 + 1 4 23 4 25.9 68.00 0 0 0 0 0 1.000 0 0.698 0 0 17459 0 594 18052 14928 + 1 4 23 5 26.1 68.00 0 0 0 0 0 1.000 0 0.697 0 0 17415 0 592 18008 14884 Subhourly User-defined Report, Mon 05-Jan mon day Hr Sh ToDb Tzn UnMet capfl COPfl loadF runF spdF PLF runFAux COPpl qComp qAux qDef qFan qTot qsZn --- --- -- -- ---- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ------ ------ ------ ------ - 1 5 0 0 26.1 68.00 0 13641 0 0 0 1.000 0 0.706 0 0 17655 0 600 18255 15081 - 1 5 0 1 26.1 68.00 0 13648 0 0 0 1.000 0 0.709 0 0 17735 0 603 18338 15147 - 1 5 0 2 26.1 68.00 0 13654 0 0 0 1.000 0 0.713 0 0 17817 0 606 18423 15213 - 1 5 0 3 26.2 68.00 0 13661 0 0 0 1.000 0 0.716 0 0 17903 0 609 18511 15280 - 1 5 0 4 26.2 68.00 0 13668 0 0 0 1.000 0 0.720 0 0 17989 0 612 18601 15349 - 1 5 0 5 26.2 68.00 0 13674 0 0 0 1.000 0 0.723 0 0 18071 0 614 18685 15413 - ------------------------------------------------------------------------------- -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 104 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - 1 5 1 0 26.6 68.00 0 13748 0 0 0 1.000 0 0.721 0 0 18036 0 613 18650 15377 - 1 5 1 1 26.9 68.00 0 13821 0 0 0 1.000 0 0.721 0 0 18014 0 612 18627 15356 - 1 5 1 2 27.2 68.00 0 13895 0 0 0 1.000 0 0.720 0 0 17988 0 611 18599 15325 - 1 5 1 3 27.6 68.00 0 13968 0 0 0 1.000 0 0.716 0 0 17889 0 608 18497 15226 - 1 5 1 4 27.9 68.00 0 14041 0 0 0 1.000 0 0.713 0 0 17836 0 606 18443 15179 - 1 5 1 5 28.2 68.00 0 14115 0 0 0 1.000 0 0.712 0 0 17789 0 605 18393 15130 - 1 5 2 0 28.4 68.00 0 14148 0 0 0 1.000 0 0.710 0 0 17748 0 603 18352 15083 - 1 5 2 1 28.5 68.00 0 14182 0 0 0 1.000 0 0.710 0 0 17749 0 603 18353 15083 - 1 5 2 2 28.7 68.00 0 14215 0 0 0 1.000 0 0.710 0 0 17760 0 604 18363 15087 - 1 5 2 3 28.8 68.00 0 14248 0 0 0 1.000 0 0.708 0 0 17690 0 601 18291 15016 - 1 5 2 4 29.0 68.00 0 14282 0 0 0 1.000 0 0.707 0 0 17687 0 601 18289 15014 - 1 5 2 5 29.1 68.00 0 14315 0 0 0 1.000 0 0.708 0 0 17694 0 602 18295 15014 - 1 5 3 0 29.5 68.00 0 14388 0 0 0 1.000 0 0.701 0 0 17537 0 596 18133 14872 - 1 5 3 1 29.8 68.00 0 14462 0 0 0 1.000 0 0.701 0 0 17520 0 596 18116 14859 - 1 5 3 2 30.1 68.00 0 14535 0 0 0 1.000 0 0.695 0 0 17381 0 591 17972 14731 - 1 5 3 3 30.4 68.00 0 14609 0 0 0 1.000 0 0.694 0 0 17355 0 590 17945 14711 - 1 5 3 4 30.8 68.00 0 14682 0 0 0 1.000 0 0.688 0 0 17201 0 585 17786 14572 - 1 5 3 5 31.1 68.00 0 14755 0 0 0 1.000 0 0.687 0 0 17171 0 584 17755 14549 - 1 5 4 0 31.3 68.00 0 14795 0 0 0 1.000 0 0.682 0 0 17041 0 579 17620 14432 - 1 5 4 1 31.5 68.00 0 14835 0 0 0 1.000 0 0.682 0 0 17040 0 579 17619 14435 - 1 5 4 2 31.6 68.00 0 14875 0 0 0 1.000 0 0.677 0 0 16931 0 576 17506 14338 - 1 5 4 3 31.8 68.00 0 14915 0 0 0 1.000 0 0.678 0 0 16939 0 576 17515 14349 - 1 5 4 4 32.0 68.00 0 14955 0 0 0 1.000 0 0.673 0 0 16827 0 572 17399 14251 - 1 5 4 5 32.2 68.00 0 14996 0 0 0 1.000 0 0.674 0 0 16843 0 573 17416 14269 - 1 5 5 0 32.3 68.00 0 15022 0 0 0 1.000 0 0.658 0 0 16448 0 559 17007 13932 - 1 5 5 1 32.4 68.00 0 15049 0 0 0 1.000 0 0.652 0 0 16312 0 555 16867 13810 - 1 5 5 2 32.5 68.00 0 15076 0 0 0 1.000 0 0.652 0 0 16295 0 554 16849 13804 - 1 5 5 3 32.7 68.00 0 15102 0 0 0 1.000 0 0.651 0 0 16276 0 553 16829 13787 - 1 5 5 4 32.8 68.00 0 15129 0 0 0 1.000 0 0.649 0 0 16225 0 552 16776 13739 - 1 5 5 5 32.9 68.00 0 15156 0 0 0 1.000 0 0.644 0 0 16111 0 548 16659 13636 - 1 5 6 0 32.8 68.00 0 15129 0 0 0 1.000 0 0.630 0 0 15756 0 536 16291 13344 - 1 5 6 1 32.7 68.00 0 15102 0 0 0 1.000 0 0.629 0 0 15726 0 535 16261 13323 - 1 5 6 2 32.5 68.00 0 15076 0 0 0 1.000 0 0.627 0 0 15667 0 533 16200 13271 - 1 5 6 3 32.4 68.00 0 15049 0 0 0 1.000 0 0.626 0 0 15642 0 532 16174 13248 - 1 5 6 4 32.3 68.00 0 15022 0 0 0 1.000 0 0.625 0 0 15629 0 531 16160 13236 - 1 5 6 5 32.2 68.00 0 14996 0 0 0 1.000 0 0.625 0 0 15621 0 531 16152 13230 - 1 5 7 0 32.4 68.00 0 15042 0 0 0 1.000 0 0.595 0 0 14884 0 506 15390 12605 - 1 5 7 1 32.6 68.00 0 15089 0 0 0 1.000 0 0.589 0 0 14728 0 501 15228 12470 - 1 5 7 2 32.8 68.00 0 15136 0 0 0 1.000 0 0.580 0 0 14504 0 493 14997 12273 + 1 5 0 0 26.1 68.00 0 0 0 0 0 1.000 0 0.706 0 0 17655 0 600 18255 15081 + 1 5 0 1 26.1 68.00 0 0 0 0 0 1.000 0 0.709 0 0 17735 0 603 18338 15147 + 1 5 0 2 26.1 68.00 0 0 0 0 0 1.000 0 0.713 0 0 17817 0 606 18423 15213 + 1 5 0 3 26.2 68.00 0 0 0 0 0 1.000 0 0.716 0 0 17903 0 609 18511 15280 + 1 5 0 4 26.2 68.00 0 0 0 0 0 1.000 0 0.720 0 0 17989 0 612 18601 15349 + 1 5 0 5 26.2 68.00 0 0 0 0 0 1.000 0 0.723 0 0 18071 0 614 18685 15413 + +------------------------------------------------------------------------------ +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 105 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + + 1 5 1 0 26.6 68.00 0 0 0 0 0 1.000 0 0.721 0 0 18036 0 613 18650 15377 + 1 5 1 1 26.9 68.00 0 0 0 0 0 1.000 0 0.721 0 0 18014 0 612 18627 15356 + 1 5 1 2 27.2 68.00 0 0 0 0 0 1.000 0 0.720 0 0 17988 0 611 18599 15325 + 1 5 1 3 27.6 68.00 0 0 0 0 0 1.000 0 0.716 0 0 17889 0 608 18497 15226 + 1 5 1 4 27.9 68.00 0 0 0 0 0 1.000 0 0.713 0 0 17836 0 606 18443 15179 + 1 5 1 5 28.2 68.00 0 0 0 0 0 1.000 0 0.712 0 0 17789 0 605 18393 15130 + 1 5 2 0 28.4 68.00 0 0 0 0 0 1.000 0 0.710 0 0 17748 0 603 18352 15083 + 1 5 2 1 28.5 68.00 0 0 0 0 0 1.000 0 0.710 0 0 17749 0 603 18353 15083 + 1 5 2 2 28.7 68.00 0 0 0 0 0 1.000 0 0.710 0 0 17760 0 604 18363 15087 + 1 5 2 3 28.8 68.00 0 0 0 0 0 1.000 0 0.708 0 0 17690 0 601 18291 15016 + 1 5 2 4 29.0 68.00 0 0 0 0 0 1.000 0 0.707 0 0 17687 0 601 18289 15014 + 1 5 2 5 29.1 68.00 0 0 0 0 0 1.000 0 0.708 0 0 17694 0 602 18295 15014 + 1 5 3 0 29.5 68.00 0 0 0 0 0 1.000 0 0.701 0 0 17537 0 596 18133 14872 + 1 5 3 1 29.8 68.00 0 0 0 0 0 1.000 0 0.701 0 0 17520 0 596 18116 14859 + 1 5 3 2 30.1 68.00 0 0 0 0 0 1.000 0 0.695 0 0 17381 0 591 17972 14731 + 1 5 3 3 30.4 68.00 0 0 0 0 0 1.000 0 0.694 0 0 17355 0 590 17945 14711 + 1 5 3 4 30.8 68.00 0 0 0 0 0 1.000 0 0.688 0 0 17201 0 585 17786 14572 + 1 5 3 5 31.1 68.00 0 0 0 0 0 1.000 0 0.687 0 0 17171 0 584 17755 14549 + 1 5 4 0 31.3 68.00 0 0 0 0 0 1.000 0 0.682 0 0 17041 0 579 17620 14432 + 1 5 4 1 31.5 68.00 0 0 0 0 0 1.000 0 0.682 0 0 17040 0 579 17619 14435 + 1 5 4 2 31.6 68.00 0 0 0 0 0 1.000 0 0.677 0 0 16931 0 576 17506 14338 + 1 5 4 3 31.8 68.00 0 0 0 0 0 1.000 0 0.678 0 0 16939 0 576 17515 14349 + 1 5 4 4 32.0 68.00 0 0 0 0 0 1.000 0 0.673 0 0 16827 0 572 17399 14251 + 1 5 4 5 32.2 68.00 0 0 0 0 0 1.000 0 0.674 0 0 16843 0 573 17416 14269 + 1 5 5 0 32.3 68.00 0 0 0 0 0 1.000 0 0.658 0 0 16448 0 559 17007 13932 + 1 5 5 1 32.4 68.00 0 0 0 0 0 1.000 0 0.652 0 0 16312 0 555 16867 13810 + 1 5 5 2 32.5 68.00 0 0 0 0 0 1.000 0 0.652 0 0 16295 0 554 16849 13804 + 1 5 5 3 32.7 68.00 0 0 0 0 0 1.000 0 0.651 0 0 16276 0 553 16829 13787 + 1 5 5 4 32.8 68.00 0 0 0 0 0 1.000 0 0.649 0 0 16225 0 552 16776 13739 + 1 5 5 5 32.9 68.00 0 0 0 0 0 1.000 0 0.644 0 0 16111 0 548 16659 13636 + 1 5 6 0 32.8 68.00 0 0 0 0 0 1.000 0 0.630 0 0 15756 0 536 16291 13344 + 1 5 6 1 32.7 68.00 0 0 0 0 0 1.000 0 0.629 0 0 15726 0 535 16261 13323 + 1 5 6 2 32.5 68.00 0 0 0 0 0 1.000 0 0.627 0 0 15667 0 533 16200 13271 + 1 5 6 3 32.4 68.00 0 0 0 0 0 1.000 0 0.626 0 0 15642 0 532 16174 13248 + 1 5 6 4 32.3 68.00 0 0 0 0 0 1.000 0 0.625 0 0 15629 0 531 16160 13236 + 1 5 6 5 32.2 68.00 0 0 0 0 0 1.000 0 0.625 0 0 15621 0 531 16152 13230 + 1 5 7 0 32.4 68.00 0 0 0 0 0 1.000 0 0.595 0 0 14884 0 506 15390 12605 + 1 5 7 1 32.6 68.00 0 0 0 0 0 1.000 0 0.589 0 0 14728 0 501 15228 12470 + 1 5 7 2 32.8 68.00 0 0 0 0 0 1.000 0 0.580 0 0 14504 0 493 14997 12273 1 5 7 3 33.0 68.00 0 15182 3.403 0.986 0.986 1.000 0.998 0 3.397 12771 0 1363 838 14972 11968 1 5 7 4 33.2 68.00 0 15229 3.409 0.984 0.984 1.000 0.998 0 3.403 12766 0 1377 836 14979 11963 1 5 7 5 33.4 68.00 0 15276 3.415 0.970 0.970 1.000 0.997 0 3.404 12622 0 1376 825 14823 11848 @@ -6612,7 +6675,7 @@ CZ16 Dual Fuel 1 5 9 5 38.1 68.00 0 16317 3.553 0.307 0.307 1.000 0.922 0 3.276 4189 0 559 261 5010 4000 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 105 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 106 @@ -6675,7 +6738,7 @@ CZ16 Dual Fuel 1 5 18 5 37.9 68.00 0 16277 3.548 0.635 0.635 1.000 0.959 0 3.402 8647 0 1147 540 10334 8424 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 106 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 107 @@ -6738,7 +6801,7 @@ Subhourly User-defined Report, Tue 06-Jan 1 6 2 5 37.2 68.00 0 16116 3.527 0.823 0.823 1.000 0.980 0 3.457 11129 0 1436 699 13264 10858 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 107 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 108 @@ -6801,7 +6864,7 @@ CZ16 Dual Fuel 1 6 11 5 39.9 68.00 0 16717 3.606 0.560 0.560 1.000 0.951 0 3.427 7781 0 1108 476 9365 7712 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 108 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 109 @@ -6864,7 +6927,7 @@ CZ16 Dual Fuel 1 6 20 5 34.7 68.00 0 15556 3.453 0.743 0.743 1.000 0.971 0 3.353 9793 0 1135 632 11560 9394 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 109 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 110 @@ -6881,14 +6944,14 @@ CZ16 Dual Fuel 1 6 22 1 31.4 68.00 0 14822 3.354 0.957 0.957 1.000 0.995 0 3.338 12178 0 1189 813 14180 11410 1 6 22 2 31.1 68.00 0 14755 3.345 0.973 0.973 1.000 0.997 0 3.335 12352 0 1184 827 14364 11547 1 6 22 3 30.8 68.00 0 14689 3.336 0.990 0.990 1.000 0.999 0 3.333 12526 0 1179 842 14547 11686 - 1 6 22 4 30.5 68.00 0 14622 0 0 0 1.000 0 0.557 0 0 13914 0 473 14387 11831 + 1 6 22 4 30.5 68.00 0 0 0 0 0 1.000 0 0.557 0 0 13914 0 473 14387 11831 1 6 22 5 30.2 68.00 0 14555 3.318 0.998 0.998 1.000 1.000 0 3.317 12537 0 1136 848 14521 11648 - 1 6 23 0 30.2 68.00 0 14555 0 0 0 1.000 0 0.575 0 0 14363 0 488 14852 12203 - 1 6 23 1 30.2 68.00 0 14555 0 0 0 1.000 0 0.567 0 0 14170 0 482 14652 12040 - 1 6 23 2 30.2 68.00 0 14555 0 0 0 1.000 0 0.559 0 0 13967 0 475 14441 11861 - 1 6 23 3 30.2 68.00 0 14555 0 0 0 1.000 0 0.565 0 0 14124 0 480 14605 11988 - 1 6 23 4 30.2 68.00 0 14555 0 0 0 1.000 0 0.556 0 0 13893 0 472 14365 11790 - 1 6 23 5 30.2 68.00 0 14555 0 0 0 1.000 0 0.558 0 0 13947 0 474 14422 11831 + 1 6 23 0 30.2 68.00 0 0 0 0 0 1.000 0 0.575 0 0 14363 0 488 14852 12203 + 1 6 23 1 30.2 68.00 0 0 0 0 0 1.000 0 0.567 0 0 14170 0 482 14652 12040 + 1 6 23 2 30.2 68.00 0 0 0 0 0 1.000 0 0.559 0 0 13967 0 475 14441 11861 + 1 6 23 3 30.2 68.00 0 0 0 0 0 1.000 0 0.565 0 0 14124 0 480 14605 11988 + 1 6 23 4 30.2 68.00 0 0 0 0 0 1.000 0 0.556 0 0 13893 0 472 14365 11790 + 1 6 23 5 30.2 68.00 0 0 0 0 0 1.000 0 0.558 0 0 13947 0 474 14422 11831 @@ -6927,7 +6990,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 110 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 111 @@ -6990,7 +7053,7 @@ Subhourly User-defined Report, Fri 14-Aug 8 14 7 5 77.2 77.60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 111 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 112 @@ -7053,7 +7116,7 @@ CZ16 Dual Fuel 8 14 16 5 85.3 78.00 0 0 0 0.634 0.634 1.000 1.000 0 0 -10773 0 0 540 -10233 -8408 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 112 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 113 @@ -7116,7 +7179,7 @@ Subhourly User-defined Report, Sat 15-Aug 8 15 0 5 73.4 77.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 113 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 114 @@ -7179,7 +7242,7 @@ CZ16 Dual Fuel 8 15 9 5 82.6 78.00 0 0 0 0.271 0.271 1.000 1.000 0 0 -4644 0 0 230 -4414 -3790 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 114 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 115 @@ -7242,7 +7305,7 @@ CZ16 Dual Fuel 8 15 18 5 83.7 78.00 0 0 0 0.566 0.566 1.000 1.000 0 0 -9712 0 0 482 -9230 -7533 ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 115 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 116 @@ -7284,7 +7347,7 @@ CZ16 Dual Fuel ! Log for Run 004: -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console @@ -7294,18 +7357,18 @@ Input for Run 004: ALTER RSYS "rsys1" rsTypeAuxH = Furnace rsCtrlAuxH = LockOut + UNSET rsParFuel rsAFUEAuxH = .93 + ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Furn Lockout" + RUN - - - - ------------------------------------------------------------------------------ -! ashp_dfng 004 Mon 20-Dec-21 10:36:18 am Page 116 +! ashp_dfng 004 Wed 29-Dec-21 2:17:00 pm Page 117 @@ -7356,35 +7419,6 @@ Yr 1.520 0 0 0 0 0 0 0 0 0 0 -HVAC Cooling Info - - Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC - ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- - 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 - - - - - - ------------------------------------------------------------------------------- -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 117 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - - -HVAC Heating Info - - Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH - ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- - 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 1.00 - - - @@ -7396,21 +7430,50 @@ HVAC Heating Info +------------------------------------------------------------------------------ +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 118 + +CZ16 Dual Fuel +------------------------------------------------------------------------------ +RSYSRES Res Cycle LO35 + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 208.01 166.40 3041.8 310.96 4160.0 318.19 7830.9 0 0 0 0 0 0 0 0 0 0 845.21 310.96 4160.0 318.19 98.406 5732.7 0 0 0 0 0 0 0 6336.3 -25.78 0 0 0 0 + Feb 133.92 157.43 2037.5 167.31 3935.8 247.61 6388.3 0 0 0 0 0 0 0 0 0 0 550.50 167.31 3935.8 247.61 76.841 4978.1 0 0 0 0 0 0 0 5203.6 -18.57 0 0 0 0 + Mar 236.21 56.834 3457.2 360.87 1420.8 248.99 5487.9 0 0 0 0 0 0 0 0 0 0 958.79 360.87 1420.8 248.99 75.886 3065.4 0 0 0 0 0 0 0 4438.5 -22.48 0 0 0 0 + Apr 219.30 73.666 3151.6 357.70 1841.6 248.98 5599.9 0 0 0 0 0 0 0 0 0 0 892.80 357.70 1841.6 248.98 86.259 3427.4 0 0 0 0 0 0 0 4601.3 -16.29 0 0 0 0 + May 69.902 4.461 1058.2 96.771 111.52 63.199 1329.7 0 0 0 0 0 0 0 0 0 0 290.47 96.771 111.52 63.199 29.481 591.43 0 0 0 0 0 0 0 1089.3 -5.240 0 0 0 0 + Jun 29.491 0 314.49 6.276 0 15.084 335.85 -196.3 -12.29 9.992 -186.4 0 0 0 0 0 0 77.973 6.276 0 15.084 6.824 106.16 46.410 9.992 0 56.402 0 0 0 274.52 -1.233 -147.5 -11.15 0 0 + Jul 10.537 0 75.407 0 0 3.421 78.827 -110.0 -11.10 5.542 -104.5 0 0 0 0 0 0 18.172 0 0 3.421 0 21.593 24.768 5.542 0 30.310 0 0 0 66.754 -0.222 -83.95 -10.83 0 0 + Aug 36.171 0 0 0 0 0 0 -620.4 -2.941 30.778 -589.6 0 0 0 0 0 0 0 0 0 0 0 0 139.24 30.778 0 170.02 0 0 0 0 0 -488.2 -4.602 0 0 + Sep 12.967 0 163.73 14.515 0 9.037 187.28 -41.30 0 1.986 -39.31 0 0 0 0 0 0 45.144 14.515 0 9.037 6.347 75.042 8.373 1.986 0.614 10.973 0 0 0 150.19 -0.981 -33.06 -0.175 0 0 + Oct 54.941 28.632 867.37 56.209 715.80 71.027 1710.4 0 0 0 0 0 0 0 0 0 0 231.92 56.209 715.80 71.027 28.525 1103.5 0 0 0 0 0 0 0 1368.5 -6.922 0 0 0 0 + Nov 182.04 43.308 2732.5 248.52 1082.7 191.52 4255.2 0 0 0 0 0 0 0 0 0 0 748.62 248.52 1082.7 191.52 55.413 2326.8 0 0 0 0 0 0 0 3411.8 -17.23 0 0 0 0 + Dec 178.15 147.38 2708.6 224.18 3684.5 276.61 6894.0 0 0 0 0 0 0 0 0 0 0 731.54 224.18 3684.5 276.61 77.797 4994.7 0 0 0 0 0 0 0 5488.6 -27.60 0 0 0 0 + Yr 1371.6 678.11 19608 1843.3 16953 1693.7 40098 -968.0 -26.33 48.298 -919.7 0 0 0 0 0 0 5391.1 1843.3 16953 1693.7 541.78 26423 218.79 48.298 0.614 267.70 0 0 0 32429 -142.5 -752.7 -26.76 0 0 +HVAC Cooling Info + Sys # System Cap95 SEER EER95 SEERnfX EERnfX CdC vfPerTon fanPwrC fanElecC + ----- ------------------------ ------ ------ ------ ------- ------ ---- -------- ------- -------- + 1 rsys1 19000 14.00 11.70 16.55 13.65 0 350 0.450 850.90 +HVAC Heating Info + Sys # System CapH fanPwrH fanElecH Cap47 Cap35 Cap17 HSPF COP47 COP35 COP17 COPm47 COPm35 COPm17 CdH CapAuxH AFUE AFUEAuxH + ----- ------------------------ ------ ------- -------- ------ ------ ------ ----- ----- ----- ----- ------ ------ ------ ---- ------- ----- -------- + 1 rsys1 0 0.450 849.88 18200 13978 11528 9.00 3.81 3.05 2.59 3.81 3.05 2.59 .113 25000 0 1.00 @@ -7431,7 +7494,7 @@ HVAC Heating Info ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 118 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 119 @@ -7442,71 +7505,71 @@ CZ16 Dual Fuel Hourly User-defined Report, Sun 04-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 4 1 18.1 0 0.826 0 0 0 1 0 21 - 1 4 2 19.9 0 0.835 0 0 0 1 0 21 - 1 4 3 20.1 0 0.835 0 0 0 1 0 21 - 1 4 4 20.8 0 0.834 0 0 0 1 0 21 - 1 4 5 19.9 0 0.834 0 0 0 1 0 21 - 1 4 6 20.1 0 0.824 0 0 0 1 0 21 - 1 4 7 21.0 0 0.807 0 0 0 1 0 20 - 1 4 8 21.0 0 0.759 0 0 0 1 0 19 - 1 4 9 21.9 0 0.558 0 0 0 0 0 14 - 1 4 10 25.2 0 0.402 0 0 0 0 0 10 - 1 4 11 26.8 0 0.317 0 0 0 0 0 8 - 1 4 12 25.2 0 0.295 0 0 0 0 0 7 - 1 4 13 26.2 0 0.272 0 0 0 0 0 7 - 1 4 14 26.4 0 0.234 0 0 0 0 0 6 - 1 4 15 27.0 0 0.213 0 0 0 0 0 5 - 1 4 16 26.8 0 0.233 0 0 0 0 0 6 - 1 4 17 25.9 0 0.334 0 0 0 0 0 8 - 1 4 18 24.8 0 0.496 0 0 0 0 0 12 - 1 4 19 23.9 0 0.554 0 0 0 0 0 14 - 1 4 20 23.0 0 0.593 0 0 0 0 0 15 - 1 4 21 23.0 0 0.627 0 0 0 0 0 16 - 1 4 22 23.2 0 0.656 0 0 0 0 0 16 - 1 4 23 25.2 0 0.691 0 0 0 0 0 17 - 1 4 24 26.1 0 0.700 0 0 0 0 0 18 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 4 1 18.1 0 0.826 0 0 0 1 0 0 21 + 1 4 2 19.9 0 0.835 0 0 0 1 0 0 21 + 1 4 3 20.1 0 0.835 0 0 0 1 0 0 21 + 1 4 4 20.8 0 0.834 0 0 0 1 0 0 21 + 1 4 5 19.9 0 0.834 0 0 0 1 0 0 21 + 1 4 6 20.1 0 0.824 0 0 0 1 0 0 21 + 1 4 7 21.0 0 0.807 0 0 0 1 0 0 20 + 1 4 8 21.0 0 0.759 0 0 0 1 0 0 19 + 1 4 9 21.9 0 0.558 0 0 0 0 0 0 14 + 1 4 10 25.2 0 0.402 0 0 0 0 0 0 10 + 1 4 11 26.8 0 0.317 0 0 0 0 0 0 8 + 1 4 12 25.2 0 0.295 0 0 0 0 0 0 7 + 1 4 13 26.2 0 0.272 0 0 0 0 0 0 7 + 1 4 14 26.4 0 0.234 0 0 0 0 0 0 6 + 1 4 15 27.0 0 0.213 0 0 0 0 0 0 5 + 1 4 16 26.8 0 0.233 0 0 0 0 0 0 6 + 1 4 17 25.9 0 0.334 0 0 0 0 0 0 8 + 1 4 18 24.8 0 0.496 0 0 0 0 0 0 12 + 1 4 19 23.9 0 0.554 0 0 0 0 0 0 14 + 1 4 20 23.0 0 0.593 0 0 0 0 0 0 15 + 1 4 21 23.0 0 0.627 0 0 0 0 0 0 16 + 1 4 22 23.2 0 0.656 0 0 0 0 0 0 16 + 1 4 23 25.2 0 0.691 0 0 0 0 0 0 17 + 1 4 24 26.1 0 0.700 0 0 0 0 0 0 18 Hourly User-defined Report, Mon 05-Jan - Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- - 1 5 1 26.2 0 0.714 0 0 0 1 0 18 - 1 5 2 28.2 0 0.715 0 0 0 1 0 18 - 1 5 3 29.1 0 0.707 0 0 0 1 0 18 - 1 5 4 31.1 0 0.692 0 0 0 0 0 17 - 1 5 5 32.2 0 0.675 0 0 0 0 0 17 - 1 5 6 32.9 0 0.649 0 0 0 0 0 16 - 1 5 7 32.2 0 0.624 0 0 0 0 0 16 - 1 5 8 33.4 0 0.575 0 0 0 0 0 14 - 1 5 9 36.1 0.283 0.219 4 0 0 0 0 5 - 1 5 10 38.1 0.425 0 6 0 0 0 1 0 - 1 5 11 40.3 0.278 0 4 0 0 0 0 0 - 1 5 12 41.5 0.215 0 3 0 0 0 0 0 - 1 5 13 38.1 0.191 0 3 0 0 0 0 0 - 1 5 14 39.7 0.165 0 2 0 0 0 0 0 - 1 5 15 39.2 0.135 0 2 0 0 0 0 0 - 1 5 16 39.0 0.272 0 4 0 0 0 0 0 - 1 5 17 38.8 0.402 0 6 0 0 0 1 0 - 1 5 18 37.9 0.566 0 8 0 0 0 1 0 + Month Day Hr Tout hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- --- -- ---- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 5 1 26.2 0 0.714 0 0 0 1 0 0 18 + 1 5 2 28.2 0 0.715 0 0 0 1 0 0 18 + 1 5 3 29.1 0 0.707 0 0 0 1 0 0 18 + 1 5 4 31.1 0 0.692 0 0 0 0 0 0 17 + 1 5 5 32.2 0 0.675 0 0 0 0 0 0 17 + 1 5 6 32.9 0 0.649 0 0 0 0 0 0 16 + 1 5 7 32.2 0 0.624 0 0 0 0 0 0 16 + 1 5 8 33.4 0 0.575 0 0 0 0 0 0 14 + 1 5 9 36.1 0.283 0.219 4 0 0 0 0 0 5 + 1 5 10 38.1 0.425 0 6 0 0 0 0 1 0 + 1 5 11 40.3 0.278 0 4 0 0 0 0 0 0 + 1 5 12 41.5 0.215 0 3 0 0 0 0 0 0 + 1 5 13 38.1 0.191 0 3 0 0 0 0 0 0 + 1 5 14 39.7 0.165 0 2 0 0 0 0 0 0 + 1 5 15 39.2 0.135 0 2 0 0 0 0 0 0 + 1 5 16 39.0 0.272 0 4 0 0 0 0 0 0 + 1 5 17 38.8 0.402 0 6 0 0 0 0 1 0 + 1 5 18 37.9 0.566 0 8 0 0 0 0 1 0 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 119 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 120 CZ16 Dual Fuel ------------------------------------------------------------------------------ - 1 5 19 37.9 0.621 0 8 0 0 0 1 0 - 1 5 20 37.8 0.650 0 9 0 0 0 1 0 - 1 5 21 37.0 0.703 0 10 0 0 0 1 0 - 1 5 22 36.9 0.747 0 10 0 0 1 1 0 - 1 5 23 36.1 0.810 0 11 0 0 1 1 0 - 1 5 24 36.9 0.871 0 12 0 0 1 1 0 + 1 5 19 37.9 0.621 0 8 0 0 0 0 1 0 + 1 5 20 37.8 0.650 0 9 0 0 0 0 1 0 + 1 5 21 37.0 0.703 0 10 0 0 0 0 1 0 + 1 5 22 36.9 0.747 0 10 0 0 1 0 1 0 + 1 5 23 36.1 0.810 0 11 0 0 1 0 1 0 + 1 5 24 36.9 0.871 0 12 0 0 1 0 1 0 @@ -7557,7 +7620,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 120 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 121 @@ -7620,7 +7683,7 @@ Hr Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan 16 .00024 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .00024 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 121 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 122 @@ -7642,22 +7705,22 @@ Day .00456 0 0 0 0 0 0 0 0 0 0 Monthly User-defined Report - Month hrsOn hrsOnAux qh qcSen qcLat qFan qDefrost qAux - ----- ----- -------- ------- ------- ------- ------- ------- ------- - 1 208.0 166.398 3042 0 0 318 311 4160 - 2 133.9 157.433 2038 0 0 248 167 3936 - 3 236.2 56.834 3457 0 0 249 361 1421 - 4 219.3 73.666 3152 0 0 249 358 1842 - 5 69.90 4.461 1058 0 0 63 97 112 - 6 29.49 0 314 -196 -12 25 6 0 - 7 10.54 0 75 -110 -11 9 0 0 - 8 36.17 0 0 -620 -3 31 0 0 - 9 12.97 0 164 -41 0 11 15 0 - 10 54.94 28.632 867 0 0 71 56 716 - 11 182.0 43.308 2732 0 0 192 249 1083 - 12 178.2 147.382 2709 0 0 277 224 3685 + Month hrsOn hrsOnAux qh qcSen qcLat qhFan qcFan qDefrost qAux + ----- ----- -------- ------- ------- ------- ------- ------- ------- ------- + 1 208.0 166.398 3042 0 0 318 0 311 4160 + 2 133.9 157.433 2038 0 0 248 0 167 3936 + 3 236.2 56.834 3457 0 0 249 0 361 1421 + 4 219.3 73.666 3152 0 0 249 0 358 1842 + 5 69.90 4.461 1058 0 0 63 0 97 112 + 6 29.49 0 314 -196 -12 15 10 6 0 + 7 10.54 0 75 -110 -11 3 6 0 0 + 8 36.17 0 0 -620 -3 0 31 0 0 + 9 12.97 0 164 -41 0 9 2 15 0 + 10 54.94 28.632 867 0 0 71 0 56 716 + 11 182.0 43.308 2732 0 0 192 0 249 1083 + 12 178.2 147.382 2709 0 0 277 0 224 3685 - Yr 1372 678.113 19608 -968 -26 1742 1843 16953 + Yr 1372 678.113 19608 -968 -26 1694 48 1843 16953 @@ -7683,7 +7746,7 @@ Monthly User-defined Report ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 122 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 123 @@ -7696,234 +7759,234 @@ Subhourly User-defined Report, Sun 04-Jan mon day Hr Sh ToDb Tzn UnMet capfl COPfl loadF runF spdF PLF runFAux COPpl qComp qAux qDef qFan qTot qsZn --- --- -- -- ---- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ------ ------ ------ ------ - 1 4 0 0 18.7 68.00 0 850 0 0 0 1.000 0 0.816 0 0 20392 0 693 21085 17580 - 1 4 0 1 18.6 68.00 0 850 0 0 0 1.000 0 0.819 0 0 20477 0 696 21174 17658 - 1 4 0 2 18.5 68.00 0 850 0 0 0 1.000 0 0.825 0 0 20624 0 701 21325 17795 - 1 4 0 3 18.4 68.00 0 850 0 0 0 1.000 0 0.829 0 0 20716 0 704 21420 17863 - 1 4 0 4 18.3 68.00 0 850 0 0 0 1.000 0 0.832 0 0 20795 0 707 21502 17928 - 1 4 0 5 18.1 68.00 0 850 0 0 0 1.000 0 0.834 0 0 20856 0 709 21565 17984 - 1 4 1 0 18.4 68.00 0 850 0 0 0 1.000 0 0.836 0 0 20905 0 711 21616 18030 - 1 4 1 1 18.7 68.00 0 850 0 0 0 1.000 0 0.837 0 0 20930 0 712 21642 18044 - 1 4 1 2 19.0 68.00 0 850 0 0 0 1.000 0 0.836 0 0 20900 0 710 21610 18005 - 1 4 1 3 19.3 68.00 0 850 0 0 0 1.000 0 0.836 0 0 20900 0 711 21611 18004 - 1 4 1 4 19.6 68.00 0 850 0 0 0 1.000 0 0.833 0 0 20820 0 708 21527 17925 - 1 4 1 5 19.9 68.00 0 850 0 0 0 1.000 0 0.832 0 0 20805 0 707 21512 17909 - 1 4 2 0 20.0 68.00 0 850 0 0 0 1.000 0 0.832 0 0 20799 0 707 21506 17896 - 1 4 2 1 20.0 68.00 0 850 0 0 0 1.000 0 0.834 0 0 20841 0 709 21550 17941 - 1 4 2 2 20.0 68.00 0 850 0 0 0 1.000 0 0.835 0 0 20874 0 710 21583 17978 - 1 4 2 3 20.1 68.00 0 850 0 0 0 1.000 0 0.836 0 0 20906 0 711 21617 18014 - 1 4 2 4 20.1 68.00 0 850 0 0 0 1.000 0 0.837 0 0 20928 0 711 21639 18043 - 1 4 2 5 20.1 68.00 0 850 0 0 0 1.000 0 0.838 0 0 20941 0 712 21653 18068 - 1 4 3 0 20.2 68.00 0 850 0 0 0 1.000 0 0.836 0 0 20904 0 711 21615 18040 - 1 4 3 1 20.4 68.00 0 850 0 0 0 1.000 0 0.837 0 0 20916 0 711 21627 18052 - 1 4 3 2 20.5 68.00 0 850 0 0 0 1.000 0 0.837 0 0 20923 0 711 21635 18063 - 1 4 3 3 20.6 68.00 0 850 0 0 0 1.000 0 0.833 0 0 20823 0 708 21531 17980 - 1 4 3 4 20.7 68.00 0 850 0 0 0 1.000 0 0.833 0 0 20824 0 708 21532 17985 - 1 4 3 5 20.8 68.00 0 850 0 0 0 1.000 0 0.828 0 0 20711 0 704 21415 17888 - 1 4 4 0 20.7 68.00 0 850 0 0 0 1.000 0 0.829 0 0 20727 0 705 21432 17903 - 1 4 4 1 20.5 68.00 0 850 0 0 0 1.000 0 0.830 0 0 20757 0 706 21462 17928 - 1 4 4 2 20.4 68.00 0 850 0 0 0 1.000 0 0.832 0 0 20793 0 707 21500 17960 - 1 4 4 3 20.2 68.00 0 850 0 0 0 1.000 0 0.835 0 0 20887 0 710 21597 18043 - 1 4 4 4 20.1 68.00 0 850 0 0 0 1.000 0 0.837 0 0 20935 0 712 21647 18086 - 1 4 4 5 19.9 68.00 0 850 0 0 0 1.000 0 0.839 0 0 20982 0 713 21696 18129 - 1 4 5 0 20.0 68.00 0 850 0 0 0 1.000 0 0.826 0 0 20660 0 702 21362 17852 - 1 4 5 1 20.0 68.00 0 850 0 0 0 1.000 0 0.826 0 0 20642 0 702 21343 17837 - 1 4 5 2 20.0 68.00 0 850 0 0 0 1.000 0 0.825 0 0 20624 0 701 21325 17821 - 1 4 5 3 20.1 68.00 0 850 0 0 0 1.000 0 0.824 0 0 20599 0 700 21300 17800 - 1 4 5 4 20.1 68.00 0 850 0 0 0 1.000 0 0.823 0 0 20575 0 699 21275 17775 - 1 4 5 5 20.1 68.00 0 850 0 0 0 1.000 0 0.823 0 0 20570 0 699 21270 17756 - 1 4 6 0 20.3 68.00 0 850 0 0 0 1.000 0 0.809 0 0 20234 0 688 20922 17451 - 1 4 6 1 20.4 68.00 0 850 0 0 0 1.000 0 0.808 0 0 20200 0 687 20887 17411 - 1 4 6 2 20.6 68.00 0 850 0 0 0 1.000 0 0.808 0 0 20209 0 687 20896 17408 - 1 4 6 3 20.7 68.00 0 850 0 0 0 1.000 0 0.807 0 0 20180 0 686 20866 17381 - 1 4 6 4 20.9 68.00 0 850 0 0 0 1.000 0 0.805 0 0 20117 0 684 20801 17321 - 1 4 6 5 21.0 68.00 0 850 0 0 0 1.000 0 0.804 0 0 20099 0 683 20783 17304 - 1 4 7 0 21.0 68.00 0 850 0 0 0 1.000 0 0.788 0 0 19711 0 670 20381 16967 - 1 4 7 1 21.0 68.00 0 850 0 0 0 1.000 0 0.781 0 0 19528 0 664 20192 16805 - 1 4 7 2 21.0 68.00 0 850 0 0 0 1.000 0 0.773 0 0 19330 0 657 19987 16635 - 1 4 7 3 21.0 68.00 0 850 0 0 0 1.000 0 0.760 0 0 18990 0 646 19635 16341 - 1 4 7 4 21.0 68.00 0 850 0 0 0 1.000 0 0.738 0 0 18441 0 627 19067 15866 - 1 4 7 5 21.0 68.00 0 850 0 0 0 1.000 0 0.715 0 0 17883 0 608 18491 15382 - ------------------------------------------------------------------------------- -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 123 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - 1 4 8 0 21.2 68.00 0 850 0 0 0 1.000 0 0.653 0 0 16332 0 555 16887 14044 - 1 4 8 1 21.3 68.00 0 850 0 0 0 1.000 0 0.612 0 0 15304 0 520 15824 13161 - 1 4 8 2 21.5 68.00 0 850 0 0 0 1.000 0 0.569 0 0 14228 0 484 14712 12228 - 1 4 8 3 21.6 68.00 0 850 0 0 0 1.000 0 0.531 0 0 13280 0 451 13732 11418 - 1 4 8 4 21.8 68.00 0 850 0 0 0 1.000 0 0.506 0 0 12640 0 430 13070 10863 - 1 4 8 5 21.9 68.00 0 850 0 0 0 1.000 0 0.477 0 0 11930 0 406 12335 10243 - 1 4 9 0 22.5 68.00 0 850 0 0 0 1.000 0 0.462 0 0 11562 0 393 11955 9927 - 1 4 9 1 23.0 68.00 0 850 0 0 0 1.000 0 0.437 0 0 10921 0 371 11293 9372 - 1 4 9 2 23.5 68.00 0 850 0 0 0 1.000 0 0.412 0 0 10293 0 350 10643 8830 - 1 4 9 3 24.1 68.00 0 850 0 0 0 1.000 0 0.388 0 0 9701 0 330 10031 8318 - 1 4 9 4 24.6 68.00 0 850 0 0 0 1.000 0 0.367 0 0 9177 0 312 9489 7865 - 1 4 9 5 25.2 68.00 0 850 0 0 0 1.000 0 0.347 0 0 8663 0 295 8958 7421 - 1 4 10 0 25.4 68.00 0 850 0 0 0 1.000 0 0.352 0 0 8810 0 300 9110 7545 - 1 4 10 1 25.7 68.00 0 850 0 0 0 1.000 0 0.337 0 0 8430 0 287 8716 7216 - 1 4 10 2 26.0 68.00 0 850 0 0 0 1.000 0 0.323 0 0 8073 0 274 8348 6910 - 1 4 10 3 26.2 68.00 0 850 0 0 0 1.000 0 0.309 0 0 7715 0 262 7978 6602 - 1 4 10 4 26.5 68.00 0 850 0 0 0 1.000 0 0.296 0 0 7402 0 252 7653 6332 - 1 4 10 5 26.8 68.00 0 850 0 0 0 1.000 0 0.283 0 0 7075 0 241 7316 6052 - 1 4 11 0 26.5 68.00 0 850 0 0 0 1.000 0 0.297 0 0 7434 0 253 7686 6358 - 1 4 11 1 26.2 68.00 0 850 0 0 0 1.000 0 0.297 0 0 7435 0 253 7688 6358 - 1 4 11 2 26.0 68.00 0 850 0 0 0 1.000 0 0.294 0 0 7348 0 250 7598 6285 - 1 4 11 3 25.7 68.00 0 850 0 0 0 1.000 0 0.295 0 0 7372 0 251 7623 6307 - 1 4 11 4 25.4 68.00 0 850 0 0 0 1.000 0 0.293 0 0 7325 0 249 7574 6267 - 1 4 11 5 25.2 68.00 0 850 0 0 0 1.000 0 0.295 0 0 7367 0 250 7617 6305 - 1 4 12 0 25.3 68.00 0 850 0 0 0 1.000 0 0.288 0 0 7188 0 244 7432 6153 - 1 4 12 1 25.5 68.00 0 850 0 0 0 1.000 0 0.283 0 0 7064 0 240 7304 6049 - 1 4 12 2 25.7 68.00 0 850 0 0 0 1.000 0 0.274 0 0 6844 0 233 7077 5857 - 1 4 12 3 25.9 68.00 0 850 0 0 0 1.000 0 0.268 0 0 6707 0 228 6935 5744 - 1 4 12 4 26.1 68.00 0 850 0 0 0 1.000 0 0.263 0 0 6576 0 224 6799 5631 - 1 4 12 5 26.2 68.00 0 850 0 0 0 1.000 0 0.256 0 0 6405 0 218 6622 5482 - 1 4 13 0 26.3 68.00 0 850 0 0 0 1.000 0 0.237 0 0 5925 0 201 6126 5071 - 1 4 13 1 26.3 68.00 0 850 0 0 0 1.000 0 0.235 0 0 5867 0 199 6066 5023 - 1 4 13 2 26.3 68.00 0 850 0 0 0 1.000 0 0.233 0 0 5829 0 198 6027 4991 - 1 4 13 3 26.4 68.00 0 850 0 0 0 1.000 0 0.233 0 0 5823 0 198 6021 4987 - 1 4 13 4 26.4 68.00 0 850 0 0 0 1.000 0 0.234 0 0 5844 0 199 6043 5007 - 1 4 13 5 26.4 68.00 0 850 0 0 0 1.000 0 0.235 0 0 5878 0 200 6077 5037 - 1 4 14 0 26.5 68.00 0 850 0 0 0 1.000 0 0.215 0 0 5385 0 183 5568 4616 - 1 4 14 1 26.6 68.00 0 850 0 0 0 1.000 0 0.210 0 0 5261 0 179 5440 4510 - 1 4 14 2 26.7 68.00 0 850 0 0 0 1.000 0 0.210 0 0 5246 0 178 5424 4502 - 1 4 14 3 26.8 68.00 0 850 0 0 0 1.000 0 0.211 0 0 5267 0 179 5446 4524 - 1 4 14 4 26.9 68.00 0 850 0 0 0 1.000 0 0.213 0 0 5337 0 181 5519 4587 - 1 4 14 5 27.0 68.00 0 850 0 0 0 1.000 0 0.220 0 0 5508 0 187 5695 4735 - 1 4 15 0 26.9 68.00 0 850 0 0 0 1.000 0 0.217 0 0 5414 0 184 5598 4656 - 1 4 15 1 26.9 68.00 0 850 0 0 0 1.000 0 0.219 0 0 5481 0 186 5668 4716 - 1 4 15 2 26.9 68.00 0 850 0 0 0 1.000 0 0.223 0 0 5584 0 190 5773 4804 - 1 4 15 3 26.8 68.00 0 850 0 0 0 1.000 0 0.232 0 0 5806 0 197 6004 4995 - 1 4 15 4 26.8 68.00 0 850 0 0 0 1.000 0 0.246 0 0 6160 0 209 6370 5298 - 1 4 15 5 26.8 68.00 0 850 0 0 0 1.000 0 0.262 0 0 6552 0 223 6775 5634 - 1 4 16 0 26.6 68.00 0 850 0 0 0 1.000 0 0.283 0 0 7066 0 240 7306 6075 - 1 4 16 1 26.5 68.00 0 850 0 0 0 1.000 0 0.301 0 0 7514 0 255 7770 6463 - 1 4 16 2 26.3 68.00 0 850 0 0 0 1.000 0 0.322 0 0 8052 0 274 8326 6929 - 1 4 16 3 26.2 68.00 0 850 0 0 0 1.000 0 0.343 0 0 8576 0 292 8867 7379 - 1 4 16 4 26.0 68.00 0 850 0 0 0 1.000 0 0.364 0 0 9109 0 310 9419 7840 - 1 4 16 5 25.9 68.00 0 850 0 0 0 1.000 0 0.392 0 0 9789 0 333 10122 8429 - ------------------------------------------------------------------------------- -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 124 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - 1 4 17 0 25.7 68.00 0 850 0 0 0 1.000 0 0.456 0 0 11407 0 388 11795 9820 - 1 4 17 1 25.5 68.00 0 850 0 0 0 1.000 0 0.472 0 0 11791 0 401 12192 10154 - 1 4 17 2 25.3 68.00 0 850 0 0 0 1.000 0 0.490 0 0 12258 0 417 12675 10566 - 1 4 17 3 25.2 68.00 0 850 0 0 0 1.000 0 0.505 0 0 12618 0 429 13047 10875 - 1 4 17 4 25.0 68.00 0 850 0 0 0 1.000 0 0.518 0 0 12955 0 440 13396 11169 - 1 4 17 5 24.8 68.00 0 850 0 0 0 1.000 0 0.534 0 0 13350 0 454 13803 11514 - 1 4 18 0 24.6 68.00 0 850 0 0 0 1.000 0 0.530 0 0 13242 0 450 13692 11417 - 1 4 18 1 24.5 68.00 0 850 0 0 0 1.000 0 0.539 0 0 13471 0 458 13929 11617 - 1 4 18 2 24.3 68.00 0 850 0 0 0 1.000 0 0.551 0 0 13786 0 469 14254 11889 - 1 4 18 3 24.2 68.00 0 850 0 0 0 1.000 0 0.560 0 0 14007 0 476 14483 12075 - 1 4 18 4 24.0 68.00 0 850 0 0 0 1.000 0 0.568 0 0 14199 0 483 14682 12242 - 1 4 18 5 23.9 68.00 0 850 0 0 0 1.000 0 0.576 0 0 14392 0 489 14882 12410 - 1 4 19 0 23.8 68.00 0 850 0 0 0 1.000 0 0.579 0 0 14473 0 492 14965 12481 - 1 4 19 1 23.6 68.00 0 850 0 0 0 1.000 0 0.585 0 0 14616 0 497 15113 12597 - 1 4 19 2 23.5 68.00 0 850 0 0 0 1.000 0 0.590 0 0 14750 0 501 15251 12709 - 1 4 19 3 23.3 68.00 0 850 0 0 0 1.000 0 0.595 0 0 14872 0 506 15378 12813 - 1 4 19 4 23.1 68.00 0 850 0 0 0 1.000 0 0.599 0 0 14986 0 509 15495 12910 - 1 4 19 5 23.0 68.00 0 850 0 0 0 1.000 0 0.611 0 0 15286 0 520 15805 13166 - 1 4 20 0 23.0 68.00 0 850 0 0 0 1.000 0 0.619 0 0 15475 0 526 16001 13319 - 1 4 20 1 23.0 68.00 0 850 0 0 0 1.000 0 0.623 0 0 15564 0 529 16093 13389 - 1 4 20 2 23.0 68.00 0 850 0 0 0 1.000 0 0.626 0 0 15645 0 532 16177 13453 - 1 4 20 3 23.0 68.00 0 850 0 0 0 1.000 0 0.629 0 0 15721 0 534 16255 13512 - 1 4 20 4 23.0 68.00 0 850 0 0 0 1.000 0 0.631 0 0 15777 0 536 16313 13553 - 1 4 20 5 23.0 68.00 0 850 0 0 0 1.000 0 0.633 0 0 15823 0 538 16361 13585 - 1 4 21 0 23.0 68.00 0 850 0 0 0 1.000 0 0.647 0 0 16165 0 550 16715 13873 - 1 4 21 1 23.1 68.00 0 850 0 0 0 1.000 0 0.650 0 0 16257 0 553 16810 13946 - 1 4 21 2 23.1 68.00 0 850 0 0 0 1.000 0 0.654 0 0 16341 0 556 16897 14013 - 1 4 21 3 23.1 68.00 0 850 0 0 0 1.000 0 0.657 0 0 16424 0 558 16983 14079 - 1 4 21 4 23.1 68.00 0 850 0 0 0 1.000 0 0.660 0 0 16506 0 561 17067 14143 - 1 4 21 5 23.2 68.00 0 850 0 0 0 1.000 0 0.669 0 0 16733 0 569 17302 14331 - 1 4 22 0 23.5 68.00 0 850 0 0 0 1.000 0 0.690 0 0 17251 0 586 17838 14771 - 1 4 22 1 23.8 68.00 0 850 0 0 0 1.000 0 0.691 0 0 17275 0 587 17862 14787 - 1 4 22 2 24.2 68.00 0 850 0 0 0 1.000 0 0.694 0 0 17342 0 590 17931 14843 - 1 4 22 3 24.5 68.00 0 850 0 0 0 1.000 0 0.691 0 0 17279 0 587 17866 14779 - 1 4 22 4 24.8 68.00 0 850 0 0 0 1.000 0 0.692 0 0 17310 0 588 17899 14807 - 1 4 22 5 25.2 68.00 0 850 0 0 0 1.000 0 0.688 0 0 17195 0 585 17780 14701 - 1 4 23 0 25.3 68.00 0 850 0 0 0 1.000 0 0.703 0 0 17570 0 597 18167 15022 - 1 4 23 1 25.5 68.00 0 850 0 0 0 1.000 0 0.703 0 0 17571 0 597 18168 15019 - 1 4 23 2 25.6 68.00 0 850 0 0 0 1.000 0 0.703 0 0 17564 0 597 18161 15006 - 1 4 23 3 25.8 68.00 0 850 0 0 0 1.000 0 0.699 0 0 17480 0 594 18074 14924 - 1 4 23 4 25.9 68.00 0 850 0 0 0 1.000 0 0.698 0 0 17451 0 593 18045 14899 - 1 4 23 5 26.1 68.00 0 850 0 0 0 1.000 0 0.696 0 0 17404 0 592 17996 14854 + 1 4 0 0 18.7 68.00 0 0 0 0 0 1.000 0 0.816 0 0 20392 0 693 21085 17580 + 1 4 0 1 18.6 68.00 0 0 0 0 0 1.000 0 0.819 0 0 20477 0 696 21174 17658 + 1 4 0 2 18.5 68.00 0 0 0 0 0 1.000 0 0.825 0 0 20624 0 701 21325 17795 + 1 4 0 3 18.4 68.00 0 0 0 0 0 1.000 0 0.829 0 0 20716 0 704 21420 17863 + 1 4 0 4 18.3 68.00 0 0 0 0 0 1.000 0 0.832 0 0 20795 0 707 21502 17928 + 1 4 0 5 18.1 68.00 0 0 0 0 0 1.000 0 0.834 0 0 20856 0 709 21565 17984 + 1 4 1 0 18.4 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20905 0 711 21616 18030 + 1 4 1 1 18.7 68.00 0 0 0 0 0 1.000 0 0.837 0 0 20930 0 712 21642 18044 + 1 4 1 2 19.0 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20900 0 710 21610 18005 + 1 4 1 3 19.3 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20900 0 711 21611 18004 + 1 4 1 4 19.6 68.00 0 0 0 0 0 1.000 0 0.833 0 0 20820 0 708 21527 17925 + 1 4 1 5 19.9 68.00 0 0 0 0 0 1.000 0 0.832 0 0 20805 0 707 21512 17909 + 1 4 2 0 20.0 68.00 0 0 0 0 0 1.000 0 0.832 0 0 20799 0 707 21506 17896 + 1 4 2 1 20.0 68.00 0 0 0 0 0 1.000 0 0.834 0 0 20841 0 709 21550 17941 + 1 4 2 2 20.0 68.00 0 0 0 0 0 1.000 0 0.835 0 0 20874 0 710 21583 17978 + 1 4 2 3 20.1 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20906 0 711 21617 18014 + 1 4 2 4 20.1 68.00 0 0 0 0 0 1.000 0 0.837 0 0 20928 0 711 21639 18043 + 1 4 2 5 20.1 68.00 0 0 0 0 0 1.000 0 0.838 0 0 20941 0 712 21653 18068 + 1 4 3 0 20.2 68.00 0 0 0 0 0 1.000 0 0.836 0 0 20904 0 711 21615 18040 + 1 4 3 1 20.4 68.00 0 0 0 0 0 1.000 0 0.837 0 0 20916 0 711 21627 18052 + 1 4 3 2 20.5 68.00 0 0 0 0 0 1.000 0 0.837 0 0 20923 0 711 21635 18063 + 1 4 3 3 20.6 68.00 0 0 0 0 0 1.000 0 0.833 0 0 20823 0 708 21531 17980 + 1 4 3 4 20.7 68.00 0 0 0 0 0 1.000 0 0.833 0 0 20824 0 708 21532 17985 + 1 4 3 5 20.8 68.00 0 0 0 0 0 1.000 0 0.828 0 0 20711 0 704 21415 17888 + 1 4 4 0 20.7 68.00 0 0 0 0 0 1.000 0 0.829 0 0 20727 0 705 21432 17903 + 1 4 4 1 20.5 68.00 0 0 0 0 0 1.000 0 0.830 0 0 20757 0 706 21462 17928 + 1 4 4 2 20.4 68.00 0 0 0 0 0 1.000 0 0.832 0 0 20793 0 707 21500 17960 + 1 4 4 3 20.2 68.00 0 0 0 0 0 1.000 0 0.835 0 0 20887 0 710 21597 18043 + 1 4 4 4 20.1 68.00 0 0 0 0 0 1.000 0 0.837 0 0 20935 0 712 21647 18086 + 1 4 4 5 19.9 68.00 0 0 0 0 0 1.000 0 0.839 0 0 20982 0 713 21696 18129 + 1 4 5 0 20.0 68.00 0 0 0 0 0 1.000 0 0.826 0 0 20660 0 702 21362 17852 + 1 4 5 1 20.0 68.00 0 0 0 0 0 1.000 0 0.826 0 0 20642 0 702 21343 17837 + 1 4 5 2 20.0 68.00 0 0 0 0 0 1.000 0 0.825 0 0 20624 0 701 21325 17821 + 1 4 5 3 20.1 68.00 0 0 0 0 0 1.000 0 0.824 0 0 20599 0 700 21300 17800 + 1 4 5 4 20.1 68.00 0 0 0 0 0 1.000 0 0.823 0 0 20575 0 699 21275 17775 + 1 4 5 5 20.1 68.00 0 0 0 0 0 1.000 0 0.823 0 0 20570 0 699 21270 17756 + 1 4 6 0 20.3 68.00 0 0 0 0 0 1.000 0 0.809 0 0 20234 0 688 20922 17451 + 1 4 6 1 20.4 68.00 0 0 0 0 0 1.000 0 0.808 0 0 20200 0 687 20887 17411 + 1 4 6 2 20.6 68.00 0 0 0 0 0 1.000 0 0.808 0 0 20209 0 687 20896 17408 + 1 4 6 3 20.7 68.00 0 0 0 0 0 1.000 0 0.807 0 0 20180 0 686 20866 17381 + 1 4 6 4 20.9 68.00 0 0 0 0 0 1.000 0 0.805 0 0 20117 0 684 20801 17321 + 1 4 6 5 21.0 68.00 0 0 0 0 0 1.000 0 0.804 0 0 20099 0 683 20783 17304 + 1 4 7 0 21.0 68.00 0 0 0 0 0 1.000 0 0.788 0 0 19711 0 670 20381 16967 + 1 4 7 1 21.0 68.00 0 0 0 0 0 1.000 0 0.781 0 0 19528 0 664 20192 16805 + 1 4 7 2 21.0 68.00 0 0 0 0 0 1.000 0 0.773 0 0 19330 0 657 19987 16635 + 1 4 7 3 21.0 68.00 0 0 0 0 0 1.000 0 0.760 0 0 18990 0 646 19635 16341 + 1 4 7 4 21.0 68.00 0 0 0 0 0 1.000 0 0.738 0 0 18441 0 627 19067 15866 + 1 4 7 5 21.0 68.00 0 0 0 0 0 1.000 0 0.715 0 0 17883 0 608 18491 15382 + +------------------------------------------------------------------------------ +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 124 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + + 1 4 8 0 21.2 68.00 0 0 0 0 0 1.000 0 0.653 0 0 16332 0 555 16887 14044 + 1 4 8 1 21.3 68.00 0 0 0 0 0 1.000 0 0.612 0 0 15304 0 520 15824 13161 + 1 4 8 2 21.5 68.00 0 0 0 0 0 1.000 0 0.569 0 0 14228 0 484 14712 12228 + 1 4 8 3 21.6 68.00 0 0 0 0 0 1.000 0 0.531 0 0 13280 0 451 13732 11418 + 1 4 8 4 21.8 68.00 0 0 0 0 0 1.000 0 0.506 0 0 12640 0 430 13070 10863 + 1 4 8 5 21.9 68.00 0 0 0 0 0 1.000 0 0.477 0 0 11930 0 406 12335 10243 + 1 4 9 0 22.5 68.00 0 0 0 0 0 1.000 0 0.462 0 0 11562 0 393 11955 9927 + 1 4 9 1 23.0 68.00 0 0 0 0 0 1.000 0 0.437 0 0 10921 0 371 11293 9372 + 1 4 9 2 23.5 68.00 0 0 0 0 0 1.000 0 0.412 0 0 10293 0 350 10643 8830 + 1 4 9 3 24.1 68.00 0 0 0 0 0 1.000 0 0.388 0 0 9701 0 330 10031 8318 + 1 4 9 4 24.6 68.00 0 0 0 0 0 1.000 0 0.367 0 0 9177 0 312 9489 7865 + 1 4 9 5 25.2 68.00 0 0 0 0 0 1.000 0 0.347 0 0 8663 0 295 8958 7421 + 1 4 10 0 25.4 68.00 0 0 0 0 0 1.000 0 0.352 0 0 8810 0 300 9110 7545 + 1 4 10 1 25.7 68.00 0 0 0 0 0 1.000 0 0.337 0 0 8430 0 287 8716 7216 + 1 4 10 2 26.0 68.00 0 0 0 0 0 1.000 0 0.323 0 0 8073 0 274 8348 6910 + 1 4 10 3 26.2 68.00 0 0 0 0 0 1.000 0 0.309 0 0 7715 0 262 7978 6602 + 1 4 10 4 26.5 68.00 0 0 0 0 0 1.000 0 0.296 0 0 7402 0 252 7653 6332 + 1 4 10 5 26.8 68.00 0 0 0 0 0 1.000 0 0.283 0 0 7075 0 241 7316 6052 + 1 4 11 0 26.5 68.00 0 0 0 0 0 1.000 0 0.297 0 0 7434 0 253 7686 6358 + 1 4 11 1 26.2 68.00 0 0 0 0 0 1.000 0 0.297 0 0 7435 0 253 7688 6358 + 1 4 11 2 26.0 68.00 0 0 0 0 0 1.000 0 0.294 0 0 7348 0 250 7598 6285 + 1 4 11 3 25.7 68.00 0 0 0 0 0 1.000 0 0.295 0 0 7372 0 251 7623 6307 + 1 4 11 4 25.4 68.00 0 0 0 0 0 1.000 0 0.293 0 0 7325 0 249 7574 6267 + 1 4 11 5 25.2 68.00 0 0 0 0 0 1.000 0 0.295 0 0 7367 0 250 7617 6305 + 1 4 12 0 25.3 68.00 0 0 0 0 0 1.000 0 0.288 0 0 7188 0 244 7432 6153 + 1 4 12 1 25.5 68.00 0 0 0 0 0 1.000 0 0.283 0 0 7064 0 240 7304 6049 + 1 4 12 2 25.7 68.00 0 0 0 0 0 1.000 0 0.274 0 0 6844 0 233 7077 5857 + 1 4 12 3 25.9 68.00 0 0 0 0 0 1.000 0 0.268 0 0 6707 0 228 6935 5744 + 1 4 12 4 26.1 68.00 0 0 0 0 0 1.000 0 0.263 0 0 6576 0 224 6799 5631 + 1 4 12 5 26.2 68.00 0 0 0 0 0 1.000 0 0.256 0 0 6405 0 218 6622 5482 + 1 4 13 0 26.3 68.00 0 0 0 0 0 1.000 0 0.237 0 0 5925 0 201 6126 5071 + 1 4 13 1 26.3 68.00 0 0 0 0 0 1.000 0 0.235 0 0 5867 0 199 6066 5023 + 1 4 13 2 26.3 68.00 0 0 0 0 0 1.000 0 0.233 0 0 5829 0 198 6027 4991 + 1 4 13 3 26.4 68.00 0 0 0 0 0 1.000 0 0.233 0 0 5823 0 198 6021 4987 + 1 4 13 4 26.4 68.00 0 0 0 0 0 1.000 0 0.234 0 0 5844 0 199 6043 5007 + 1 4 13 5 26.4 68.00 0 0 0 0 0 1.000 0 0.235 0 0 5878 0 200 6077 5037 + 1 4 14 0 26.5 68.00 0 0 0 0 0 1.000 0 0.215 0 0 5385 0 183 5568 4616 + 1 4 14 1 26.6 68.00 0 0 0 0 0 1.000 0 0.210 0 0 5261 0 179 5440 4510 + 1 4 14 2 26.7 68.00 0 0 0 0 0 1.000 0 0.210 0 0 5246 0 178 5424 4502 + 1 4 14 3 26.8 68.00 0 0 0 0 0 1.000 0 0.211 0 0 5267 0 179 5446 4524 + 1 4 14 4 26.9 68.00 0 0 0 0 0 1.000 0 0.213 0 0 5337 0 181 5519 4587 + 1 4 14 5 27.0 68.00 0 0 0 0 0 1.000 0 0.220 0 0 5508 0 187 5695 4735 + 1 4 15 0 26.9 68.00 0 0 0 0 0 1.000 0 0.217 0 0 5414 0 184 5598 4656 + 1 4 15 1 26.9 68.00 0 0 0 0 0 1.000 0 0.219 0 0 5481 0 186 5668 4716 + 1 4 15 2 26.9 68.00 0 0 0 0 0 1.000 0 0.223 0 0 5584 0 190 5773 4804 + 1 4 15 3 26.8 68.00 0 0 0 0 0 1.000 0 0.232 0 0 5806 0 197 6004 4995 + 1 4 15 4 26.8 68.00 0 0 0 0 0 1.000 0 0.246 0 0 6160 0 209 6370 5298 + 1 4 15 5 26.8 68.00 0 0 0 0 0 1.000 0 0.262 0 0 6552 0 223 6775 5634 + 1 4 16 0 26.6 68.00 0 0 0 0 0 1.000 0 0.283 0 0 7066 0 240 7306 6075 + 1 4 16 1 26.5 68.00 0 0 0 0 0 1.000 0 0.301 0 0 7514 0 255 7770 6463 + 1 4 16 2 26.3 68.00 0 0 0 0 0 1.000 0 0.322 0 0 8052 0 274 8326 6929 + 1 4 16 3 26.2 68.00 0 0 0 0 0 1.000 0 0.343 0 0 8576 0 292 8867 7379 + 1 4 16 4 26.0 68.00 0 0 0 0 0 1.000 0 0.364 0 0 9109 0 310 9419 7840 + 1 4 16 5 25.9 68.00 0 0 0 0 0 1.000 0 0.392 0 0 9789 0 333 10122 8429 + +------------------------------------------------------------------------------ +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 125 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + + 1 4 17 0 25.7 68.00 0 0 0 0 0 1.000 0 0.456 0 0 11407 0 388 11795 9820 + 1 4 17 1 25.5 68.00 0 0 0 0 0 1.000 0 0.472 0 0 11791 0 401 12192 10154 + 1 4 17 2 25.3 68.00 0 0 0 0 0 1.000 0 0.490 0 0 12258 0 417 12675 10566 + 1 4 17 3 25.2 68.00 0 0 0 0 0 1.000 0 0.505 0 0 12618 0 429 13047 10875 + 1 4 17 4 25.0 68.00 0 0 0 0 0 1.000 0 0.518 0 0 12955 0 440 13396 11169 + 1 4 17 5 24.8 68.00 0 0 0 0 0 1.000 0 0.534 0 0 13350 0 454 13803 11514 + 1 4 18 0 24.6 68.00 0 0 0 0 0 1.000 0 0.530 0 0 13242 0 450 13692 11417 + 1 4 18 1 24.5 68.00 0 0 0 0 0 1.000 0 0.539 0 0 13471 0 458 13929 11617 + 1 4 18 2 24.3 68.00 0 0 0 0 0 1.000 0 0.551 0 0 13786 0 469 14254 11889 + 1 4 18 3 24.2 68.00 0 0 0 0 0 1.000 0 0.560 0 0 14007 0 476 14483 12075 + 1 4 18 4 24.0 68.00 0 0 0 0 0 1.000 0 0.568 0 0 14199 0 483 14682 12242 + 1 4 18 5 23.9 68.00 0 0 0 0 0 1.000 0 0.576 0 0 14392 0 489 14882 12410 + 1 4 19 0 23.8 68.00 0 0 0 0 0 1.000 0 0.579 0 0 14473 0 492 14965 12481 + 1 4 19 1 23.6 68.00 0 0 0 0 0 1.000 0 0.585 0 0 14616 0 497 15113 12597 + 1 4 19 2 23.5 68.00 0 0 0 0 0 1.000 0 0.590 0 0 14750 0 501 15251 12709 + 1 4 19 3 23.3 68.00 0 0 0 0 0 1.000 0 0.595 0 0 14872 0 506 15378 12813 + 1 4 19 4 23.1 68.00 0 0 0 0 0 1.000 0 0.599 0 0 14986 0 509 15495 12910 + 1 4 19 5 23.0 68.00 0 0 0 0 0 1.000 0 0.611 0 0 15286 0 520 15805 13166 + 1 4 20 0 23.0 68.00 0 0 0 0 0 1.000 0 0.619 0 0 15475 0 526 16001 13319 + 1 4 20 1 23.0 68.00 0 0 0 0 0 1.000 0 0.623 0 0 15564 0 529 16093 13389 + 1 4 20 2 23.0 68.00 0 0 0 0 0 1.000 0 0.626 0 0 15645 0 532 16177 13453 + 1 4 20 3 23.0 68.00 0 0 0 0 0 1.000 0 0.629 0 0 15721 0 534 16255 13512 + 1 4 20 4 23.0 68.00 0 0 0 0 0 1.000 0 0.631 0 0 15777 0 536 16313 13553 + 1 4 20 5 23.0 68.00 0 0 0 0 0 1.000 0 0.633 0 0 15823 0 538 16361 13585 + 1 4 21 0 23.0 68.00 0 0 0 0 0 1.000 0 0.647 0 0 16165 0 550 16715 13873 + 1 4 21 1 23.1 68.00 0 0 0 0 0 1.000 0 0.650 0 0 16257 0 553 16810 13946 + 1 4 21 2 23.1 68.00 0 0 0 0 0 1.000 0 0.654 0 0 16341 0 556 16897 14013 + 1 4 21 3 23.1 68.00 0 0 0 0 0 1.000 0 0.657 0 0 16424 0 558 16983 14079 + 1 4 21 4 23.1 68.00 0 0 0 0 0 1.000 0 0.660 0 0 16506 0 561 17067 14143 + 1 4 21 5 23.2 68.00 0 0 0 0 0 1.000 0 0.669 0 0 16733 0 569 17302 14331 + 1 4 22 0 23.5 68.00 0 0 0 0 0 1.000 0 0.690 0 0 17251 0 586 17838 14771 + 1 4 22 1 23.8 68.00 0 0 0 0 0 1.000 0 0.691 0 0 17275 0 587 17862 14787 + 1 4 22 2 24.2 68.00 0 0 0 0 0 1.000 0 0.694 0 0 17342 0 590 17931 14843 + 1 4 22 3 24.5 68.00 0 0 0 0 0 1.000 0 0.691 0 0 17279 0 587 17866 14779 + 1 4 22 4 24.8 68.00 0 0 0 0 0 1.000 0 0.692 0 0 17310 0 588 17899 14807 + 1 4 22 5 25.2 68.00 0 0 0 0 0 1.000 0 0.688 0 0 17195 0 585 17780 14701 + 1 4 23 0 25.3 68.00 0 0 0 0 0 1.000 0 0.703 0 0 17570 0 597 18167 15022 + 1 4 23 1 25.5 68.00 0 0 0 0 0 1.000 0 0.703 0 0 17571 0 597 18168 15019 + 1 4 23 2 25.6 68.00 0 0 0 0 0 1.000 0 0.703 0 0 17564 0 597 18161 15006 + 1 4 23 3 25.8 68.00 0 0 0 0 0 1.000 0 0.699 0 0 17480 0 594 18074 14924 + 1 4 23 4 25.9 68.00 0 0 0 0 0 1.000 0 0.698 0 0 17451 0 593 18045 14899 + 1 4 23 5 26.1 68.00 0 0 0 0 0 1.000 0 0.696 0 0 17404 0 592 17996 14854 Subhourly User-defined Report, Mon 05-Jan mon day Hr Sh ToDb Tzn UnMet capfl COPfl loadF runF spdF PLF runFAux COPpl qComp qAux qDef qFan qTot qsZn --- --- -- -- ---- ----- ----- ----- ----- ----- ----- ----- ----- ------- ----- ------ ------ ------ ------ ------ ------ - 1 5 0 0 26.1 68.00 0 850 0 0 0 1.000 0 0.707 0 0 17676 0 601 18277 15079 - 1 5 0 1 26.1 68.00 0 850 0 0 0 1.000 0 0.709 0 0 17717 0 602 18319 15105 - 1 5 0 2 26.1 68.00 0 850 0 0 0 1.000 0 0.712 0 0 17791 0 605 18395 15167 - 1 5 0 3 26.2 68.00 0 850 0 0 0 1.000 0 0.715 0 0 17869 0 607 18476 15231 - 1 5 0 4 26.2 68.00 0 850 0 0 0 1.000 0 0.718 0 0 17952 0 610 18562 15296 - 1 5 0 5 26.2 68.00 0 850 0 0 0 1.000 0 0.721 0 0 18025 0 613 18638 15354 - ------------------------------------------------------------------------------- -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 125 - - - -CZ16 Dual Fuel ------------------------------------------------------------------------------- - - 1 5 1 0 26.6 68.00 0 850 0 0 0 1.000 0 0.720 0 0 17995 0 612 18607 15325 - 1 5 1 1 26.9 68.00 0 850 0 0 0 1.000 0 0.719 0 0 17977 0 611 18588 15304 - 1 5 1 2 27.2 68.00 0 850 0 0 0 1.000 0 0.716 0 0 17900 0 609 18508 15230 - 1 5 1 3 27.6 68.00 0 850 0 0 0 1.000 0 0.714 0 0 17861 0 607 18469 15191 - 1 5 1 4 27.9 68.00 0 850 0 0 0 1.000 0 0.711 0 0 17772 0 604 18376 15106 - 1 5 1 5 28.2 68.00 0 850 0 0 0 1.000 0 0.709 0 0 17721 0 602 18324 15055 - 1 5 2 0 28.4 68.00 0 850 0 0 0 1.000 0 0.708 0 0 17693 0 601 18294 15024 - 1 5 2 1 28.5 68.00 0 850 0 0 0 1.000 0 0.708 0 0 17702 0 602 18303 15026 - 1 5 2 2 28.7 68.00 0 850 0 0 0 1.000 0 0.708 0 0 17710 0 602 18312 15027 - 1 5 2 3 28.8 68.00 0 850 0 0 0 1.000 0 0.706 0 0 17643 0 600 18243 14958 - 1 5 2 4 29.0 68.00 0 850 0 0 0 1.000 0 0.706 0 0 17640 0 600 18240 14957 - 1 5 2 5 29.1 68.00 0 850 0 0 0 1.000 0 0.706 0 0 17646 0 600 18246 14957 - 1 5 3 0 29.5 68.00 0 850 0 0 0 1.000 0 0.700 0 0 17488 0 595 18083 14815 - 1 5 3 1 29.8 68.00 0 850 0 0 0 1.000 0 0.699 0 0 17472 0 594 18066 14803 - 1 5 3 2 30.1 68.00 0 850 0 0 0 1.000 0 0.693 0 0 17333 0 589 17922 14675 - 1 5 3 3 30.4 68.00 0 850 0 0 0 1.000 0 0.692 0 0 17307 0 588 17895 14655 - 1 5 3 4 30.8 68.00 0 850 0 0 0 1.000 0 0.686 0 0 17153 0 583 17736 14517 - 1 5 3 5 31.1 68.00 0 850 0 0 0 1.000 0 0.685 0 0 17123 0 582 17705 14494 - 1 5 4 0 31.3 68.00 0 850 0 0 0 1.000 0 0.680 0 0 16991 0 578 17568 14375 - 1 5 4 1 31.5 68.00 0 850 0 0 0 1.000 0 0.680 0 0 16989 0 578 17567 14378 - 1 5 4 2 31.6 68.00 0 850 0 0 0 1.000 0 0.675 0 0 16879 0 574 17453 14280 - 1 5 4 3 31.8 68.00 0 850 0 0 0 1.000 0 0.676 0 0 16888 0 574 17462 14292 - 1 5 4 4 32.0 68.00 0 850 0 0 0 1.000 0 0.671 0 0 16774 0 570 17345 14193 - 1 5 4 5 32.2 68.00 0 850 0 0 0 1.000 0 0.672 0 0 16791 0 571 17362 14212 - 1 5 5 0 32.3 68.00 0 850 0 0 0 1.000 0 0.656 0 0 16397 0 557 16954 13876 - 1 5 5 1 32.4 68.00 0 850 0 0 0 1.000 0 0.650 0 0 16257 0 553 16810 13751 - 1 5 5 2 32.5 68.00 0 850 0 0 0 1.000 0 0.650 0 0 16240 0 552 16792 13745 - 1 5 5 3 32.7 68.00 0 850 0 0 0 1.000 0 0.649 0 0 16220 0 551 16772 13728 - 1 5 5 4 32.8 68.00 0 850 0 0 0 1.000 0 0.647 0 0 16169 0 550 16719 13680 - 1 5 5 5 32.9 68.00 0 850 0 0 0 1.000 0 0.642 0 0 16052 0 546 16598 13574 - 1 5 6 0 32.8 68.00 0 850 0 0 0 1.000 0 0.628 0 0 15697 0 534 16230 13282 - 1 5 6 1 32.7 68.00 0 850 0 0 0 1.000 0 0.627 0 0 15665 0 533 16198 13259 - 1 5 6 2 32.5 68.00 0 850 0 0 0 1.000 0 0.624 0 0 15602 0 530 16133 13205 - 1 5 6 3 32.4 68.00 0 850 0 0 0 1.000 0 0.623 0 0 15574 0 529 16104 13179 - 1 5 6 4 32.3 68.00 0 850 0 0 0 1.000 0 0.622 0 0 15559 0 529 16088 13166 - 1 5 6 5 32.2 68.00 0 850 0 0 0 1.000 0 0.622 0 0 15549 0 529 16078 13158 - 1 5 7 0 32.4 68.00 0 850 0 0 0 1.000 0 0.605 0 0 15125 0 514 15639 12798 - 1 5 7 1 32.6 68.00 0 850 0 0 0 1.000 0 0.598 0 0 14958 0 509 15466 12654 - 1 5 7 2 32.8 68.00 0 850 0 0 0 1.000 0 0.589 0 0 14719 0 500 15220 12447 - 1 5 7 3 33.0 68.00 0 850 0 0 0 1.000 0 0.574 0 0 14358 0 488 14846 12137 - 1 5 7 4 33.2 68.00 0 850 0 0 0 1.000 0 0.553 0 0 13828 0 470 14298 11683 - 1 5 7 5 33.4 68.00 0 850 0 0 0 1.000 0 0.531 0 0 13277 0 451 13729 11213 - 1 5 8 0 33.9 68.00 0 850 0 0 0 1.000 0 0.480 0 0 11989 0 408 12397 10118 - 1 5 8 1 34.3 68.00 0 850 0 0 0 1.000 0 0.438 0 0 10942 0 372 11314 9232 - 1 5 8 2 34.8 68.00 0 850 0 0 0 1.000 0 0.394 0 0 9861 0 335 10196 8315 + 1 5 0 0 26.1 68.00 0 0 0 0 0 1.000 0 0.707 0 0 17676 0 601 18277 15079 + 1 5 0 1 26.1 68.00 0 0 0 0 0 1.000 0 0.709 0 0 17717 0 602 18319 15105 + 1 5 0 2 26.1 68.00 0 0 0 0 0 1.000 0 0.712 0 0 17791 0 605 18395 15167 + 1 5 0 3 26.2 68.00 0 0 0 0 0 1.000 0 0.715 0 0 17869 0 607 18476 15231 + 1 5 0 4 26.2 68.00 0 0 0 0 0 1.000 0 0.718 0 0 17952 0 610 18562 15296 + 1 5 0 5 26.2 68.00 0 0 0 0 0 1.000 0 0.721 0 0 18025 0 613 18638 15354 + +------------------------------------------------------------------------------ +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 126 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ + + 1 5 1 0 26.6 68.00 0 0 0 0 0 1.000 0 0.720 0 0 17995 0 612 18607 15325 + 1 5 1 1 26.9 68.00 0 0 0 0 0 1.000 0 0.719 0 0 17977 0 611 18588 15304 + 1 5 1 2 27.2 68.00 0 0 0 0 0 1.000 0 0.716 0 0 17900 0 609 18508 15230 + 1 5 1 3 27.6 68.00 0 0 0 0 0 1.000 0 0.714 0 0 17861 0 607 18469 15191 + 1 5 1 4 27.9 68.00 0 0 0 0 0 1.000 0 0.711 0 0 17772 0 604 18376 15106 + 1 5 1 5 28.2 68.00 0 0 0 0 0 1.000 0 0.709 0 0 17721 0 602 18324 15055 + 1 5 2 0 28.4 68.00 0 0 0 0 0 1.000 0 0.708 0 0 17693 0 601 18294 15024 + 1 5 2 1 28.5 68.00 0 0 0 0 0 1.000 0 0.708 0 0 17702 0 602 18303 15026 + 1 5 2 2 28.7 68.00 0 0 0 0 0 1.000 0 0.708 0 0 17710 0 602 18312 15027 + 1 5 2 3 28.8 68.00 0 0 0 0 0 1.000 0 0.706 0 0 17643 0 600 18243 14958 + 1 5 2 4 29.0 68.00 0 0 0 0 0 1.000 0 0.706 0 0 17640 0 600 18240 14957 + 1 5 2 5 29.1 68.00 0 0 0 0 0 1.000 0 0.706 0 0 17646 0 600 18246 14957 + 1 5 3 0 29.5 68.00 0 0 0 0 0 1.000 0 0.700 0 0 17488 0 595 18083 14815 + 1 5 3 1 29.8 68.00 0 0 0 0 0 1.000 0 0.699 0 0 17472 0 594 18066 14803 + 1 5 3 2 30.1 68.00 0 0 0 0 0 1.000 0 0.693 0 0 17333 0 589 17922 14675 + 1 5 3 3 30.4 68.00 0 0 0 0 0 1.000 0 0.692 0 0 17307 0 588 17895 14655 + 1 5 3 4 30.8 68.00 0 0 0 0 0 1.000 0 0.686 0 0 17153 0 583 17736 14517 + 1 5 3 5 31.1 68.00 0 0 0 0 0 1.000 0 0.685 0 0 17123 0 582 17705 14494 + 1 5 4 0 31.3 68.00 0 0 0 0 0 1.000 0 0.680 0 0 16991 0 578 17568 14375 + 1 5 4 1 31.5 68.00 0 0 0 0 0 1.000 0 0.680 0 0 16989 0 578 17567 14378 + 1 5 4 2 31.6 68.00 0 0 0 0 0 1.000 0 0.675 0 0 16879 0 574 17453 14280 + 1 5 4 3 31.8 68.00 0 0 0 0 0 1.000 0 0.676 0 0 16888 0 574 17462 14292 + 1 5 4 4 32.0 68.00 0 0 0 0 0 1.000 0 0.671 0 0 16774 0 570 17345 14193 + 1 5 4 5 32.2 68.00 0 0 0 0 0 1.000 0 0.672 0 0 16791 0 571 17362 14212 + 1 5 5 0 32.3 68.00 0 0 0 0 0 1.000 0 0.656 0 0 16397 0 557 16954 13876 + 1 5 5 1 32.4 68.00 0 0 0 0 0 1.000 0 0.650 0 0 16257 0 553 16810 13751 + 1 5 5 2 32.5 68.00 0 0 0 0 0 1.000 0 0.650 0 0 16240 0 552 16792 13745 + 1 5 5 3 32.7 68.00 0 0 0 0 0 1.000 0 0.649 0 0 16220 0 551 16772 13728 + 1 5 5 4 32.8 68.00 0 0 0 0 0 1.000 0 0.647 0 0 16169 0 550 16719 13680 + 1 5 5 5 32.9 68.00 0 0 0 0 0 1.000 0 0.642 0 0 16052 0 546 16598 13574 + 1 5 6 0 32.8 68.00 0 0 0 0 0 1.000 0 0.628 0 0 15697 0 534 16230 13282 + 1 5 6 1 32.7 68.00 0 0 0 0 0 1.000 0 0.627 0 0 15665 0 533 16198 13259 + 1 5 6 2 32.5 68.00 0 0 0 0 0 1.000 0 0.624 0 0 15602 0 530 16133 13205 + 1 5 6 3 32.4 68.00 0 0 0 0 0 1.000 0 0.623 0 0 15574 0 529 16104 13179 + 1 5 6 4 32.3 68.00 0 0 0 0 0 1.000 0 0.622 0 0 15559 0 529 16088 13166 + 1 5 6 5 32.2 68.00 0 0 0 0 0 1.000 0 0.622 0 0 15549 0 529 16078 13158 + 1 5 7 0 32.4 68.00 0 0 0 0 0 1.000 0 0.605 0 0 15125 0 514 15639 12798 + 1 5 7 1 32.6 68.00 0 0 0 0 0 1.000 0 0.598 0 0 14958 0 509 15466 12654 + 1 5 7 2 32.8 68.00 0 0 0 0 0 1.000 0 0.589 0 0 14719 0 500 15220 12447 + 1 5 7 3 33.0 68.00 0 0 0 0 0 1.000 0 0.574 0 0 14358 0 488 14846 12137 + 1 5 7 4 33.2 68.00 0 0 0 0 0 1.000 0 0.553 0 0 13828 0 470 14298 11683 + 1 5 7 5 33.4 68.00 0 0 0 0 0 1.000 0 0.531 0 0 13277 0 451 13729 11213 + 1 5 8 0 33.9 68.00 0 0 0 0 0 1.000 0 0.480 0 0 11989 0 408 12397 10118 + 1 5 8 1 34.3 68.00 0 0 0 0 0 1.000 0 0.438 0 0 10942 0 372 11314 9232 + 1 5 8 2 34.8 68.00 0 0 0 0 0 1.000 0 0.394 0 0 9861 0 335 10196 8315 1 5 8 3 35.2 68.00 0 15676 3.469 0.601 0.601 1.000 0.955 0 3.313 7968 0 946 511 9425 7500 1 5 8 4 35.7 68.00 0 15776 3.482 0.566 0.566 1.000 0.951 0 3.312 7542 0 914 481 8937 7106 1 5 8 5 36.1 68.00 0 15876 3.495 0.529 0.529 1.000 0.947 0 3.310 7071 0 873 449 8393 6674 @@ -7935,7 +7998,7 @@ CZ16 Dual Fuel 1 5 9 5 38.1 68.00 0 16317 3.553 0.337 0.337 1.000 0.925 0 3.288 4592 0 613 286 5491 4378 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 126 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 127 @@ -7998,7 +8061,7 @@ CZ16 Dual Fuel 1 5 18 5 37.9 68.00 0 16277 3.548 0.640 0.640 1.000 0.960 0 3.404 8723 0 1157 544 10424 8491 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 127 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 128 @@ -8061,7 +8124,7 @@ Subhourly User-defined Report, Tue 06-Jan 1 6 2 5 37.2 68.00 0 16116 3.527 0.820 0.820 1.000 0.980 0 3.456 11090 0 1431 697 13218 10821 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 128 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 129 @@ -8086,20 +8149,20 @@ CZ16 Dual Fuel 1 6 5 3 36.5 68.00 0 15956 3.506 0.810 0.810 1.000 0.979 0 3.431 10876 0 1363 689 12928 10610 1 6 5 4 36.0 68.00 0 15836 3.490 0.821 0.821 1.000 0.980 0 3.420 10964 0 1344 698 13005 10663 1 6 5 5 35.4 68.00 0 15716 3.474 0.843 0.843 1.000 0.982 0 3.412 11190 0 1340 716 13246 10872 - 1 6 6 0 34.8 68.00 0 850 0 0 0 1.000 0 0.495 0 0 12384 0 421 12805 10641 - 1 6 6 1 34.3 68.00 0 850 0 0 0 1.000 0 0.493 0 0 12315 0 419 12734 10590 - 1 6 6 2 33.7 68.00 0 850 0 0 0 1.000 0 0.484 0 0 12100 0 411 12511 10397 - 1 6 6 3 33.1 68.00 0 850 0 0 0 1.000 0 0.482 0 0 12041 0 409 12450 10345 - 1 6 6 4 32.6 68.00 0 850 0 0 0 1.000 0 0.478 0 0 11939 0 406 12345 10252 - 1 6 6 5 32.0 68.00 0 850 0 0 0 1.000 0 0.481 0 0 12037 0 409 12446 10327 - 1 6 7 0 32.4 68.00 0 850 0 0 0 1.000 0 0.507 0 0 12671 0 431 13102 10826 - 1 6 7 1 32.7 68.00 0 850 0 0 0 1.000 0 0.510 0 0 12744 0 433 13177 10886 - 1 6 7 2 33.1 68.00 0 850 0 0 0 1.000 0 0.511 0 0 12767 0 434 13202 10906 - 1 6 7 3 33.4 68.00 0 850 0 0 0 1.000 0 0.512 0 0 12810 0 435 13246 10944 - 1 6 7 4 33.8 68.00 0 850 0 0 0 1.000 0 0.509 0 0 12719 0 432 13152 10859 - 1 6 7 5 34.2 68.00 0 850 0 0 0 1.000 0 0.510 0 0 12739 0 433 13172 10885 - 1 6 8 0 34.5 68.00 0 850 0 0 0 1.000 0 0.506 0 0 12638 0 430 13068 10798 - 1 6 8 1 34.8 68.00 0 850 0 0 0 1.000 0 0.508 0 0 12700 0 432 13132 10856 + 1 6 6 0 34.8 68.00 0 0 0 0 0 1.000 0 0.495 0 0 12384 0 421 12805 10641 + 1 6 6 1 34.3 68.00 0 0 0 0 0 1.000 0 0.493 0 0 12315 0 419 12734 10590 + 1 6 6 2 33.7 68.00 0 0 0 0 0 1.000 0 0.484 0 0 12100 0 411 12511 10397 + 1 6 6 3 33.1 68.00 0 0 0 0 0 1.000 0 0.482 0 0 12041 0 409 12450 10345 + 1 6 6 4 32.6 68.00 0 0 0 0 0 1.000 0 0.478 0 0 11939 0 406 12345 10252 + 1 6 6 5 32.0 68.00 0 0 0 0 0 1.000 0 0.481 0 0 12037 0 409 12446 10327 + 1 6 7 0 32.4 68.00 0 0 0 0 0 1.000 0 0.507 0 0 12671 0 431 13102 10826 + 1 6 7 1 32.7 68.00 0 0 0 0 0 1.000 0 0.510 0 0 12744 0 433 13177 10886 + 1 6 7 2 33.1 68.00 0 0 0 0 0 1.000 0 0.511 0 0 12767 0 434 13202 10906 + 1 6 7 3 33.4 68.00 0 0 0 0 0 1.000 0 0.512 0 0 12810 0 435 13246 10944 + 1 6 7 4 33.8 68.00 0 0 0 0 0 1.000 0 0.509 0 0 12719 0 432 13152 10859 + 1 6 7 5 34.2 68.00 0 0 0 0 0 1.000 0 0.510 0 0 12739 0 433 13172 10885 + 1 6 8 0 34.5 68.00 0 0 0 0 0 1.000 0 0.506 0 0 12638 0 430 13068 10798 + 1 6 8 1 34.8 68.00 0 0 0 0 0 1.000 0 0.508 0 0 12700 0 432 13132 10856 1 6 8 2 35.2 68.00 0 15656 3.466 0.840 0.840 1.000 0.982 0 3.404 11125 0 1316 714 13155 10719 1 6 8 3 35.5 68.00 0 15729 3.476 0.861 0.861 1.000 0.984 0 3.421 11438 0 1373 732 13542 11056 1 6 8 4 35.8 68.00 0 15803 3.485 0.875 0.875 1.000 0.986 0 3.437 11669 0 1421 744 13834 11313 @@ -8124,7 +8187,7 @@ CZ16 Dual Fuel 1 6 11 5 39.9 68.00 0 16717 3.606 0.568 0.568 1.000 0.951 0 3.431 7893 0 1124 483 9499 7810 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 129 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 130 @@ -8180,38 +8243,38 @@ CZ16 Dual Fuel 1 6 19 4 35.4 68.00 0 15703 3.472 0.716 0.716 1.000 0.968 0 3.361 9497 0 1134 608 11240 9172 1 6 19 5 35.1 68.00 0 15636 3.463 0.736 0.736 1.000 0.970 0 3.360 9733 0 1147 625 11505 9386 1 6 20 0 35.0 68.00 0 15623 3.462 0.744 0.744 1.000 0.971 0 3.362 9836 0 1156 632 11624 9477 - 1 6 20 1 34.9 68.00 0 850 0 0 0 1.000 0 0.442 0 0 11056 0 376 11432 9462 - 1 6 20 2 34.9 68.00 0 850 0 0 0 1.000 0 0.439 0 0 10977 0 373 11351 9391 - 1 6 20 3 34.8 68.00 0 850 0 0 0 1.000 0 0.429 0 0 10714 0 364 11078 9155 - 1 6 20 4 34.8 68.00 0 850 0 0 0 1.000 0 0.416 0 0 10405 0 354 10759 8885 - 1 6 20 5 34.7 68.00 0 850 0 0 0 1.000 0 0.402 0 0 10052 0 342 10394 8578 + 1 6 20 1 34.9 68.00 0 0 0 0 0 1.000 0 0.442 0 0 11056 0 376 11432 9462 + 1 6 20 2 34.9 68.00 0 0 0 0 0 1.000 0 0.439 0 0 10977 0 373 11351 9391 + 1 6 20 3 34.8 68.00 0 0 0 0 0 1.000 0 0.429 0 0 10714 0 364 11078 9155 + 1 6 20 4 34.8 68.00 0 0 0 0 0 1.000 0 0.416 0 0 10405 0 354 10759 8885 + 1 6 20 5 34.7 68.00 0 0 0 0 0 1.000 0 0.402 0 0 10052 0 342 10394 8578 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 130 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 131 CZ16 Dual Fuel ------------------------------------------------------------------------------ - 1 6 21 0 34.2 68.00 0 850 0 0 0 1.000 0 0.432 0 0 10797 0 367 11164 9169 - 1 6 21 1 33.8 68.00 0 850 0 0 0 1.000 0 0.435 0 0 10867 0 369 11236 9218 - 1 6 21 2 33.3 68.00 0 850 0 0 0 1.000 0 0.436 0 0 10901 0 371 11271 9243 - 1 6 21 3 32.9 68.00 0 850 0 0 0 1.000 0 0.455 0 0 11383 0 387 11770 9647 - 1 6 21 4 32.5 68.00 0 850 0 0 0 1.000 0 0.460 0 0 11494 0 391 11885 9730 - 1 6 21 5 32.0 68.00 0 850 0 0 0 1.000 0 0.461 0 0 11520 0 392 11912 9746 - 1 6 22 0 31.7 68.00 0 850 0 0 0 1.000 0 0.488 0 0 12201 0 415 12616 10319 - 1 6 22 1 31.4 68.00 0 850 0 0 0 1.000 0 0.495 0 0 12379 0 421 12800 10463 - 1 6 22 2 31.1 68.00 0 850 0 0 0 1.000 0 0.513 0 0 12815 0 436 13251 10829 - 1 6 22 3 30.8 68.00 0 850 0 0 0 1.000 0 0.520 0 0 12995 0 442 13436 10973 - 1 6 22 4 30.5 68.00 0 850 0 0 0 1.000 0 0.527 0 0 13178 0 448 13626 11124 - 1 6 22 5 30.2 68.00 0 850 0 0 0 1.000 0 0.533 0 0 13337 0 453 13790 11254 - 1 6 23 0 30.2 68.00 0 850 0 0 0 1.000 0 0.561 0 0 14016 0 476 14492 11824 - 1 6 23 1 30.2 68.00 0 850 0 0 0 1.000 0 0.568 0 0 14204 0 483 14687 11980 - 1 6 23 2 30.2 68.00 0 850 0 0 0 1.000 0 0.576 0 0 14397 0 489 14886 12142 - 1 6 23 3 30.2 68.00 0 850 0 0 0 1.000 0 0.582 0 0 14559 0 495 15054 12277 - 1 6 23 4 30.2 68.00 0 850 0 0 0 1.000 0 0.585 0 0 14622 0 497 15119 12324 - 1 6 23 5 30.2 68.00 0 850 0 0 0 1.000 0 0.589 0 0 14734 0 501 15235 12422 + 1 6 21 0 34.2 68.00 0 0 0 0 0 1.000 0 0.432 0 0 10797 0 367 11164 9169 + 1 6 21 1 33.8 68.00 0 0 0 0 0 1.000 0 0.435 0 0 10867 0 369 11236 9218 + 1 6 21 2 33.3 68.00 0 0 0 0 0 1.000 0 0.436 0 0 10901 0 371 11271 9243 + 1 6 21 3 32.9 68.00 0 0 0 0 0 1.000 0 0.455 0 0 11383 0 387 11770 9647 + 1 6 21 4 32.5 68.00 0 0 0 0 0 1.000 0 0.460 0 0 11494 0 391 11885 9730 + 1 6 21 5 32.0 68.00 0 0 0 0 0 1.000 0 0.461 0 0 11520 0 392 11912 9746 + 1 6 22 0 31.7 68.00 0 0 0 0 0 1.000 0 0.488 0 0 12201 0 415 12616 10319 + 1 6 22 1 31.4 68.00 0 0 0 0 0 1.000 0 0.495 0 0 12379 0 421 12800 10463 + 1 6 22 2 31.1 68.00 0 0 0 0 0 1.000 0 0.513 0 0 12815 0 436 13251 10829 + 1 6 22 3 30.8 68.00 0 0 0 0 0 1.000 0 0.520 0 0 12995 0 442 13436 10973 + 1 6 22 4 30.5 68.00 0 0 0 0 0 1.000 0 0.527 0 0 13178 0 448 13626 11124 + 1 6 22 5 30.2 68.00 0 0 0 0 0 1.000 0 0.533 0 0 13337 0 453 13790 11254 + 1 6 23 0 30.2 68.00 0 0 0 0 0 1.000 0 0.561 0 0 14016 0 476 14492 11824 + 1 6 23 1 30.2 68.00 0 0 0 0 0 1.000 0 0.568 0 0 14204 0 483 14687 11980 + 1 6 23 2 30.2 68.00 0 0 0 0 0 1.000 0 0.576 0 0 14397 0 489 14886 12142 + 1 6 23 3 30.2 68.00 0 0 0 0 0 1.000 0 0.582 0 0 14559 0 495 15054 12277 + 1 6 23 4 30.2 68.00 0 0 0 0 0 1.000 0 0.585 0 0 14622 0 497 15119 12324 + 1 6 23 5 30.2 68.00 0 0 0 0 0 1.000 0 0.589 0 0 14734 0 501 15235 12422 @@ -8250,7 +8313,7 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 131 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 132 @@ -8313,7 +8376,7 @@ Subhourly User-defined Report, Fri 14-Aug 8 14 7 5 77.2 77.60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 132 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 133 @@ -8376,7 +8439,7 @@ CZ16 Dual Fuel 8 14 16 5 85.3 78.00 0 0 0 0.634 0.634 1.000 1.000 0 0 -10773 0 0 540 -10233 -8408 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 133 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 134 @@ -8439,7 +8502,7 @@ Subhourly User-defined Report, Sat 15-Aug 8 15 0 5 73.4 77.94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 134 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 135 @@ -8502,7 +8565,7 @@ CZ16 Dual Fuel 8 15 9 5 82.6 78.00 0 0 0 0.271 0.271 1.000 1.000 0 0 -4644 0 0 230 -4414 -3790 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 135 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 136 @@ -8565,7 +8628,7 @@ CZ16 Dual Fuel 8 15 18 5 83.7 78.00 0 0 0 0.566 0.566 1.000 1.000 0 0 -9712 0 0 482 -9230 -7533 ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 136 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 137 @@ -8607,7 +8670,33 @@ CZ16 Dual Fuel ! Log for Run 005: -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console + + + + + + + + + + + + + + + + + + + +------------------------------------------------------------------------------ +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 138 + + + +CZ16 Dual Fuel +------------------------------------------------------------------------------ @@ -8619,6 +8708,9 @@ Input for Run 005: rsCtrlAuxH = Cycle rsASHPLockOutT = 35 + ALTER REPORT SYSRESMO + rpTitle = "RSYSRES Res Cycle LO35" + RUN @@ -8627,8 +8719,42 @@ Input for Run 005: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 137 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 139 @@ -8637,21 +8763,21 @@ CZ16 Dual Fuel -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console run(s) done: Mon 20-Dec-21 10:36:25 am +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console run(s) done: Wed 29-Dec-21 2:17:05 pm -! Executable: c:\users\nkruis\projects\cse\msvc\cse.exe -! 20-Dec-21 10:32 am (VS 14.29 2902016 bytes) (HPWH 1.16.0) -! Command line: -x! -b -t1 ashp_dfng -! Input file: C:\Users\nkruis\projects\cse\test\ashp_dfng.cse -! Report file: C:\Users\nkruis\projects\cse\test\ashp_dfng.rep +! Executable: d:\cse\msvc\cse.exe +! 29-Dec-21 1:56 pm (VS 14.29 2902016 bytes) (HPWH 1.16.0) +! Command line: -x! -t1 ashp_dfng +! Input file: D:\cse\test\ashp_dfng.cse +! Report file: D:\cse\test\ashp_dfng.rep ! Timing info -- -! Input: Time = 0.36 Calls = 5 T/C = 0.0730 +! Input: Time = 0.22 Calls = 5 T/C = 0.0438 ! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 16.38 Calls = 5 T/C = 3.2764 -! Reports: Time = 0.07 Calls = 5 T/C = 0.0132 -! Total: Time = 16.82 Calls = 1 T/C = 16.8160 +! Simulation: Time = 11.08 Calls = 5 T/C = 2.2154 +! Reports: Time = 0.05 Calls = 5 T/C = 0.0092 +! Total: Time = 11.36 Calls = 1 T/C = 11.3550 @@ -8691,5 +8817,5 @@ CZ16 Dual Fuel ------------------------------------------------------------------------------ -! ashp_dfng 005 Mon 20-Dec-21 10:36:22 am Page 138 +! ashp_dfng 005 Wed 29-Dec-21 2:17:02 pm Page 140 \ No newline at end of file diff --git a/test/ref/HERV.rep b/test/ref/HERV.rep index 3c120e88f..9e3fcb5ad 100644 --- a/test/ref/HERV.rep +++ b/test/ref/HERV.rep @@ -60,7 +60,7 @@ MySys Characteristics ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 1 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 1 @@ -73,41 +73,41 @@ Monthly Energy Use, meter "SysMtr" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 3.301 0 3.190 0 0 0 0 0 0.0851 0 0.0262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Feb 1.956 0 1.882 0 0 0 0 0 0.0502 0 0.0236 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Mar 1.230 .00306 1.168 0 0 0 0 .00086 0.0312 0 0.0262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Apr 0.961 0.0365 0.867 0 0 0 0 .00936 0.0231 0 0.0253 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -May 0.345 0.164 0.112 0 0 0 0 0.0399 .00298 0 0.0262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Jun 0.404 0.305 0 0 0 0 0 0.0735 0 0 0.0253 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Jul 0.563 0.434 0 0 0 0 0 0.102 0 0 0.0262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Aug 0.472 0.361 0 0 0 0 0 0.0856 0 0 0.0262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Sep 0.370 0.278 0 0 0 0 0 0.0667 0 0 0.0253 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Oct 0.216 0.0315 0.146 0 0 0 0 .00816 .00389 0 0.0262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Nov 2.140 0 2.059 0 0 0 0 0 0.0549 0 0.0253 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -Dec 3.290 0 3.179 0 0 0 0 0 0.0848 0 0.0262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - -Yr 15.248 1.613 12.604 0 0 0 0 0.386 0.336 0 0.308 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - - - - - - - - - - - - - - - +Jan 3.376 0 3.190 0 0 0 0 0 0.0851 0 0.0262 0.0744 0 0 0 0 0 0 0 0 0 0 0 0 0 +Feb 2.024 0 1.882 0 0 0 0 0 0.0502 0 0.0236 0.0672 0 0 0 0 0 0 0 0 0 0 0 0 0 +Mar 1.304 .00306 1.168 0 0 0 0 .00086 0.0312 0 0.0262 0.0747 0 0 0 0 0 0 0 0 0 0 0 0 0 +Apr 1.036 0.0365 0.867 0 0 0 0 .00936 0.0231 0 0.0253 0.0745 0 0 0 0 0 0 0 0 0 0 0 0 0 +May 0.358 0.164 0.112 0 0 0 0 0.0399 .00298 0 0.0262 0.0135 0 0 0 0 0 0 0 0 0 0 0 0 0 +Jun 0.433 0.305 0 0 0 0 0 0.0735 0 0 0.0253 0.0288 0 0 0 0 0 0 0 0 0 0 0 0 0 +Jul 0.601 0.434 0 0 0 0 0 0.102 0 0 0.0262 0.0379 0 0 0 0 0 0 0 0 0 0 0 0 0 +Aug 0.505 0.361 0 0 0 0 0 0.0856 0 0 0.0262 0.0330 0 0 0 0 0 0 0 0 0 0 0 0 0 +Sep 0.398 0.278 0 0 0 0 0 0.0667 0 0 0.0253 0.0278 0 0 0 0 0 0 0 0 0 0 0 0 0 +Oct 0.297 0.0315 0.146 0 0 0 0 .00816 .00389 0 0.0262 0.0810 0 0 0 0 0 0 0 0 0 0 0 0 0 +Nov 2.212 0 2.059 0 0 0 0 0 0.0549 0 0.0253 0.0720 0 0 0 0 0 0 0 0 0 0 0 0 0 +Dec 3.364 0 3.179 0 0 0 0 0 0.0848 0 0.0262 0.0744 0 0 0 0 0 0 0 0 0 0 0 0 0 +Yr 15.907 1.613 12.604 0 0 0 0 0.386 0.336 0 0.308 0.659 0 0 0 0 0 0 0 0 0 0 0 0 0 +RSYSRES Furn + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 23.501 0 2265.0 0 0 85.089 2350.1 0 0 0 0 0 3190.1 0 0 74.400 3264.5 0 0 0 85.089 0 85.089 0 0 0 0 0 0 0 2344.1 0 0 0 0 0 + Feb 13.868 0 1336.5 0 0 50.210 1386.8 0 0 0 0 0 1882.5 0 0 67.200 1949.7 0 0 0 50.210 0 50.210 0 0 0 0 0 0 0 1381.4 0 0 0 0 0 + Mar 9.599 0 829.49 0 0 31.162 860.65 -14.23 -1.280 0.859 -13.37 0 1168.3 0 0 74.400 1242.7 0 0 0 31.162 0.177 31.339 3.059 0.859 0.0955 4.014 0 0 0 855.09 0 -13.34 -1.280 0 0 + Apr 17.201 0 615.45 0 0 23.121 638.57 -145.3 -20.20 9.365 -136.0 0 866.83 0 0 72.000 938.83 0 0 0 23.121 0 23.121 36.466 9.365 2.457 48.287 0 0 0 634.23 0 -135.2 -20.20 0 0 + May 46.902 0 79.374 0 0 2.982 82.356 -605.7 -77.45 39.896 -565.8 0 111.79 0 0 0 111.79 0 0 0 2.982 0 2.982 163.74 39.896 13.512 217.15 0 0 0 81.248 0 -562.0 -77.45 0 0 + Jun 84.932 0 0 0 0 0 0 -1110 -134.8 73.536 -1036 0 0 0 0 0 0 0 0 0 0 0 0 305.23 73.536 28.798 407.56 0 0 0 0 0 -1030 -134.8 0 0 + Jul 117.92 0 0 0 0 0 0 -1521 -177.1 102.10 -1419 0 0 0 0 0 0 0 0 0 0 0 0 434.42 102.10 37.943 574.46 0 0 0 0 0 -1410 -177.1 0 0 + Aug 98.848 0 0 0 0 0 0 -1297 -115.3 85.586 -1211 0 0 0 0 0 0 0 0 0 0 0 0 360.60 85.586 33.030 479.22 0 0 0 0 0 -1205 -115.3 0 0 + Sep 76.991 0 0 0 0 0 0 -1041 -32.58 66.661 -974.1 0 0 0 0 0 0 0 0 0 0 0 0 278.41 66.661 27.843 372.92 0 0 0 0 0 -971.9 -32.58 0 0 + Oct 10.501 0 103.67 0 0 3.895 107.57 -134.1 -4.783 8.161 -125.9 0 146.02 0 0 74.400 220.42 0 0 0 3.895 0 3.895 31.501 8.161 6.551 46.213 0 0 0 106.90 0 -125.4 -4.783 0 0 + Nov 15.172 0 1462.2 0 0 54.932 1517.2 0 0 0 0 0 2059.5 0 0 72.000 2131.5 0 0 0 54.932 0 54.932 0 0 0 0 0 0 0 1511.4 0 0 0 0 0 + Dec 23.416 0 2256.8 0 0 84.781 2341.6 0 0 0 0 0 3178.6 0 0 74.400 3253.0 0 0 0 84.781 0 84.781 0 0 0 0 0 0 0 2335.6 0 0 0 0 0 + Yr 538.85 0 8948.5 0 0 336.17 9284.7 -5868 -563.5 386.17 -5481 0 12604 0 0 508.80 13112 0 0 0 336.17 0.177 336.35 1613.4 386.17 150.23 2149.8 0 0 0 9250.0 0 -5452 -563.5 0 0 @@ -123,7 +123,7 @@ Yr 15.248 1.613 12.604 0 0 0 0 0.386 0.336 0 0.308 ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 2 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 2 @@ -186,7 +186,7 @@ Mass Clg Area: 400.000 UNom: 0.05737 tc: 0 subhrly: ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 3 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 3 @@ -249,7 +249,7 @@ IzXfer Z1-SysO Zn1: Z1 Zn2: -- UAconst: 0 NVctrl: AirNetSysAir ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 4 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 4 @@ -260,7 +260,7 @@ IzXfer Z1-SysO Zn1: Z1 Zn2: -- UAconst: 0 NVctrl: AirNetSysAir ! Log for Run 001: -! CSE 0.893.0 for Win32 console +! CSE 0.899.0+vsashp.852a8bf.9 for Win32 console @@ -312,7 +312,7 @@ IzXfer Z1-SysO Zn1: Z1 Zn2: -- UAconst: 0 NVctrl: AirNetSysAir ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 5 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 5 @@ -375,7 +375,7 @@ Input for Run 001: DELETE HOLIDAY "M L King Day" ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 6 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 6 @@ -438,7 +438,7 @@ Input for Run 001: layer lrThk = .1 lrMat = FoamInsul ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 7 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 7 @@ -501,7 +501,7 @@ Input for Run 001: ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 8 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 8 @@ -564,7 +564,7 @@ Input for Run 001: znTH = select( $dsDay==1, 68, @weather.taDbAvg07 >60., 60, default hourval(65,65,65,65,65,65,65,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,68,65)) ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 9 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 9 @@ -627,7 +627,7 @@ Input for Run 001: rsFChg = 1 //ACM charge factor (default = 1) ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 10 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 10 @@ -637,7 +637,9 @@ Input for Run 001: rsFSize = 1 //ACM size factor (default = 1) rsAFUE =.71 - rsFanPwrH = 0.58 //W/cfm (default = 0.365) + rsFanPwrH = 0.58 //W/cfm (default = 0.365) + rsParFuel = $month >= 10 || $month <= 4 ? 100 : 0 + rsParElec = ($tdbo > 80)*40 METER SysMtr; @@ -658,6 +660,60 @@ Input for Run 001: # #endif REPORT rpType=MTR rpMeter = SysMtr rpFreq=Month + +# #define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ +# RXCOL colHead=WhenHead colVal=when colWid=3 \ +# RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ +# RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ +# RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ +# RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ +# RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ +# RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ +# RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ +# RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ +# RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ +# RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ +# RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ +# RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ +# RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ + +------------------------------------------------------------------------------ +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 11 + + + +1Z Test +------------------------------------------------------------------------------ + +# RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ +# RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ +# RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ +# RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ +# RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ +# RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + + REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYSRES Furn" + SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.001,3) + REPORT rpType=UDT rpFreq=YEAR rpHeader = No + SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.001,3) + REPORT rpType=ZDD rpZone="Z1" @@ -681,6 +737,13 @@ Input for Run 001: + + + + + + + @@ -690,7 +753,7 @@ Input for Run 001: ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 11 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 12 @@ -699,21 +762,21 @@ Input for Run 001: -! CSE 0.893.0 for Win32 console run(s) done: Tue 22-Jun-21 11:14:11 am +! CSE 0.899.0+vsashp.852a8bf.9 for Win32 console run(s) done: Tue 07-Dec-21 5:20:37 pm ! Executable: d:\cse\msvc\cse.exe -! 22-Jun-21 10:50 am (VS 14.29 2640384 bytes) (HPWH 1.14.0+master.7e0a1c1.4) +! 07-Dec-21 5:14 pm (VS 14.29 1592320 bytes) (HPWH 1.15.0+master.99d395c.25) ! Command line: -x! -t1 herv ! Input file: D:\cse\test\herv.cse ! Report file: D:\cse\test\herv.rep ! Timing info -- -! Input: Time = 0.04 Calls = 1 T/C = 0.0450 +! Input: Time = 0.05 Calls = 1 T/C = 0.0470 ! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 1.09 Calls = 1 T/C = 1.0860 -! Reports: Time = 0.01 Calls = 1 T/C = 0.0110 -! Total: Time = 1.15 Calls = 1 T/C = 1.1470 +! Simulation: Time = 1.33 Calls = 1 T/C = 1.3270 +! Reports: Time = 0.00 Calls = 1 T/C = 0.0040 +! Total: Time = 1.38 Calls = 1 T/C = 1.3800 @@ -753,5 +816,5 @@ Input for Run 001: ------------------------------------------------------------------------------ -! herv 001 Tue 22-Jun-21 11:14:10 am Page 12 +! herv 001 Tue 07-Dec-21 5:20:36 pm Page 13 \ No newline at end of file diff --git a/test/ref/oavtest2.rep b/test/ref/oavtest2.rep index 64230af13..0cbb76b5e 100644 --- a/test/ref/oavtest2.rep +++ b/test/ref/oavtest2.rep @@ -47,20 +47,20 @@ Monthly Energy Use, meter "MtrElec" Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ -Jan 3356.3 0 926.32 752.10 0 0 0 0 229.42 0 0 0 0 360.24 760.81 33.833 193.92 43.463 0 56.157 0 0 0 0 0 -Feb 2386.9 0 468.24 567.54 0 0 0 0 116.98 0 0 0 0 303.51 640.99 30.559 175.16 36.618 0 47.313 0 0 0 0 0 -Mar 1827.3 0 263.91 223.68 0 0 0 0.327 66.559 0 0 0 0 308.63 651.41 33.833 193.66 37.214 0 48.082 0 0 0 0 0 -Apr 1486.7 0 151.63 152.84 0 0 0 1.795 36.808 0 0 0 0 272.45 575.41 32.742 187.67 32.871 0 42.472 0 0 0 0 0 -May 1138.4 0 4.176 6.388 0 0 0 37.445 1.014 0 0 0 0 254.29 537.05 33.833 193.92 30.680 0 39.640 0 0 0 0 0 -Jun 1126.5 30.405 0 0 0 0 0 81.533 0 0 0 0 0 234.37 494.97 32.742 187.67 28.277 0 36.535 0 0 0 0 0 -Jul 1444.9 219.72 0 0 0 0 0 156.24 0 0 0 0 0 248.23 524.26 33.833 193.92 29.950 0 38.697 0 0 0 0 0 -Aug 1423.6 147.22 0 0 0 0 0 145.91 0 0 0 0 0 266.40 562.62 33.833 193.92 32.141 0 41.528 0 0 0 0 0 -Sep 1405.1 94.103 0 0 0 0 0 117.80 0 0 0 0 0 287.10 606.34 32.742 187.67 34.639 0 44.755 0 0 0 0 0 -Oct 1343.6 0 0.407 0.203 0 0 0 17.593 0.0911 0 0 0 0 323.91 684.09 33.833 193.92 39.081 0 50.494 0 0 0 0 0 -Nov 2049.9 0 306.29 295.27 0 0 0 0 75.109 0 0 0 0 340.00 718.52 32.742 187.93 41.047 0 53.036 0 0 0 0 0 -Dec 3286.0 0 831.78 784.51 0 0 0 0 200.73 0 0 0 0 366.30 773.60 33.833 193.92 44.194 0 57.101 0 0 0 0 0 +Jan 3457.1 0 926.32 752.10 0 0 0 0 229.42 0 0 100.86 0 360.24 760.81 33.833 193.92 43.463 0 56.157 0 0 0 0 0 +Feb 2450.4 0 468.24 567.54 0 0 0 0 116.98 0 0 63.466 0 303.51 640.99 30.559 175.16 36.618 0 47.313 0 0 0 0 0 +Mar 1885.0 0 263.91 223.68 0 0 0 0.327 66.559 0 0 57.699 0 308.63 651.41 33.833 193.66 37.214 0 48.082 0 0 0 0 0 +Apr 1544.1 0 151.63 152.84 0 0 0 1.795 36.808 0 0 57.460 0 272.45 575.41 32.742 187.67 32.871 0 42.472 0 0 0 0 0 +May 1170.2 0 4.176 6.388 0 0 0 37.445 1.014 0 0 31.801 0 254.29 537.05 33.833 193.92 30.680 0 39.640 0 0 0 0 0 +Jun 1151.1 30.405 0 0 0 0 0 81.533 0 0 0 24.567 0 234.37 494.97 32.742 187.67 28.277 0 36.535 0 0 0 0 0 +Jul 1470.2 219.72 0 0 0 0 0 156.24 0 0 0 25.386 0 248.23 524.26 33.833 193.92 29.950 0 38.697 0 0 0 0 0 +Aug 1449.0 147.22 0 0 0 0 0 145.91 0 0 0 25.386 0 266.40 562.62 33.833 193.92 32.141 0 41.528 0 0 0 0 0 +Sep 1429.7 94.103 0 0 0 0 0 117.80 0 0 0 24.567 0 287.10 606.34 32.742 187.67 34.639 0 44.755 0 0 0 0 0 +Oct 1375.6 0 0.407 0.203 0 0 0 17.593 0.0911 0 0 31.938 0 323.91 684.09 33.833 193.92 39.081 0 50.494 0 0 0 0 0 +Nov 2111.1 0 306.29 295.27 0 0 0 0 75.109 0 0 61.180 0 340.00 718.52 32.742 187.93 41.047 0 53.036 0 0 0 0 0 +Dec 3371.8 0 831.78 784.51 0 0 0 0 200.73 0 0 85.849 0 366.30 773.60 33.833 193.92 44.194 0 57.101 0 0 0 0 0 -Yr 22275 491.45 2952.7 2782.5 0 0 0 558.64 726.71 0 0 0 0 3565.4 7530.1 398.36 2283.3 430.17 0 555.81 0 0 0 0 0 +Yr 22865 491.45 2952.7 2782.5 0 0 0 558.64 726.71 0 0 590.16 0 3565.4 7530.1 398.36 2283.3 430.17 0 555.81 0 0 0 0 0 @@ -85,6 +85,27 @@ Yr 5251.5 0 0 0 0 0 0 0 0 0 0 +RSYSRES OAV + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 190.09 24.283 3479.8 145.01 607.09 229.42 4461.3 0 0 0 0 0 0 0 0 0 0 926.32 145.01 607.09 229.42 100.86 2008.7 0 0 0 0 0 0 0 3221.7 -107.3 0 0 0 0 + Feb 96.926 18.482 1742.0 105.48 462.06 116.98 2426.5 0 0 0 0 0 0 0 0 0 0 468.24 105.48 462.06 116.98 63.466 1216.2 0 0 0 0 0 0 0 1764.4 -56.08 0 0 0 0 + Mar 60.651 7.316 1016.7 40.768 182.91 66.559 1306.9 0 0 0 0 0 0 0 0 0 0 263.91 40.768 182.91 66.559 56.266 610.41 0 0 0 0 0.327 1.433 1.760 965.49 -28.41 0 0 -21.17 -26.53 + Apr 60.703 4.491 538.76 40.554 112.29 36.808 728.40 0 0 0 0 0 0 0 0 0 0 151.63 40.554 112.29 36.808 52.718 393.99 0 0 0 0 1.795 4.743 6.537 531.40 -17.60 0 0 -165.6 -62.32 + May 165.57 0.194 14.415 1.530 4.857 1.014 21.816 0 0 0 0 0 0 0 0 0 0 4.176 1.530 4.857 1.014 11.124 22.701 0 0 0 0 37.445 20.678 58.123 15.857 -0.536 0 0 -977.8 -265.5 + Jun 257.12 0 0 0 0 0 0 -98.67 -32.47 7.484 -91.18 0 0 0 0 0 0 0 0 0 0 0 0 30.405 7.484 1.356 39.244 74.049 23.212 97.261 0 0 -65.36 -31.16 -1842 -301.6 + Jul 259.27 0 0 0 0 0 0 -783.1 -125.5 54.777 -728.4 0 0 0 0 0 0 0 0 0 0 0 0 219.72 54.777 4.739 279.24 101.46 20.647 122.11 0 0 -539.9 -119.1 -1948 -231.6 + Aug 273.87 0 0 0 0 0 0 -512.0 -114.5 36.799 -475.2 0 0 0 0 0 0 0 0 0 0 0 0 147.22 36.799 4.146 188.16 109.11 21.241 130.35 0 0 -355.7 -110.1 -2119 -261.1 + Sep 271.18 0 0 0 0 0 0 -330.5 -75.18 23.717 -306.8 0 0 0 0 0 0 0 0 0 0 0 0 94.103 23.717 3.519 121.34 94.084 21.048 115.13 0 0 -236.5 -73.39 -2066 -335.3 + Oct 273.62 0 1.219 0.203 0 0.0911 1.513 0 0 0 0 0 0 0 0 0 0 0.407 0.203 0 0.0911 2.986 3.687 0 0 0 0 17.593 28.952 46.545 1.004 -.0651 0 0 -1452 -411.7 + Nov 62.233 9.063 1116.5 68.704 226.56 75.109 1486.9 0 0 0 0 0 0 0 0 0 0 306.29 68.704 226.56 75.109 61.180 737.84 0 0 0 0 0 0 0 1067.5 -39.26 0 0 0 0 + Dec 166.32 22.976 2938.5 210.10 574.41 200.73 3923.7 0 0 0 0 0 0 0 0 0 0 831.78 210.10 574.41 200.73 85.849 1902.9 0 0 0 0 0 0 0 2815.4 -97.26 0 0 0 0 + + Yr 2137.6 86.807 10848 612.35 2170.2 726.71 14357 -1724 -347.6 122.78 -1602 0 0 0 0 0 0 2952.7 612.35 2170.2 726.71 434.45 6896.4 491.45 122.78 13.760 627.98 435.86 141.95 577.82 10383 -346.5 -1197 -333.8 -10592 -1896 + + + Energy (kBtu + into the zone, except E = Energy Consumed) for Thu 03-Dec Hr Tout WBo Wo Tatt Patt Tin Trad Pin Win RHin WBin Slr Cond Surf ItgS ItgL AirL InfVnS ACH HvacS HvacL Htg Clg OAV RunF FfanE HtgE @@ -186,7 +207,7 @@ Energy (kBtu + into the zone, except E = Energy Consumed) for Fri 10-Jul ! Log for Run 001: -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console @@ -1309,6 +1330,7 @@ Input for Run 001: rsCap47 = 20000 rsCap17 = 18000 rsHSPF = 8.7 rsCapAuxH = 25000 + rsParElec = ($tdboHrAv < 50) * 40 + 10 rsFxCapH = 1.5 rsElecMtr = "MtrElec" @@ -1409,6 +1431,51 @@ Input for Run 001: Report rpType=MTR rpMeter=MtrElec rpFreq=MONTH rpBtuSf=1000 Report rpType=MTR rpMeter=MtrFuel rpFreq=MONTH rpBtuSf=1000 +# #define SYSRESCOLS( RXCOL, WhenHead, when, R, F, dp) \ +# RXCOL colHead=WhenHead colVal=when colWid=3 \ +# RXCOL colHead="hrsOn" colVal=R.hrsOn colDec=dp colWid = 6 \ +# RXCOL colHead="hrsOnX" colVal=R.hrsOnAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhPrim" colVal=F*R.qhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="qhDef" colVal=F*R.qhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="qhAux" colVal=F*R.qhAux colDec=dp colWid = 6 \ +# RXCOL colHead="qhFan" colVal=F*R.qhFan colDec=dp colWid = 6 \ +# RXCOL colHead="qhNet" colVal=F*R.qhNet colDec=dp colWid = 6 \ +# RXCOL colHead="qcSen" colVal=F*R.qcSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcLat" colVal=F*R.qcLat colDec=dp colWid = 6 \ +# RXCOL colHead="qcFan" colVal=F*R.qcFan colDec=dp colWid = 6 \ +# RXCOL colHead="qcSenNet" colVal=F*R.qcSenNet colDec=dp colWid = 6 \ +# RXCOL colHead="qvFan" colVal=F*R.qvFan colDec=dp colWid = 6 \ +# RXCOL colHead="fhPrim" colVal=F*R.fhPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="fhDef" colVal=F*R.fhDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="fhAux" colVal=F*R.fhAux colDec=dp colWid = 6 \ +# RXCOL colHead="fhPar" colVal=F*R.fhParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="fhTot" colVal=F*R.fhTot colDec=dp colWid = 6 \ +# RXCOL colHead="ehPrim" colVal=F*R.ehPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ehDef" colVal=F*R.ehDefrost colDec=dp colWid = 6 \ +# RXCOL colHead="ehAux" colVal=F*R.ehAux colDec=dp colWid = 6 \ +# RXCOL colHead="ehFan" colVal=F*R.ehFan colDec=dp colWid = 6 \ +# RXCOL colHead="ehPar" colVal=F*R.ehParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ehTot" colVal=F*R.ehTot colDec=dp colWid = 6 \ +# RXCOL colHead="ecPrim" colVal=F*R.ecPrimary colDec=dp colWid = 6 \ +# RXCOL colHead="ecFan" colVal=F*R.ecFan colDec=dp colWid = 6 \ +# RXCOL colHead="ecPar" colVal=F*R.ecParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="ecTot" colVal=F*R.ecTot colDec=dp colWid = 6 \ +# RXCOL colHead="evFan" colVal=F*R.evFan colDec=dp colWid = 6 \ +# RXCOL colHead="evPar" colVal=F*R.evParasitic colDec=dp colWid = 6 \ +# RXCOL colHead="evTot" colVal=F*R.evTot colDec=dp colWid = 6 \ +# RXCOL colHead="qhZSen" colVal=F*R.qhZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qhZLat" colVal=F*R.qhZoneLat colDec=dp colWid = 6 \ +# RXCOL colHead="qcZSen" colVal=F*R.qcZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qcZLat" colVal=F*R.qcZoneLat colDec=dp colWid = 6 \ +# RXCOL colHead="qvZSen" colVal=F*R.qvZoneSen colDec=dp colWid = 6 \ +# RXCOL colHead="qvZLat" colVal=F*R.qvZoneLat colDec=dp colWid = 6 + + REPORT SYSRESMO rpType=UDT rpFreq=MONTH rpTitle = "RSYSRES OAV" + SYSRESCOLS( REPORTCOL,"Mon",@Top.monstr,@RSYSRES[ 1].M,.001,3) + REPORT rpType=UDT rpFreq=YEAR rpHeader = No + SYSRESCOLS( REPORTCOL,"", "Yr",@RSYSRES[ 1].Y,.001,3) + + // hourly report DEFTYPE Report HR rpType=UDT rpFreq=HOUR rpDayBeg= HD1 rpDayEnd=HD1 rpCPL=163 Reportcol colVal=$hour colHead="Hr" colWid=2 colDec=0 @@ -1488,22 +1555,249 @@ Input for Run 001: RUN - $EOF -! CSE 0.899.0+update-windows-sdk.92201cb.31 for Win32 console run(s) done: Mon 20-Dec-21 10:36:43 am +Error Messages for Run 002: + +--------------- +Warning: Zone 'House': Condensation occurred in 95463 subhours of run. + Total condensation heat = 2307.94 kBtu. +--------------- +Warning: Zone 'Attic': Condensation occurred in 56154 subhours of run. + Total condensation heat = 453.623 kBtu. +--------------- + + + +System Characteristics + + CapH Cap47 Cap17 HSPF COP47 COP17 AuxH Cap95 SEER EER95 SEERnfX EERnfX vfPerTon fanPwrC fanElecC + ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------- ------ -------- ------- -------- + 50000 20000 18000 8.70 0 0 25000 50000 14.00 12.20 17.24 14.93 350 0.580 2886.10 + + + +Monthly Energy (kBtu + into the zone, except E = Energy Consumed) + + mo Tatt Tin Trad Slr IntGs IntGl Cond Surf VntHr InfVnS Htg Clg OAV FfanE ClgE HtgE + -- ---- ---- ---- ---------- ---------- ---------- ---------- ---------- ----- ------- ---------- ---------- ---------- ------ ------ -------- + 1 49.5 67.4 66.8 849 1912 514 -2115 -3824 0 -32 3133 0 0 145 0 4288 + 2 55.1 67.6 67.1 1392 1623 433 -1723 -3033 0 -21 1721 0 0 80 0 2355 + 3 63.2 68.4 68.0 1746 1665 440 -1506 -2828 0 -15 939 0 -47 43 0 1266 + 4 68.2 69.0 68.7 1936 1487 389 -1494 -2276 0 -13 513 0 -227 25 0 697 + 5 78.4 71.1 71.0 1981 1407 363 -901 -1523 0 -2 15 0 -1243 38 0 21 + 6 84.9 74.3 74.3 2058 1306 335 -628 -831 0 3 0 -97 -2144 82 30 0 + 7 87.6 76.0 76.1 2095 1378 354 -525 -469 0 9 0 -659 -2180 156 220 0 + 8 85.0 75.8 75.9 2055 1465 380 -658 -393 0 6 0 -466 -2380 146 147 0 + 9 80.7 75.3 75.4 1959 1557 410 -754 -463 0 4 0 -310 -2402 118 94 0 + 10 68.4 71.1 71.1 1807 1739 462 -1199 -894 0 -1 1 0 -1864 18 0 1 + 11 54.2 68.0 67.6 1181 1811 486 -1760 -2272 0 -17 1030 0 0 48 0 1416 + 12 49.6 67.5 66.9 915 1941 523 -2115 -3511 0 -33 2734 0 0 127 0 3759 + + Yr 68.7 71.0 70.7 19974 19292 5090 -15379 -22319 0 -112 10085 -1531 -12486 1025 491 13803 + + + +Monthly Energy Use, meter "MtrElec" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 1694.3 0 0 0 0 0 0 0 144.98 0 0 100.86 0 360.24 760.81 33.833 193.92 43.463 0 56.157 0 0 0 0 0 +Feb 1377.2 0 0 0 0 0 0 0 79.616 0 0 63.466 0 303.51 640.99 30.559 175.16 36.618 0 47.313 0 0 0 0 0 +Mar 1373.7 0 0 0 0 0 0 0.324 42.804 0 0 57.699 0 308.63 651.41 33.833 193.66 37.214 0 48.082 0 0 0 0 0 +Apr 1226.4 0 0 0 0 0 0 1.788 23.567 0 0 57.460 0 272.45 575.41 32.742 187.67 32.871 0 42.472 0 0 0 0 0 +May 1159.3 0 0 0 0 0 0 37.438 0.693 0 0 31.801 0 254.29 537.05 33.833 193.92 30.680 0 39.640 0 0 0 0 0 +Jun 1151.1 30.401 0 0 0 0 0 81.532 0 0 0 24.567 0 234.37 494.97 32.742 187.67 28.277 0 36.535 0 0 0 0 0 +Jul 1470.2 219.72 0 0 0 0 0 156.24 0 0 0 25.386 0 248.23 524.26 33.833 193.92 29.950 0 38.697 0 0 0 0 0 +Aug 1449.0 147.22 0 0 0 0 0 145.91 0 0 0 25.386 0 266.40 562.62 33.833 193.92 32.141 0 41.528 0 0 0 0 0 +Sep 1429.7 94.103 0 0 0 0 0 117.80 0 0 0 24.567 0 287.10 606.34 32.742 187.67 34.639 0 44.755 0 0 0 0 0 +Oct 1374.9 0 0 0 0 0 0 17.593 0.0423 0 0 31.938 0 323.91 684.09 33.833 193.92 39.081 0 50.494 0 0 0 0 0 +Nov 1482.3 0 0 0 0 0 0 0 47.883 0 0 61.180 0 340.00 718.52 32.742 187.93 41.047 0 53.036 0 0 0 0 0 +Dec 1681.9 0 0 0 0 0 0 0 127.09 0 0 85.849 0 366.30 773.60 33.833 193.92 44.194 0 57.101 0 0 0 0 0 + +Yr 16870 491.44 0 0 0 0 0 558.62 466.67 0 0 590.16 0 3565.4 7530.1 398.36 2283.3 430.17 0 555.81 0 0 0 0 0 + + + +Monthly Energy Use, meter "MtrFuel" + +Mon Tot Clg Htg HPBU Dhw DhwBU DhwMFL FanC FanH FanV Fan Aux Proc Lit Rcp Ext Refr Dish Dry Wash Cook User1 User2 BT PV +--- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ +Jan 4846.2 0 4288.0 0 0 0 0 0 0 0 0 27.528 0 0 0 0 0 0 343.63 0 186.96 0 0 0 0 +Feb 2826.7 0 2354.8 0 0 0 0 0 0 0 0 24.864 0 0 0 0 0 0 289.51 0 157.52 0 0 0 0 +Mar 1747.8 0 1266.0 0 0 0 0 0 0 0 0 27.491 0 0 0 0 0 0 294.22 0 160.08 0 0 0 0 +Apr 1106.3 0 697.03 0 0 0 0 0 0 0 0 7.992 0 0 0 0 0 0 259.89 0 141.40 0 0 0 0 +May 395.05 0 20.511 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242.56 0 131.97 0 0 0 0 +Jun 345.20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223.56 0 121.63 0 0 0 0 +Jul 365.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 236.79 0 128.83 0 0 0 0 +Aug 392.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 254.12 0 138.26 0 0 0 0 +Sep 422.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 273.86 0 149.00 0 0 0 0 +Oct 492.55 0 1.251 0 0 0 0 0 0 0 0 14.208 0 0 0 0 0 0 308.98 0 168.11 0 0 0 0 +Nov 1944.0 0 1416.2 0 0 0 0 0 0 0 0 26.677 0 0 0 0 0 0 324.53 0 176.57 0 0 0 0 +Dec 4326.0 0 3758.9 0 0 0 0 0 0 0 0 27.528 0 0 0 0 0 0 349.41 0 190.10 0 0 0 0 + +Yr 19211 0 13803 0 0 0 0 0 0 0 0 156.29 0 0 0 0 0 0 3401.1 0 1850.4 0 0 0 0 + + + +RSYSRES OAV + + Mon hrsOn hrsOnX qhPrim qhDef qhAux qhFan qhNet qcSen qcLat qcFan qcSenNet qvFan fhPrim fhDef fhAux fhPar fhTot ehPrim ehDef ehAux ehFan ehPar ehTot ecPrim ecFan ecPar ecTot evFan evPar evTot qhZSen qhZLat qcZSen qcZLat qvZSen qvZLat + --- ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ ------ + Jan 80.084 0 3859.2 0 0 144.98 4004.2 0 0 0 0 0 4288.0 0 0 27.528 4315.6 0 0 0 144.98 100.86 245.84 0 0 0 0 0 0 0 3208.8 -76.24 0 0 0 0 + Feb 43.979 0 2119.3 0 0 79.616 2198.9 0 0 0 0 0 2354.8 0 0 24.864 2379.7 0 0 0 79.616 63.466 143.08 0 0 0 0 0 0 0 1762.6 -42.06 0 0 0 0 + Mar 29.104 0 1139.4 0 0 42.804 1182.2 0 0 0 0 0 1266.0 0 0 27.491 1293.5 0 0 0 42.804 56.266 99.070 0 0 0 0 0.324 1.433 1.757 959.16 -20.19 0 0 -20.89 -26.50 + Apr 43.119 0 627.33 0 0 23.567 650.89 0 0 0 0 0 697.03 0 0 7.992 705.02 0 0 0 23.567 52.718 76.284 0 0 0 0 1.788 4.743 6.531 524.97 -12.13 0 0 -164.9 -62.25 + May 165.05 0 18.460 0 0 0.693 19.154 0 0 0 0 0 20.511 0 0 0 20.511 0 0 0 0.693 11.124 11.817 0 0 0 0 37.438 20.678 58.116 15.382 -0.370 0 0 -977.3 -265.5 + Jun 257.12 0 0 0 0 0 0 -98.65 -32.47 7.483 -91.17 0 0 0 0 0 0 0 0 0 0 0 0 30.401 7.483 1.356 39.239 74.049 23.212 97.261 0 0 -65.35 -31.15 -1842 -301.6 + Jul 259.27 0 0 0 0 0 0 -783.1 -125.5 54.777 -728.4 0 0 0 0 0 0 0 0 0 0 0 0 219.72 54.777 4.739 279.24 101.46 20.647 122.11 0 0 -539.9 -119.1 -1948 -231.6 + Aug 273.87 0 0 0 0 0 0 -512.0 -114.5 36.799 -475.2 0 0 0 0 0 0 0 0 0 0 0 0 147.22 36.799 4.146 188.16 109.11 21.241 130.35 0 0 -355.7 -110.1 -2119 -261.1 + Sep 271.18 0 0 0 0 0 0 -330.5 -75.18 23.717 -306.8 0 0 0 0 0 0 0 0 0 0 0 0 94.103 23.717 3.519 121.34 94.084 21.048 115.13 0 0 -236.5 -73.39 -2066 -335.3 + Oct 273.57 0 1.126 0 0 0.0423 1.169 0 0 0 0 0 1.251 0 0 14.208 15.459 0 0 0 0.0423 2.986 3.028 0 0 0 0 17.593 28.952 46.545 0.920 -.0303 0 0 -1452 -411.7 + Nov 26.450 0 1274.6 0 0 47.883 1322.5 0 0 0 0 0 1416.2 0 0 26.677 1442.9 0 0 0 47.883 61.180 109.06 0 0 0 0 0 0 0 1057.1 -27.01 0 0 0 0 + Dec 70.202 0 3383.0 0 0 127.09 3510.1 0 0 0 0 0 3758.9 0 0 27.528 3786.4 0 0 0 127.09 85.849 212.94 0 0 0 0 0 0 0 2802.8 -68.89 0 0 0 0 + + Yr 1793.0 0 12422 0 0 466.67 12889 -1724 -347.6 122.78 -1601 0 13803 0 0 156.29 13959 0 0 0 466.67 434.45 901.12 491.44 122.78 13.760 627.98 435.85 141.95 577.80 10332 -246.9 -1197 -333.8 -10590 -1896 + + + +Energy (kBtu + into the zone, except E = Energy Consumed) for Thu 03-Dec + + Hr Tout WBo Wo Tatt Patt Tin Trad Pin Win RHin WBin Slr Cond Surf ItgS ItgL AirL InfVnS ACH HvacS HvacL Htg Clg OAV RunF FfanE HtgE + -- ---- ---- ----- ---- ------- ---- ---- ------- ----- --- ---- ------ ----- ----- ----- ----- ----- ------ ---- ----- ----- ----- ----- ----- ---- ------ ------ + 1 41.7 36.1 .0032 45.8 -0.003 67.1 66.8 -0.03 .0142 100 66.9 0 -3.63 1.50 2.15 0.60 -0.56 -0.023 .003 0 0 0 0 0 0 0 0 + 2 38.8 34.8 .0033 44.2 -0.003 66.7 66.5 -0.04 .0140 100 66.5 0 -3.71 1.69 2.04 0.59 -0.55 -0.021 .002 0 0 0 0 0 0 0 0 + 3 36.5 33.3 .0033 42.4 -0.006 66.4 66.2 -0.04 .0139 100 66.2 0 -3.96 2.01 1.97 0.58 -0.56 -0.014 .001 0 0 0 0 0 0 0 0 + 4 32.9 30.9 .0032 40.3 -0.009 66.0 65.9 -0.05 .0137 100 65.8 0 -4.25 2.27 1.99 0.58 -0.57 -0.012 .001 0 0 0 0 0 0 0 0 + 5 30.9 29.4 .0030 37.7 -0.009 65.7 65.5 -0.05 .0135 100 65.5 0 -4.50 2.52 1.98 0.57 -0.57 -.0002 0.00 0 0 0 0 0 0 0 0 + 6 30.0 28.8 .0030 35.1 -0.007 65.4 65.2 -0.05 .0134 100 65.2 0 -4.62 2.07 2.55 0.85 -0.84 -.0008 0.00 0 0 0 0 0 0 0 0 + 7 28.2 27.5 .0029 32.6 -0.006 65.1 65.0 -0.05 .0133 100 65.0 0 -4.74 1.45 3.18 1.12 -1.12 -.0011 0.00 0.1 -.004 0.1 0 0 .033 0.005 0.1 + 8 28.4 27.7 .0029 34.1 -0.009 67.2 65.9 -0.06 .0128 87 65.3 1.78 -5.43 -32.3 2.86 0.86 0.70 -0.43 .033 33.5 -1.1 32.4 0 0 0.49 1.6 46.5 + 9 30.2 29.1 .0031 33.4 -0.006 68.0 66.7 -0.06 .0127 87 65.2 5.50 -5.32 -15.8 2.17 0.52 0.12 -0.19 .015 13.6 -0.4 13.2 0 0 0.26 0.6 19.0 + 10 38.3 35.7 .0038 35.6 -0.002 68.0 67.0 -0.05 .0127 87 65.2 7.10 -4.71 -12.0 1.78 0.35 -.001 -0.096 .008 8.0 -0.2 7.7 0 0 0.15 0.4 11.0 + 11 41.5 37.5 .0038 40.7 -0.0002 68.0 67.2 -0.04 .0128 87 65.3 6.84 -4.02 -9.65 1.79 0.36 -0.14 -0.058 .006 5.1 -0.1 4.9 0 0 0.10 0.2 7.0 + 12 46.2 40.0 .0038 45.9 -0.0008 68.0 67.3 -0.03 .0130 88 65.5 6.49 -3.51 -8.21 1.76 0.36 -0.20 -0.039 .005 3.5 -0.09 3.4 0 0 .069 0.2 4.7 + 13 48.4 40.8 .0037 51.0 -0.005 68.0 67.4 -0.03 .0131 89 65.8 6.43 -3.12 -7.21 1.68 0.35 -0.26 -0.019 .003 2.2 -0.06 2.2 0 0 .042 0.1 3.0 + 14 51.3 42.6 .0038 56.0 -0.008 68.0 67.5 -0.03 .0134 91 66.1 6.71 -2.88 -6.43 1.71 0.36 -0.32 -.0068 .001 0.9 -0.02 0.9 0 0 .013 0.04 1.2 + 15 53.2 43.2 .0036 58.8 -0.008 68.0 67.6 -0.02 .0136 92 66.4 6.56 -2.60 -5.80 1.85 0.42 -0.40 -.0079 .001 0.01 -0.00 0.01 0 0 0 0.0005 0.02 + 16 54.9 43.8 .0036 59.7 -0.008 68.0 67.6 -0.02 .0140 95 66.9 4.41 -2.42 -4.25 2.08 0.52 -0.50 -.0047 .001 0.2 -.005 0.2 0 0 .022 0.008 0.2 + 17 54.1 43.6 .0036 58.9 -0.006 68.0 67.5 -0.02 .0144 98 67.5 0.89 -2.44 -2.82 2.55 0.71 -0.62 -0.011 .002 1.8 -0.05 1.8 0 0 .060 0.08 2.4 + 18 51.4 42.3 .0037 56.6 -0.005 68.0 67.5 -0.02 .0148 100 68.0 0 -2.58 -3.30 3.17 0.91 -0.79 -0.014 .003 2.7 -0.08 2.7 0 0 .075 0.1 3.5 + 19 49.1 41.2 .0037 54.3 -0.006 68.0 67.4 -0.03 .0148 100 68.0 0 -2.87 -3.83 3.98 1.08 -0.93 -0.029 .005 2.8 -0.08 2.7 0 0 .074 0.1 3.6 + 20 42.8 38.2 .0038 51.7 -0.009 68.0 67.4 -0.03 .0148 100 68.0 0 -3.34 -4.18 4.63 1.24 -1.12 -0.017 .002 2.9 -0.08 2.8 0 0 .083 0.1 3.8 + 21 41.9 38.1 .0040 49.1 -0.01 68.0 67.4 -0.04 .0148 100 68.0 0 -3.69 -4.53 4.64 1.25 -1.10 -0.032 .004 3.6 -0.10 3.5 0 0 .095 0.2 4.8 + 22 40.1 37.2 .0040 47.0 -0.007 68.0 67.3 -0.04 .0148 100 68.0 0 -3.82 -4.79 4.21 1.12 -0.90 -0.053 .006 4.5 -0.1 4.3 0 0 0.12 0.2 5.9 + 23 42.1 38.5 .0041 45.5 -0.0004 68.0 67.3 -0.03 .0148 100 68.0 0 -3.79 -5.01 3.34 0.89 -0.60 -0.074 .008 5.5 -0.2 5.4 0 0 0.14 0.3 7.4 + 24 41.9 38.3 .0041 44.1 0.003 67.6 67.1 -0.03 .0144 100 67.3 0 -3.57 1.02 2.58 0.66 -0.60 -0.029 .003 0 0 0 0 0 0 0 0 + + Dy 45.9 -0.005 67.4 66.8 -0.04 52.71 -89.5 -116 62.62 16.87 -12.4 -1.2 .005 90.9 -2.7 88.2 0 0 0 4.2 124.3 + + + +Energy (kBtu + into the zone, except E = Energy Consumed) for Tue 30-Jun + + Hr Tout WBo Wo Tatt Patt Tin Trad Pin Win RHin WBin Slr Cond Surf ItgS ItgL AirL InfVnS ACH HvacS HvacL Htg Clg OAV RunF FfanE HtgE + -- ---- ---- ----- ---- ------- ---- ---- ------- ----- --- ---- ------ ----- ----- ----- ----- ----- ------ ---- ----- ----- ----- ----- ----- ---- ------ ------ + 1 70.9 63.9 .0111 88.0 -0.02 77.6 77.3 -0.005 .0145 71 70.5 0 -1.17 -0.34 1.51 0.40 -0.39 -.0027 .001 0 0 0 0 0 0 0 0 + 2 68.9 63.0 .0110 82.6 0.04 77.1 77.1 0.1 .0115 58 66.3 0 -1.47 3.62 1.44 0.39 4.37 -.0007 0.00 -3.6 -4.8 0 0 -8.3 1.00 0 0 + 3 66.7 61.8 .0107 77.6 0.07 76.4 76.6 0.2 .0109 57 65.3 0 -1.68 6.29 1.39 0.39 0.85 0 0 -6.0 -1.2 0 0 -7.2 1.00 0 0 + 4 64.9 61.2 .0107 74.0 0.07 75.7 76.1 0.2 .0108 57 64.9 0 -1.87 7.95 1.40 0.39 0.18 0 0 -7.5 -0.6 0 0 -8.0 1.00 0 0 + 5 64.8 61.1 .0107 71.1 0.07 75.1 75.5 0.2 .0108 58 64.7 0 -1.94 8.63 1.39 0.38 0.013 0 0 -8.1 -0.4 0 0 -8.5 1.00 0 0 + 6 63.0 60.5 .0107 68.7 0.07 74.6 75.0 0.2 .0108 60 64.6 0 -2.00 8.94 1.77 0.56 -.058 0 0 -8.7 -0.5 0 0 -9.2 1.00 0 0 + 7 63.1 60.5 .0107 67.4 0.07 74.2 74.6 0.2 .0109 60 64.6 3.09 -1.90 5.75 2.19 0.74 -.071 0 0 -9.1 -0.7 0 0 -9.8 1.00 0 0 + 8 65.3 61.3 .0107 68.6 0.07 74.0 74.5 0.2 .0109 60 64.5 5.35 -1.71 2.38 1.98 0.57 0.054 0 0 -8.0 -0.6 0 0 -8.6 1.00 0 0 + 9 68.5 62.5 .0108 71.9 -0.003 74.5 74.7 -0.004 .0111 60 65.1 5.95 -1.39 -6.08 1.52 0.34 -0.34 -.0012 0.00 0 0 0 0 0 0 0 0 + 10 73.9 65.4 .0115 78.5 -0.008 75.1 75.0 -0.004 .0113 60 65.5 5.90 -0.98 -6.19 1.26 0.23 -0.23 -.0022 .002 0 0 0 0 0 0 0 0 + 11 80.6 67.7 .0116 86.1 -0.008 75.4 75.3 0.005 .0114 60 65.8 5.66 -0.26 -6.67 1.27 0.24 -0.24 0.0020 .003 0 0 0 0 0 0 0 0 + 12 85.6 69.6 .0119 94.3 -0.009 75.8 75.6 0.01 .0116 60 66.2 4.83 0.42 -6.51 1.25 0.24 -0.24 0.0047 .002 0 0 0 0 0 0 0 0 + 13 91.2 70.7 .0115 102 -0.01 76.1 75.9 0.02 .0117 60 66.5 4.17 1.06 -6.45 1.20 0.23 -0.23 0.014 .003 0 0 0 0 0 0 0 0 + 14 92.1 71.0 .0115 109 -0.01 76.4 76.2 0.02 .0119 61 66.8 4.11 1.42 -6.77 1.22 0.24 -0.24 0.015 .003 0 0 0 0 0 0 0 0 + 15 93.4 71.3 .0114 114 -0.02 76.8 76.6 0.03 .0121 61 67.2 4.66 1.52 -7.51 1.31 0.28 -0.28 0.022 .004 0 0 0 0 0 0 0 0 + 16 96.3 71.4 .0108 117 -0.02 77.3 77.1 0.03 .0123 61 67.7 5.45 1.75 -8.68 1.46 0.34 -0.34 0.025 .004 0 0 0 0 0 0 0 0 + 17 97.2 69.2 .0090 119 -0.02 77.8 77.6 0.03 .0126 61 68.3 5.85 1.85 -9.49 1.77 0.47 -0.46 0.022 .003 0 0 0 0 0 0 0 0 + 18 97.9 69.5 .0090 119 -0.02 78.0 78.0 0.03 .0112 54 66.2 6.19 1.92 -6.63 2.18 0.60 2.15 0.076 .012 -3.7 -2.7 0 -6.4 0 0.20 0 0 + 19 98.1 69.8 .0092 117 -0.02 78.0 78.2 0.03 .0097 47 64.1 5.83 2.07 -4.62 2.72 0.72 2.19 0.11 .015 -6.1 -2.9 0 -9.0 0 0.25 0 0 + 20 97.9 69.2 .0088 114 -0.02 78.0 78.3 0.03 .0088 43 62.8 3.99 2.00 -2.59 3.15 0.82 1.23 0.11 .015 -6.7 -2.0 0 -8.7 0 0.22 0 0 + 21 96.1 68.8 .0089 110 -0.01 78.0 78.2 0.02 .0086 42 62.5 0.38 1.54 -0.59 3.15 0.83 0.29 0.071 .010 -4.6 -1.1 0 -5.7 0 0.14 0 0 + 22 89.1 70.0 .0114 106 -0.01 78.0 78.2 0.02 .0086 42 62.5 0 1.03 -0.62 2.87 0.74 0.047 0.040 .008 -3.3 -0.8 0 -4.1 0 .098 0 0 + 23 82.4 66.9 .0106 102 -0.01 78.0 78.1 0.02 .0086 42 62.6 0 0.35 -0.53 2.29 0.59 -.067 0.016 .006 -2.1 -0.5 0 -2.7 0 .055 0 0 + 24 77.5 64.9 .0103 97.2 -0.01 78.0 78.0 0.009 .0087 43 62.7 0 -0.32 -0.44 1.79 0.43 -0.16 0.0032 .004 -1.0 -0.3 0 -1.3 0 .021 0 0 + + Dy 94.0 0.010 76.5 76.6 0.06 71.42 0.3 -37.2 43.52 11.15 8.03 0.5 .004 -78.5 -19.1 0 -37.9 -59.7 .021 0 0 + + + +Energy (kBtu + into the zone, except E = Energy Consumed) for Fri 10-Jul + + Hr Tout WBo Wo Tatt Patt Tin Trad Pin Win RHin WBin Slr Cond Surf ItgS ItgL AirL InfVnS ACH HvacS HvacL Htg Clg OAV RunF FfanE HtgE + -- ---- ---- ----- ---- ------- ---- ---- ------- ----- --- ---- ------ ----- ----- ----- ----- ----- ------ ---- ----- ----- ----- ----- ----- ---- ------ ------ + 1 74.5 62.4 .0093 96.0 -0.02 78.0 78.0 0.0009 .0082 40 62.0 0 -0.69 0.13 1.54 0.41 -0.20 .00081 .003 -1.0 -0.2 0 -1.2 0 .015 0 0 + 2 70.9 61.4 .0095 91.4 -0.02 78.0 77.9 -0.006 .0086 42 62.5 0 -1.29 0.16 1.47 0.40 -0.54 -.0002 0.00 -0.3 0.1 0 -0.2 0.01 1.00 0 0 + 3 68.7 60.4 .0093 83.3 0.1 77.4 77.6 0.2 .0094 47 63.4 0 -1.70 6.83 1.42 0.40 -1.15 0 0 -6.5 0.8 0 0 -5.8 1.00 0 0 + 4 65.8 59.6 .0095 77.9 0.1 76.6 77.0 0.2 .0095 49 63.3 0 -1.92 9.88 1.43 0.40 -0.18 0 0 -9.4 -0.2 0 0 -9.6 1.00 0 0 + 5 64.8 58.8 .0093 73.8 0.1 75.8 76.3 0.2 .0094 50 62.8 0 -2.09 11.96 1.42 0.39 0.22 0 0 -11.3 -0.6 0 0 -11.9 1.00 0 0 + 6 63.9 58.5 .0093 70.6 0.1 75.1 75.7 0.2 .0094 51 62.6 0 -2.14 12.33 1.81 0.57 -.037 0 0 -12.0 -0.5 0 0 -12.5 1.00 0 0 + 7 62.6 58.6 .0096 68.6 0.1 74.6 75.2 0.2 .0097 53 62.9 2.63 -2.06 10.05 2.24 0.76 -0.42 0 0 -12.9 -0.3 0 0 -13.2 1.00 0 0 + 8 67.8 61.4 .0102 69.1 0.1 74.4 74.9 0.2 .0102 55 63.7 5.30 -1.69 4.04 2.02 0.58 -0.70 -0.000 0.00 -9.7 0.1 0 0 -9.5 0 0 0 + 9 75.7 63.3 .0096 72.3 -0.0004 75.0 75.2 -0.004 .0104 55 64.3 6.00 -0.95 -6.61 1.56 0.35 -0.35 -.0002 0.00 0 0 0 0 0 0 0 0 + 10 81.7 65.6 .0099 79.3 0.000 75.7 75.6 0.004 .0106 55 64.7 6.08 -0.28 -7.10 1.29 0.24 -0.24 0.0020 .002 0 0 0 0 0 0 0 0 + 11 87.6 67.4 .0097 87.8 -0.002 76.2 76.0 0.01 .0107 55 65.1 5.79 0.43 -7.52 1.29 0.24 -0.24 0.0026 .001 0 0 0 0 0 0 0 0 + 12 92.8 71.3 .0116 97.0 -0.005 76.6 76.4 0.02 .0109 55 65.5 5.04 1.14 -7.46 1.28 0.24 -0.24 0.0082 .002 0 0 0 0 0 0 0 0 + 13 99.3 73.2 .0116 106 -0.007 77.0 76.8 0.03 .0111 55 65.8 4.18 1.87 -7.29 1.23 0.24 -0.24 0.013 .002 0 0 0 0 0 0 0 0 + 14 103 71.8 .0098 114 -0.01 77.4 77.2 0.03 .0112 55 66.2 3.98 2.39 -7.63 1.25 0.24 -0.24 0.014 .002 0 0 0 0 0 0 0 0 + 15 106 74.5 .0112 122 -0.02 77.9 77.7 0.03 .0114 55 66.7 4.70 2.78 -8.83 1.33 0.29 -0.29 0.014 .002 0 0 0 0 0 0 0 0 + 16 107 72.6 .0093 127 -0.02 78.5 78.3 0.03 .0117 55 67.2 5.55 2.99 -10.0 1.49 0.35 -0.35 0.016 .002 0 0 0 0 0 0 0 0 + 17 109 73.7 .0099 130 -0.02 79.0 78.9 0.04 .0109 51 66.2 6.04 3.11 -8.43 1.81 0.48 1.07 0.094 .009 -2.6 -1.5 0 -4.2 0 0.24 0 0 + 18 109 73.8 .0099 128 -0.02 78.2 78.8 0.04 .0079 38 61.4 6.29 3.55 6.32 2.23 0.62 4.45 0.61 .054 -19.0 -5.1 0 -24.1 0 0.60 0 0 + 19 108 74.1 .0104 125 -0.01 78.0 78.7 0.04 .0074 36 60.7 5.68 3.57 2.24 2.78 0.73 0.65 0.43 .038 -14.7 -1.5 0 -16.2 0 0.55 0 0 + 20 107 74.4 .0110 121 -0.006 78.0 78.7 0.04 .0074 36 60.6 3.51 3.42 2.67 3.22 0.84 0.11 0.34 .033 -13.2 -1.1 0 -14.3 0 0.44 0 0 + 21 102 72.4 .0103 117 -0.005 78.0 78.6 0.04 .0074 36 60.7 0.19 2.78 3.09 3.23 0.85 -.082 0.20 .022 -9.5 -0.9 0 -10.3 0 0.30 0 0 + 22 94.1 70.3 .0105 112 -0.010 78.0 78.5 0.03 .0074 36 60.7 0 1.85 2.28 2.94 0.76 -.038 0.11 .015 -7.2 -0.8 0 -8.0 0 0.21 0 0 + 23 87.4 66.9 .0095 107 -0.01 78.0 78.4 0.02 .0074 36 60.8 0 0.90 1.75 2.34 0.60 -.012 0.047 .011 -5.0 -0.6 0 -5.7 0 0.13 0 0 + 24 83.5 65.3 .0092 102 -0.01 78.0 78.3 0.02 .0074 36 60.8 0 0.25 1.30 1.83 0.44 -.003 0.019 .007 -3.4 -0.5 0 -3.9 0 .087 0 0 + + Dy 99.1 0.02 77.1 77.3 0.08 70.96 16.2 4.1 44.45 11.43 0.94 1.9 .009 -138 -12.9 0 -88.0 -62.6 .087 0 0 + + + +! Log for Run 002: + +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console + + + +Input for Run 002: + + + ALTER RSYS "Sys1" + rsType = ACFurnace + + rsCapH = 50000 + unset rsCap47 + unset rsCap17 + unset rsHSPF + unset rsCapAuxH + rsParFuel = $dayOfYear < 100 || $dayOfYear > oct 15 ? 37 : 0; + + RUN + + $EOF + + + +! CSE 0.899.0+vsashp.0b3d2df8.49 for Win32 console run(s) done: Wed 29-Dec-21 2:11:29 pm -! Executable: c:\users\nkruis\projects\cse\msvc\cse.exe -! 20-Dec-21 10:32 am (VS 14.29 2902016 bytes) (HPWH 1.16.0) -! Command line: -x! -b -t1 oavtest2 -! Input file: C:\Users\nkruis\projects\cse\test\oavtest2.cse -! Report file: C:\Users\nkruis\projects\cse\test\oavtest2.rep +! Executable: d:\cse\msvc\cse.exe +! 29-Dec-21 1:56 pm (VS 14.29 2902016 bytes) (HPWH 1.16.0) +! Command line: -x! -t1 oavtest2 +! Input file: D:\cse\test\oavtest2.cse +! Report file: D:\cse\test\oavtest2.rep ! Timing info -- -! Input: Time = 0.12 Calls = 1 T/C = 0.1150 +! Input: Time = 0.08 Calls = 2 T/C = 0.0405 ! AutoSizing: Time = 0.00 Calls = 0 T/C = 0.0000 -! Simulation: Time = 15.67 Calls = 1 T/C = 15.6690 -! Reports: Time = 0.01 Calls = 1 T/C = 0.0110 -! Total: Time = 15.80 Calls = 1 T/C = 15.7960 +! Simulation: Time = 23.06 Calls = 2 T/C = 11.5315 +! Reports: Time = 0.01 Calls = 2 T/C = 0.0055 +! Total: Time = 23.16 Calls = 1 T/C = 23.1610